﻿
@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;
        }


/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1600px;--breakpoint-xxxl: 2200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}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{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}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}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.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:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}@media (min-width: 1600px){.container{max-width:1560px}}@media (min-width: 2200px){.container{max-width:2160px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto,.col-xxl-1,.col-xxl-2,.col-xxl-3,.col-xxl-4,.col-xxl-5,.col-xxl-6,.col-xxl-7,.col-xxl-8,.col-xxl-9,.col-xxl-10,.col-xxl-11,.col-xxl-12,.col-xxl,.col-xxl-auto,.col-xxxl-1,.col-xxxl-2,.col-xxxl-3,.col-xxxl-4,.col-xxxl-5,.col-xxxl-6,.col-xxxl-7,.col-xxxl-8,.col-xxxl-9,.col-xxxl-10,.col-xxxl-11,.col-xxxl-12,.col-xxxl,.col-xxxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}@media (min-width: 1600px){.col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxl-3{flex:0 0 25%;max-width:25%}.col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xxl-6{flex:0 0 50%;max-width:50%}.col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xxl-9{flex:0 0 75%;max-width:75%}.col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xxl-12{flex:0 0 100%;max-width:100%}.order-xxl-first{order:-1}.order-xxl-last{order:13}.order-xxl-0{order:0}.order-xxl-1{order:1}.order-xxl-2{order:2}.order-xxl-3{order:3}.order-xxl-4{order:4}.order-xxl-5{order:5}.order-xxl-6{order:6}.order-xxl-7{order:7}.order-xxl-8{order:8}.order-xxl-9{order:9}.order-xxl-10{order:10}.order-xxl-11{order:11}.order-xxl-12{order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}}@media (min-width: 2200px){.col-xxxl{flex-basis:0;flex-grow:1;max-width:100%}.col-xxxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xxxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxxl-3{flex:0 0 25%;max-width:25%}.col-xxxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xxxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xxxl-6{flex:0 0 50%;max-width:50%}.col-xxxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xxxl-9{flex:0 0 75%;max-width:75%}.col-xxxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xxxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xxxl-12{flex:0 0 100%;max-width:100%}.order-xxxl-first{order:-1}.order-xxxl-last{order:13}.order-xxxl-0{order:0}.order-xxxl-1{order:1}.order-xxxl-2{order:2}.order-xxxl-3{order:3}.order-xxxl-4{order:4}.order-xxxl-5{order:5}.order-xxxl-6{order:6}.order-xxxl-7{order:7}.order-xxxl-8{order:8}.order-xxxl-9{order:9}.order-xxxl-10{order:10}.order-xxxl-11{order:11}.order-xxxl-12{order:12}.offset-xxxl-0{margin-left:0}.offset-xxxl-1{margin-left:8.3333333333%}.offset-xxxl-2{margin-left:16.6666666667%}.offset-xxxl-3{margin-left:25%}.offset-xxxl-4{margin-left:33.3333333333%}.offset-xxxl-5{margin-left:41.6666666667%}.offset-xxxl-6{margin-left:50%}.offset-xxxl-7{margin-left:58.3333333333%}.offset-xxxl-8{margin-left:66.6666666667%}.offset-xxxl-9{margin-left:75%}.offset-xxxl-10{margin-left:83.3333333333%}.offset-xxxl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1599.98px){.table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxl>.table-bordered{border:0}}@media (max-width: 2199.98px){.table-responsive-xxxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxxl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.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;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;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{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:0}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;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='%2328a745' 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:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .form-control:valid ~ .valid-feedback,.was-validated .form-control:valid ~ .valid-tooltip,.form-control.is-valid ~ .valid-feedback,.form-control.is-valid ~ .valid-tooltip{display:block}.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 .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .custom-select:valid ~ .valid-feedback,.was-validated .custom-select:valid ~ .valid-tooltip,.custom-select.is-valid ~ .valid-feedback,.custom-select.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control-file:valid ~ .valid-feedback,.was-validated .form-control-file:valid ~ .valid-tooltip,.form-control-file.is-valid ~ .valid-feedback,.form-control-file.is-valid ~ .valid-tooltip{display:block}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid ~ .valid-feedback,.was-validated .custom-control-input:valid ~ .valid-tooltip,.custom-control-input.is-valid ~ .valid-feedback,.custom-control-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid ~ .valid-feedback,.was-validated .custom-file-input:valid ~ .valid-tooltip,.custom-file-input.is-valid ~ .valid-feedback,.custom-file-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;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;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:0}.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' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);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 .2rem rgba(220,53,69,0.25)}.was-validated .form-control:invalid ~ .invalid-feedback,.was-validated .form-control:invalid ~ .invalid-tooltip,.form-control.is-invalid ~ .invalid-feedback,.form-control.is-invalid ~ .invalid-tooltip{display:block}.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 .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-select:invalid ~ .invalid-feedback,.was-validated .custom-select:invalid ~ .invalid-tooltip,.custom-select.is-invalid ~ .invalid-feedback,.custom-select.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control-file:invalid ~ .invalid-feedback,.was-validated .form-control-file:invalid ~ .invalid-tooltip,.form-control-file.is-invalid ~ .invalid-feedback,.form-control-file.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid ~ .invalid-feedback,.was-validated .custom-control-input:invalid ~ .invalid-tooltip,.custom-control-input.is-invalid ~ .invalid-feedback,.custom-control-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .invalid-feedback,.was-validated .custom-file-input:invalid ~ .invalid-tooltip,.custom-file-input.is-invalid ~ .invalid-feedback,.custom-file-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:none}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{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;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 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,0.15);border-radius:0}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1600px){.dropdown-menu-xxl-left{right:auto;left:0}.dropdown-menu-xxl-right{right:0;left:auto}}@media (min-width: 2200px){.dropdown-menu-xxxl-left{right:auto;left:0}.dropdown-menu-xxxl-right{right:0;left:auto}}.dropup .dropdown-menu{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}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .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}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .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}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.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:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.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:not(:first-child),.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,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .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:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:0}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{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")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:0;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0 0 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0;border-top-right-radius:0}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.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{border-radius:0}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.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:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.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;float:none}.navbar-text{display:inline-block;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:0}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{flex-flow:row 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>.container,.navbar-expand-sm>.container-fluid{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{flex-flow:row 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>.container,.navbar-expand-md>.container-fluid{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{flex-flow:row 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>.container,.navbar-expand-lg>.container-fluid{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{flex-flow:row 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>.container,.navbar-expand-xl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1599.98px){.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1600px){.navbar-expand-xxl{flex-flow:row 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>.container,.navbar-expand-xxl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}@media (max-width: 2199.98px){.navbar-expand-xxxl>.container,.navbar-expand-xxxl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 2200px){.navbar-expand-xxxl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xxxl .navbar-nav{flex-direction:row}.navbar-expand-xxxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxxl>.container,.navbar-expand-xxxl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xxxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxxl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.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>.container,.navbar-expand>.container-fluid{flex-wrap:nowrap}.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,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,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,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.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,0.125);border-radius:0}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-body{flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0 - 1px) calc(0 - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0 - 1px) calc(0 - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(0 - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(0 - 1px);border-top-right-radius:calc(0 - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(0 - 1px);border-bottom-left-radius:calc(0 - 1px)}.card-deck{display:flex;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:flex;flex:1 0 0%;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:flex;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{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}}.card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:0}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:0}.progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.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:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.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:#007bff;border-color:#007bff}.list-group-horizontal{flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 1600px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xxl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xxl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 2200px){.list-group-horizontal-xxxl{flex-direction:row}.list-group-horizontal-xxxl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xxxl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xxxl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.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):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.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-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.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,0.2);border-radius:0;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;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0;border-top-right-radius:0}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0;border-bottom-left-radius:0}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 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}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";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 .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;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:0}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";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,0.2);border-radius:0}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 0}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:0 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:0 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0 - 1px);border-top-right-radius:calc(0 - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;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%;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-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{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-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{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%;color:#fff;text-align:center;opacity:.5;transition:opacity 0.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:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.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}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0 !important}.rounded{border-radius:0 !important}.rounded-top{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-right{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-bottom{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-left{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-lg{border-radius:0 !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !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}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !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}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !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}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !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}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !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}}@media (min-width: 1600px){.d-xxl-none{display:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !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}}@media (min-width: 2200px){.d-xxxl-none{display:none !important}.d-xxxl-inline{display:inline !important}.d-xxxl-inline-block{display:inline-block !important}.d-xxxl-block{display:block !important}.d-xxxl-table{display:table !important}.d-xxxl-table-row{display:table-row !important}.d-xxxl-table-cell{display:table-cell !important}.d-xxxl-flex{display:flex !important}.d-xxxl-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !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}}.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 iframe,.embed-responsive embed,.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.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.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-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !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}.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}.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}@media (min-width: 576px){.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-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !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}.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}.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}}@media (min-width: 768px){.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-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !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}.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}.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}}@media (min-width: 992px){.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-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !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}.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}.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}}@media (min-width: 1200px){.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-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !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}.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}.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}}@media (min-width: 1600px){.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-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxl-fill{flex:1 1 auto !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}.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}.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}}@media (min-width: 2200px){.flex-xxxl-row{flex-direction:row !important}.flex-xxxl-column{flex-direction:column !important}.flex-xxxl-row-reverse{flex-direction:row-reverse !important}.flex-xxxl-column-reverse{flex-direction:column-reverse !important}.flex-xxxl-wrap{flex-wrap:wrap !important}.flex-xxxl-nowrap{flex-wrap:nowrap !important}.flex-xxxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxxl-fill{flex:1 1 auto !important}.flex-xxxl-grow-0{flex-grow:0 !important}.flex-xxxl-grow-1{flex-grow:1 !important}.flex-xxxl-shrink-0{flex-shrink:0 !important}.flex-xxxl-shrink-1{flex-shrink:1 !important}.justify-content-xxxl-start{justify-content:flex-start !important}.justify-content-xxxl-end{justify-content:flex-end !important}.justify-content-xxxl-center{justify-content:center !important}.justify-content-xxxl-between{justify-content:space-between !important}.justify-content-xxxl-around{justify-content:space-around !important}.align-items-xxxl-start{align-items:flex-start !important}.align-items-xxxl-end{align-items:flex-end !important}.align-items-xxxl-center{align-items:center !important}.align-items-xxxl-baseline{align-items:baseline !important}.align-items-xxxl-stretch{align-items:stretch !important}.align-content-xxxl-start{align-content:flex-start !important}.align-content-xxxl-end{align-content:flex-end !important}.align-content-xxxl-center{align-content:center !important}.align-content-xxxl-between{align-content:space-between !important}.align-content-xxxl-around{align-content:space-around !important}.align-content-xxxl-stretch{align-content:stretch !important}.align-self-xxxl-auto{align-self:auto !important}.align-self-xxxl-start{align-self:flex-start !important}.align-self-xxxl-end{align-self:flex-end !important}.align-self-xxxl-center{align-self:center !important}.align-self-xxxl-baseline{align-self:baseline !important}.align-self-xxxl-stretch{align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}@media (min-width: 1600px){.float-xxl-left{float:left !important}.float-xxl-right{float:right !important}.float-xxl-none{float:none !important}}@media (min-width: 2200px){.float-xxxl-left{float:left !important}.float-xxxl-right{float:right !important}.float-xxxl-none{float:none !important}}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.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}@supports (position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !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}.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}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-.25rem !important}.mt-n1,.my-n1{margin-top:-.25rem !important}.mr-n1,.mx-n1{margin-right:-.25rem !important}.mb-n1,.my-n1{margin-bottom:-.25rem !important}.ml-n1,.mx-n1{margin-left:-.25rem !important}.m-n2{margin:-.5rem !important}.mt-n2,.my-n2{margin-top:-.5rem !important}.mr-n2,.mx-n2{margin-right:-.5rem !important}.mb-n2,.my-n2{margin-bottom:-.5rem !important}.ml-n2,.mx-n2{margin-left:-.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem !important}.m-sm-n2{margin:-.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem !important}.m-md-n2{margin:-.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem !important}.m-lg-n2{margin:-.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem !important}.m-xl-n2{margin:-.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}@media (min-width: 1600px){.m-xxl-0{margin:0 !important}.mt-xxl-0,.my-xxl-0{margin-top:0 !important}.mr-xxl-0,.mx-xxl-0{margin-right:0 !important}.mb-xxl-0,.my-xxl-0{margin-bottom:0 !important}.ml-xxl-0,.mx-xxl-0{margin-left:0 !important}.m-xxl-1{margin:.25rem !important}.mt-xxl-1,.my-xxl-1{margin-top:.25rem !important}.mr-xxl-1,.mx-xxl-1{margin-right:.25rem !important}.mb-xxl-1,.my-xxl-1{margin-bottom:.25rem !important}.ml-xxl-1,.mx-xxl-1{margin-left:.25rem !important}.m-xxl-2{margin:.5rem !important}.mt-xxl-2,.my-xxl-2{margin-top:.5rem !important}.mr-xxl-2,.mx-xxl-2{margin-right:.5rem !important}.mb-xxl-2,.my-xxl-2{margin-bottom:.5rem !important}.ml-xxl-2,.mx-xxl-2{margin-left:.5rem !important}.m-xxl-3{margin:1rem !important}.mt-xxl-3,.my-xxl-3{margin-top:1rem !important}.mr-xxl-3,.mx-xxl-3{margin-right:1rem !important}.mb-xxl-3,.my-xxl-3{margin-bottom:1rem !important}.ml-xxl-3,.mx-xxl-3{margin-left:1rem !important}.m-xxl-4{margin:1.5rem !important}.mt-xxl-4,.my-xxl-4{margin-top:1.5rem !important}.mr-xxl-4,.mx-xxl-4{margin-right:1.5rem !important}.mb-xxl-4,.my-xxl-4{margin-bottom:1.5rem !important}.ml-xxl-4,.mx-xxl-4{margin-left:1.5rem !important}.m-xxl-5{margin:3rem !important}.mt-xxl-5,.my-xxl-5{margin-top:3rem !important}.mr-xxl-5,.mx-xxl-5{margin-right:3rem !important}.mb-xxl-5,.my-xxl-5{margin-bottom:3rem !important}.ml-xxl-5,.mx-xxl-5{margin-left:3rem !important}.p-xxl-0{padding:0 !important}.pt-xxl-0,.py-xxl-0{padding-top:0 !important}.pr-xxl-0,.px-xxl-0{padding-right:0 !important}.pb-xxl-0,.py-xxl-0{padding-bottom:0 !important}.pl-xxl-0,.px-xxl-0{padding-left:0 !important}.p-xxl-1{padding:.25rem !important}.pt-xxl-1,.py-xxl-1{padding-top:.25rem !important}.pr-xxl-1,.px-xxl-1{padding-right:.25rem !important}.pb-xxl-1,.py-xxl-1{padding-bottom:.25rem !important}.pl-xxl-1,.px-xxl-1{padding-left:.25rem !important}.p-xxl-2{padding:.5rem !important}.pt-xxl-2,.py-xxl-2{padding-top:.5rem !important}.pr-xxl-2,.px-xxl-2{padding-right:.5rem !important}.pb-xxl-2,.py-xxl-2{padding-bottom:.5rem !important}.pl-xxl-2,.px-xxl-2{padding-left:.5rem !important}.p-xxl-3{padding:1rem !important}.pt-xxl-3,.py-xxl-3{padding-top:1rem !important}.pr-xxl-3,.px-xxl-3{padding-right:1rem !important}.pb-xxl-3,.py-xxl-3{padding-bottom:1rem !important}.pl-xxl-3,.px-xxl-3{padding-left:1rem !important}.p-xxl-4{padding:1.5rem !important}.pt-xxl-4,.py-xxl-4{padding-top:1.5rem !important}.pr-xxl-4,.px-xxl-4{padding-right:1.5rem !important}.pb-xxl-4,.py-xxl-4{padding-bottom:1.5rem !important}.pl-xxl-4,.px-xxl-4{padding-left:1.5rem !important}.p-xxl-5{padding:3rem !important}.pt-xxl-5,.py-xxl-5{padding-top:3rem !important}.pr-xxl-5,.px-xxl-5{padding-right:3rem !important}.pb-xxl-5,.py-xxl-5{padding-bottom:3rem !important}.pl-xxl-5,.px-xxl-5{padding-left:3rem !important}.m-xxl-n1{margin:-.25rem !important}.mt-xxl-n1,.my-xxl-n1{margin-top:-.25rem !important}.mr-xxl-n1,.mx-xxl-n1{margin-right:-.25rem !important}.mb-xxl-n1,.my-xxl-n1{margin-bottom:-.25rem !important}.ml-xxl-n1,.mx-xxl-n1{margin-left:-.25rem !important}.m-xxl-n2{margin:-.5rem !important}.mt-xxl-n2,.my-xxl-n2{margin-top:-.5rem !important}.mr-xxl-n2,.mx-xxl-n2{margin-right:-.5rem !important}.mb-xxl-n2,.my-xxl-n2{margin-bottom:-.5rem !important}.ml-xxl-n2,.mx-xxl-n2{margin-left:-.5rem !important}.m-xxl-n3{margin:-1rem !important}.mt-xxl-n3,.my-xxl-n3{margin-top:-1rem !important}.mr-xxl-n3,.mx-xxl-n3{margin-right:-1rem !important}.mb-xxl-n3,.my-xxl-n3{margin-bottom:-1rem !important}.ml-xxl-n3,.mx-xxl-n3{margin-left:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.mt-xxl-n4,.my-xxl-n4{margin-top:-1.5rem !important}.mr-xxl-n4,.mx-xxl-n4{margin-right:-1.5rem !important}.mb-xxl-n4,.my-xxl-n4{margin-bottom:-1.5rem !important}.ml-xxl-n4,.mx-xxl-n4{margin-left:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mt-xxl-n5,.my-xxl-n5{margin-top:-3rem !important}.mr-xxl-n5,.mx-xxl-n5{margin-right:-3rem !important}.mb-xxl-n5,.my-xxl-n5{margin-bottom:-3rem !important}.ml-xxl-n5,.mx-xxl-n5{margin-left:-3rem !important}.m-xxl-auto{margin:auto !important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto !important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto !important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto !important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto !important}}@media (min-width: 2200px){.m-xxxl-0{margin:0 !important}.mt-xxxl-0,.my-xxxl-0{margin-top:0 !important}.mr-xxxl-0,.mx-xxxl-0{margin-right:0 !important}.mb-xxxl-0,.my-xxxl-0{margin-bottom:0 !important}.ml-xxxl-0,.mx-xxxl-0{margin-left:0 !important}.m-xxxl-1{margin:.25rem !important}.mt-xxxl-1,.my-xxxl-1{margin-top:.25rem !important}.mr-xxxl-1,.mx-xxxl-1{margin-right:.25rem !important}.mb-xxxl-1,.my-xxxl-1{margin-bottom:.25rem !important}.ml-xxxl-1,.mx-xxxl-1{margin-left:.25rem !important}.m-xxxl-2{margin:.5rem !important}.mt-xxxl-2,.my-xxxl-2{margin-top:.5rem !important}.mr-xxxl-2,.mx-xxxl-2{margin-right:.5rem !important}.mb-xxxl-2,.my-xxxl-2{margin-bottom:.5rem !important}.ml-xxxl-2,.mx-xxxl-2{margin-left:.5rem !important}.m-xxxl-3{margin:1rem !important}.mt-xxxl-3,.my-xxxl-3{margin-top:1rem !important}.mr-xxxl-3,.mx-xxxl-3{margin-right:1rem !important}.mb-xxxl-3,.my-xxxl-3{margin-bottom:1rem !important}.ml-xxxl-3,.mx-xxxl-3{margin-left:1rem !important}.m-xxxl-4{margin:1.5rem !important}.mt-xxxl-4,.my-xxxl-4{margin-top:1.5rem !important}.mr-xxxl-4,.mx-xxxl-4{margin-right:1.5rem !important}.mb-xxxl-4,.my-xxxl-4{margin-bottom:1.5rem !important}.ml-xxxl-4,.mx-xxxl-4{margin-left:1.5rem !important}.m-xxxl-5{margin:3rem !important}.mt-xxxl-5,.my-xxxl-5{margin-top:3rem !important}.mr-xxxl-5,.mx-xxxl-5{margin-right:3rem !important}.mb-xxxl-5,.my-xxxl-5{margin-bottom:3rem !important}.ml-xxxl-5,.mx-xxxl-5{margin-left:3rem !important}.p-xxxl-0{padding:0 !important}.pt-xxxl-0,.py-xxxl-0{padding-top:0 !important}.pr-xxxl-0,.px-xxxl-0{padding-right:0 !important}.pb-xxxl-0,.py-xxxl-0{padding-bottom:0 !important}.pl-xxxl-0,.px-xxxl-0{padding-left:0 !important}.p-xxxl-1{padding:.25rem !important}.pt-xxxl-1,.py-xxxl-1{padding-top:.25rem !important}.pr-xxxl-1,.px-xxxl-1{padding-right:.25rem !important}.pb-xxxl-1,.py-xxxl-1{padding-bottom:.25rem !important}.pl-xxxl-1,.px-xxxl-1{padding-left:.25rem !important}.p-xxxl-2{padding:.5rem !important}.pt-xxxl-2,.py-xxxl-2{padding-top:.5rem !important}.pr-xxxl-2,.px-xxxl-2{padding-right:.5rem !important}.pb-xxxl-2,.py-xxxl-2{padding-bottom:.5rem !important}.pl-xxxl-2,.px-xxxl-2{padding-left:.5rem !important}.p-xxxl-3{padding:1rem !important}.pt-xxxl-3,.py-xxxl-3{padding-top:1rem !important}.pr-xxxl-3,.px-xxxl-3{padding-right:1rem !important}.pb-xxxl-3,.py-xxxl-3{padding-bottom:1rem !important}.pl-xxxl-3,.px-xxxl-3{padding-left:1rem !important}.p-xxxl-4{padding:1.5rem !important}.pt-xxxl-4,.py-xxxl-4{padding-top:1.5rem !important}.pr-xxxl-4,.px-xxxl-4{padding-right:1.5rem !important}.pb-xxxl-4,.py-xxxl-4{padding-bottom:1.5rem !important}.pl-xxxl-4,.px-xxxl-4{padding-left:1.5rem !important}.p-xxxl-5{padding:3rem !important}.pt-xxxl-5,.py-xxxl-5{padding-top:3rem !important}.pr-xxxl-5,.px-xxxl-5{padding-right:3rem !important}.pb-xxxl-5,.py-xxxl-5{padding-bottom:3rem !important}.pl-xxxl-5,.px-xxxl-5{padding-left:3rem !important}.m-xxxl-n1{margin:-.25rem !important}.mt-xxxl-n1,.my-xxxl-n1{margin-top:-.25rem !important}.mr-xxxl-n1,.mx-xxxl-n1{margin-right:-.25rem !important}.mb-xxxl-n1,.my-xxxl-n1{margin-bottom:-.25rem !important}.ml-xxxl-n1,.mx-xxxl-n1{margin-left:-.25rem !important}.m-xxxl-n2{margin:-.5rem !important}.mt-xxxl-n2,.my-xxxl-n2{margin-top:-.5rem !important}.mr-xxxl-n2,.mx-xxxl-n2{margin-right:-.5rem !important}.mb-xxxl-n2,.my-xxxl-n2{margin-bottom:-.5rem !important}.ml-xxxl-n2,.mx-xxxl-n2{margin-left:-.5rem !important}.m-xxxl-n3{margin:-1rem !important}.mt-xxxl-n3,.my-xxxl-n3{margin-top:-1rem !important}.mr-xxxl-n3,.mx-xxxl-n3{margin-right:-1rem !important}.mb-xxxl-n3,.my-xxxl-n3{margin-bottom:-1rem !important}.ml-xxxl-n3,.mx-xxxl-n3{margin-left:-1rem !important}.m-xxxl-n4{margin:-1.5rem !important}.mt-xxxl-n4,.my-xxxl-n4{margin-top:-1.5rem !important}.mr-xxxl-n4,.mx-xxxl-n4{margin-right:-1.5rem !important}.mb-xxxl-n4,.my-xxxl-n4{margin-bottom:-1.5rem !important}.ml-xxxl-n4,.mx-xxxl-n4{margin-left:-1.5rem !important}.m-xxxl-n5{margin:-3rem !important}.mt-xxxl-n5,.my-xxxl-n5{margin-top:-3rem !important}.mr-xxxl-n5,.mx-xxxl-n5{margin-right:-3rem !important}.mb-xxxl-n5,.my-xxxl-n5{margin-bottom:-3rem !important}.ml-xxxl-n5,.mx-xxxl-n5{margin-left:-3rem !important}.m-xxxl-auto{margin:auto !important}.mt-xxxl-auto,.my-xxxl-auto{margin-top:auto !important}.mr-xxxl-auto,.mx-xxxl-auto{margin-right:auto !important}.mb-xxxl-auto,.my-xxxl-auto{margin-bottom:auto !important}.ml-xxxl-auto,.mx-xxxl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}@media (min-width: 1600px){.text-xxl-left{text-align:left !important}.text-xxl-right{text-align:right !important}.text-xxl-center{text-align:center !important}}@media (min-width: 2200px){.text-xxxl-left{text-align:left !important}.text-xxxl-right{text-align:right !important}.text-xxxl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;overflow-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */



/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.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-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter: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%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\f907"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\f913"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\f91a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\f91e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\f941"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.eot");src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.woff2") format("woff2"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.woff") format("woff"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.ttf") format("truetype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.eot");src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.woff2") format("woff2"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.woff") format("woff"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.ttf") format("truetype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-regular-400.svg#fontawesome") format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.eot");src:url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.woff2") format("woff2"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.woff") format("woff"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.ttf") format("truetype"),url("/DesktopModules/EasyDNNnews/static/font-awesome5/webfonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
@charset "UTF-8";
/* fallback */
@import url("/DesktopModules/EasyDNNnews/static/font-awesome5/css/all.min.css");
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/materialicons/v67/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2") format("woff2");
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKOzY.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKOzY.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKOzY.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKOzY.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKOzY.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYmRjRdE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISma2RjRdE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmY2RjRdE.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmbGRjRdE.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYGRjRdE.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRjRdE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmb2Rj.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OmYmRjRdE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4Oma2RjRdE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OmY2RjRdE.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OmbGRjRdE.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OmYGRjRdE.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OmYWRjRdE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4Omb2Rj.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/materialicons/v67/flUhRq6tzZclQEJ-Vdg-IuiaDsNa.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAA.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5g.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAA.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAA.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaw.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaw.woff") format("woff");
}
.eds_news_Advantage .material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

/*     brand Colors              */
.carousel.carousel-full-nagivation .left {
  cursor: url("/DesktopModules/EasyDNNnews/Templates/img/arrow-left.png"), url("/DesktopModules/EasyDNNnews/Templates/img/arrow-left.cur"), default !important;
}
.carousel.carousel-full-nagivation .right {
  cursor: url("/DesktopModules/EasyDNNnews/Templates/img/arrow-right.png"), url("/DesktopModules/EasyDNNnews/Templates/img/arrow-right.cur"), default !important;
}

.eds_news_Advantage .card {
  font-size: 0.875rem;
}

.eds_news_Advantage h1, .eds_news_Advantage h2, .eds_news_Advantage h3, .eds_news_Advantage h4, .eds_news_Advantage h5, .eds_news_Advantage h6,
.eds_news_Advantage .h1, .eds_news_Advantage .h2, .eds_news_Advantage .h3, .eds_news_Advantage .h4, .eds_news_Advantage .h5, .eds_news_Advantage .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}
.eds_news_Advantage h1, .eds_news_Advantage .h1 {
  font-size: 2.5rem;
}
.eds_news_Advantage h2, .eds_news_Advantage .h2 {
  font-size: 2rem;
}
.eds_news_Advantage h3, .eds_news_Advantage .h3 {
  font-size: 1.75rem;
}
.eds_news_Advantage h4, .eds_news_Advantage .h4 {
  font-size: 1.5rem;
}
.eds_news_Advantage h5, .eds_news_Advantage .h5 {
  font-size: 1.25rem;
}
.eds_news_Advantage h6, .eds_news_Advantage .h6 {
  font-size: 1rem;
}
.eds_news_Advantage .lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.eds_news_Advantage .display-1 {
  font-size: 7rem;
  font-weight: 300;
  line-height: 1.2;
}
.eds_news_Advantage .display-2 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.eds_news_Advantage .display-3 {
  font-size: 2.8125rem;
  font-weight: 300;
  line-height: 1.2;
}
.eds_news_Advantage .display-4 {
  font-size: 2.125rem;
  font-weight: 300;
  line-height: 1.2;
}
.eds_news_Advantage hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.eds_news_Advantage small,
.eds_news_Advantage .small {
  font-size: 80%;
  font-weight: 400;
}
.eds_news_Advantage mark,
.eds_news_Advantage .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.eds_news_Advantage .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.eds_news_Advantage .list-inline {
  padding-left: 0;
  list-style: none;
}
.eds_news_Advantage .list-inline-item {
  display: inline-block;
}
.eds_news_Advantage .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.eds_news_Advantage .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.eds_news_Advantage .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.eds_news_Advantage .blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.eds_news_Advantage .blockquote-footer::before {
  content: "— ";
}

.eds_news_Advantage .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .eds_news_Advantage .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .container {
    max-width: 1140px;
  }
}

.eds_news_Advantage .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.eds_news_Advantage .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.eds_news_Advantage .no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.eds_news_Advantage .no-gutters > .col,
.eds_news_Advantage .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.eds_news_Advantage .col-xl,
.eds_news_Advantage .col-xl-auto, .eds_news_Advantage .col-xl-12, .eds_news_Advantage .col-xl-11, .eds_news_Advantage .col-xl-10, .eds_news_Advantage .col-xl-9, .eds_news_Advantage .col-xl-8, .eds_news_Advantage .col-xl-7, .eds_news_Advantage .col-xl-6, .eds_news_Advantage .col-xl-5, .eds_news_Advantage .col-xl-4, .eds_news_Advantage .col-xl-3, .eds_news_Advantage .col-xl-2, .eds_news_Advantage .col-xl-1, .eds_news_Advantage .col-lg,
.eds_news_Advantage .col-lg-auto, .eds_news_Advantage .col-lg-12, .eds_news_Advantage .col-lg-11, .eds_news_Advantage .col-lg-10, .eds_news_Advantage .col-lg-9, .eds_news_Advantage .col-lg-8, .eds_news_Advantage .col-lg-7, .eds_news_Advantage .col-lg-6, .eds_news_Advantage .col-lg-5, .eds_news_Advantage .col-lg-4, .eds_news_Advantage .col-lg-3, .eds_news_Advantage .col-lg-2, .eds_news_Advantage .col-lg-1, .eds_news_Advantage .col-md,
.eds_news_Advantage .col-md-auto, .eds_news_Advantage .col-md-12, .eds_news_Advantage .col-md-11, .eds_news_Advantage .col-md-10, .eds_news_Advantage .col-md-9, .eds_news_Advantage .col-md-8, .eds_news_Advantage .col-md-7, .eds_news_Advantage .col-md-6, .eds_news_Advantage .col-md-5, .eds_news_Advantage .col-md-4, .eds_news_Advantage .col-md-3, .eds_news_Advantage .col-md-2, .eds_news_Advantage .col-md-1, .eds_news_Advantage .col-sm,
.eds_news_Advantage .col-sm-auto, .eds_news_Advantage .col-sm-12, .eds_news_Advantage .col-sm-11, .eds_news_Advantage .col-sm-10, .eds_news_Advantage .col-sm-9, .eds_news_Advantage .col-sm-8, .eds_news_Advantage .col-sm-7, .eds_news_Advantage .col-sm-6, .eds_news_Advantage .col-sm-5, .eds_news_Advantage .col-sm-4, .eds_news_Advantage .col-sm-3, .eds_news_Advantage .col-sm-2, .eds_news_Advantage .col-sm-1, .eds_news_Advantage .col,
.eds_news_Advantage .col-auto, .eds_news_Advantage .col-12, .eds_news_Advantage .col-11, .eds_news_Advantage .col-10, .eds_news_Advantage .col-9, .eds_news_Advantage .col-8, .eds_news_Advantage .col-7, .eds_news_Advantage .col-6, .eds_news_Advantage .col-5, .eds_news_Advantage .col-4, .eds_news_Advantage .col-3, .eds_news_Advantage .col-2, .eds_news_Advantage .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.eds_news_Advantage .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.eds_news_Advantage .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.eds_news_Advantage .col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.eds_news_Advantage .col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.eds_news_Advantage .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.eds_news_Advantage .col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.eds_news_Advantage .col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.eds_news_Advantage .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.eds_news_Advantage .col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.eds_news_Advantage .col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.eds_news_Advantage .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.eds_news_Advantage .col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.eds_news_Advantage .col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.eds_news_Advantage .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.eds_news_Advantage .order-first {
  order: -1;
}
.eds_news_Advantage .order-last {
  order: 13;
}
.eds_news_Advantage .order-0 {
  order: 0;
}
.eds_news_Advantage .order-1 {
  order: 1;
}
.eds_news_Advantage .order-2 {
  order: 2;
}
.eds_news_Advantage .order-3 {
  order: 3;
}
.eds_news_Advantage .order-4 {
  order: 4;
}
.eds_news_Advantage .order-5 {
  order: 5;
}
.eds_news_Advantage .order-6 {
  order: 6;
}
.eds_news_Advantage .order-7 {
  order: 7;
}
.eds_news_Advantage .order-8 {
  order: 8;
}
.eds_news_Advantage .order-9 {
  order: 9;
}
.eds_news_Advantage .order-10 {
  order: 10;
}
.eds_news_Advantage .order-11 {
  order: 11;
}
.eds_news_Advantage .order-12 {
  order: 12;
}
.eds_news_Advantage .offset-1 {
  margin-left: 8.3333333333%;
}
.eds_news_Advantage .offset-2 {
  margin-left: 16.6666666667%;
}
.eds_news_Advantage .offset-3 {
  margin-left: 25%;
}
.eds_news_Advantage .offset-4 {
  margin-left: 33.3333333333%;
}
.eds_news_Advantage .offset-5 {
  margin-left: 41.6666666667%;
}
.eds_news_Advantage .offset-6 {
  margin-left: 50%;
}
.eds_news_Advantage .offset-7 {
  margin-left: 58.3333333333%;
}
.eds_news_Advantage .offset-8 {
  margin-left: 66.6666666667%;
}
.eds_news_Advantage .offset-9 {
  margin-left: 75%;
}
.eds_news_Advantage .offset-10 {
  margin-left: 83.3333333333%;
}
.eds_news_Advantage .offset-11 {
  margin-left: 91.6666666667%;
}
@media (min-width: 576px) {
  .eds_news_Advantage .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .eds_news_Advantage .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .eds_news_Advantage .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .eds_news_Advantage .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .eds_news_Advantage .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .eds_news_Advantage .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .eds_news_Advantage .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .eds_news_Advantage .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .eds_news_Advantage .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .eds_news_Advantage .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .eds_news_Advantage .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .eds_news_Advantage .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .eds_news_Advantage .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .eds_news_Advantage .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .eds_news_Advantage .order-sm-first {
    order: -1;
  }
  .eds_news_Advantage .order-sm-last {
    order: 13;
  }
  .eds_news_Advantage .order-sm-0 {
    order: 0;
  }
  .eds_news_Advantage .order-sm-1 {
    order: 1;
  }
  .eds_news_Advantage .order-sm-2 {
    order: 2;
  }
  .eds_news_Advantage .order-sm-3 {
    order: 3;
  }
  .eds_news_Advantage .order-sm-4 {
    order: 4;
  }
  .eds_news_Advantage .order-sm-5 {
    order: 5;
  }
  .eds_news_Advantage .order-sm-6 {
    order: 6;
  }
  .eds_news_Advantage .order-sm-7 {
    order: 7;
  }
  .eds_news_Advantage .order-sm-8 {
    order: 8;
  }
  .eds_news_Advantage .order-sm-9 {
    order: 9;
  }
  .eds_news_Advantage .order-sm-10 {
    order: 10;
  }
  .eds_news_Advantage .order-sm-11 {
    order: 11;
  }
  .eds_news_Advantage .order-sm-12 {
    order: 12;
  }
  .eds_news_Advantage .offset-sm-0 {
    margin-left: 0;
  }
  .eds_news_Advantage .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .eds_news_Advantage .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .eds_news_Advantage .offset-sm-3 {
    margin-left: 25%;
  }
  .eds_news_Advantage .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .eds_news_Advantage .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .eds_news_Advantage .offset-sm-6 {
    margin-left: 50%;
  }
  .eds_news_Advantage .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .eds_news_Advantage .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .eds_news_Advantage .offset-sm-9 {
    margin-left: 75%;
  }
  .eds_news_Advantage .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .eds_news_Advantage .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .eds_news_Advantage .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .eds_news_Advantage .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .eds_news_Advantage .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .eds_news_Advantage .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .eds_news_Advantage .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .eds_news_Advantage .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .eds_news_Advantage .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .eds_news_Advantage .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .eds_news_Advantage .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .eds_news_Advantage .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .eds_news_Advantage .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .eds_news_Advantage .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .eds_news_Advantage .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .eds_news_Advantage .order-md-first {
    order: -1;
  }
  .eds_news_Advantage .order-md-last {
    order: 13;
  }
  .eds_news_Advantage .order-md-0 {
    order: 0;
  }
  .eds_news_Advantage .order-md-1 {
    order: 1;
  }
  .eds_news_Advantage .order-md-2 {
    order: 2;
  }
  .eds_news_Advantage .order-md-3 {
    order: 3;
  }
  .eds_news_Advantage .order-md-4 {
    order: 4;
  }
  .eds_news_Advantage .order-md-5 {
    order: 5;
  }
  .eds_news_Advantage .order-md-6 {
    order: 6;
  }
  .eds_news_Advantage .order-md-7 {
    order: 7;
  }
  .eds_news_Advantage .order-md-8 {
    order: 8;
  }
  .eds_news_Advantage .order-md-9 {
    order: 9;
  }
  .eds_news_Advantage .order-md-10 {
    order: 10;
  }
  .eds_news_Advantage .order-md-11 {
    order: 11;
  }
  .eds_news_Advantage .order-md-12 {
    order: 12;
  }
  .eds_news_Advantage .offset-md-0 {
    margin-left: 0;
  }
  .eds_news_Advantage .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .eds_news_Advantage .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .eds_news_Advantage .offset-md-3 {
    margin-left: 25%;
  }
  .eds_news_Advantage .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .eds_news_Advantage .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .eds_news_Advantage .offset-md-6 {
    margin-left: 50%;
  }
  .eds_news_Advantage .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .eds_news_Advantage .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .eds_news_Advantage .offset-md-9 {
    margin-left: 75%;
  }
  .eds_news_Advantage .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .eds_news_Advantage .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .eds_news_Advantage .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .eds_news_Advantage .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .eds_news_Advantage .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .eds_news_Advantage .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .eds_news_Advantage .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .eds_news_Advantage .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .eds_news_Advantage .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .eds_news_Advantage .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .eds_news_Advantage .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .eds_news_Advantage .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .eds_news_Advantage .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .eds_news_Advantage .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .eds_news_Advantage .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .eds_news_Advantage .order-lg-first {
    order: -1;
  }
  .eds_news_Advantage .order-lg-last {
    order: 13;
  }
  .eds_news_Advantage .order-lg-0 {
    order: 0;
  }
  .eds_news_Advantage .order-lg-1 {
    order: 1;
  }
  .eds_news_Advantage .order-lg-2 {
    order: 2;
  }
  .eds_news_Advantage .order-lg-3 {
    order: 3;
  }
  .eds_news_Advantage .order-lg-4 {
    order: 4;
  }
  .eds_news_Advantage .order-lg-5 {
    order: 5;
  }
  .eds_news_Advantage .order-lg-6 {
    order: 6;
  }
  .eds_news_Advantage .order-lg-7 {
    order: 7;
  }
  .eds_news_Advantage .order-lg-8 {
    order: 8;
  }
  .eds_news_Advantage .order-lg-9 {
    order: 9;
  }
  .eds_news_Advantage .order-lg-10 {
    order: 10;
  }
  .eds_news_Advantage .order-lg-11 {
    order: 11;
  }
  .eds_news_Advantage .order-lg-12 {
    order: 12;
  }
  .eds_news_Advantage .offset-lg-0 {
    margin-left: 0;
  }
  .eds_news_Advantage .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .eds_news_Advantage .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .eds_news_Advantage .offset-lg-3 {
    margin-left: 25%;
  }
  .eds_news_Advantage .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .eds_news_Advantage .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .eds_news_Advantage .offset-lg-6 {
    margin-left: 50%;
  }
  .eds_news_Advantage .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .eds_news_Advantage .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .eds_news_Advantage .offset-lg-9 {
    margin-left: 75%;
  }
  .eds_news_Advantage .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .eds_news_Advantage .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .eds_news_Advantage .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .eds_news_Advantage .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .eds_news_Advantage .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .eds_news_Advantage .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .eds_news_Advantage .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .eds_news_Advantage .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .eds_news_Advantage .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .eds_news_Advantage .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .eds_news_Advantage .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .eds_news_Advantage .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .eds_news_Advantage .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .eds_news_Advantage .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .eds_news_Advantage .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .eds_news_Advantage .order-xl-first {
    order: -1;
  }
  .eds_news_Advantage .order-xl-last {
    order: 13;
  }
  .eds_news_Advantage .order-xl-0 {
    order: 0;
  }
  .eds_news_Advantage .order-xl-1 {
    order: 1;
  }
  .eds_news_Advantage .order-xl-2 {
    order: 2;
  }
  .eds_news_Advantage .order-xl-3 {
    order: 3;
  }
  .eds_news_Advantage .order-xl-4 {
    order: 4;
  }
  .eds_news_Advantage .order-xl-5 {
    order: 5;
  }
  .eds_news_Advantage .order-xl-6 {
    order: 6;
  }
  .eds_news_Advantage .order-xl-7 {
    order: 7;
  }
  .eds_news_Advantage .order-xl-8 {
    order: 8;
  }
  .eds_news_Advantage .order-xl-9 {
    order: 9;
  }
  .eds_news_Advantage .order-xl-10 {
    order: 10;
  }
  .eds_news_Advantage .order-xl-11 {
    order: 11;
  }
  .eds_news_Advantage .order-xl-12 {
    order: 12;
  }
  .eds_news_Advantage .offset-xl-0 {
    margin-left: 0;
  }
  .eds_news_Advantage .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .eds_news_Advantage .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .eds_news_Advantage .offset-xl-3 {
    margin-left: 25%;
  }
  .eds_news_Advantage .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .eds_news_Advantage .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .eds_news_Advantage .offset-xl-6 {
    margin-left: 50%;
  }
  .eds_news_Advantage .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .eds_news_Advantage .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .eds_news_Advantage .offset-xl-9 {
    margin-left: 75%;
  }
  .eds_news_Advantage .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .eds_news_Advantage .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

.eds_news_Advantage .form-control {
  display: block;
  width: 100%;
  padding: 0.4375rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.eds_news_Advantage .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.eds_news_Advantage .form-control:focus {
  color: #495057;
  background-color: rgba(0, 0, 0, 0);
  border-color: #72f5e5;
  outline: 0;
  box-shadow: none, 0 0 0 0.2rem rgba(16, 215, 191, 0.25);
}
.eds_news_Advantage .form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.eds_news_Advantage .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.eds_news_Advantage .form-control:disabled, .eds_news_Advantage .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.eds_news_Advantage select.form-control:not([size]):not([multiple]) {
  height: calc(2.4375rem + 2px);
}
.eds_news_Advantage select.form-control:focus::-ms-value {
  color: #495057;
  background-color: rgba(0, 0, 0, 0);
}
.eds_news_Advantage .form-control-file,
.eds_news_Advantage .form-control-range {
  display: block;
  width: 100%;
}
.eds_news_Advantage .col-form-label {
  padding-top: calc(0.4375rem + 1px);
  padding-bottom: calc(0.4375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.eds_news_Advantage .col-form-label-lg {
  padding-top: calc(0.5625rem + 1px);
  padding-bottom: calc(0.5625rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.eds_news_Advantage .col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.eds_news_Advantage .form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.eds_news_Advantage .form-control-plaintext.form-control-sm, .eds_news_Advantage .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.eds_news_Advantage .form-control-sm {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.eds_news_Advantage select.form-control-sm:not([size]):not([multiple]) {
  height: calc(2.125rem + 2px);
}
.eds_news_Advantage .form-control-lg {
  padding: 0.5625rem 0;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.eds_news_Advantage select.form-control-lg:not([size]):not([multiple]) {
  height: calc(4.125rem + 2px);
}
.eds_news_Advantage .form-group {
  margin-bottom: 1rem;
}
.eds_news_Advantage .form-text {
  display: block;
  margin-top: 0.25rem;
}
.eds_news_Advantage .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.eds_news_Advantage .form-row > .col,
.eds_news_Advantage .form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.eds_news_Advantage .form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.eds_news_Advantage .form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.eds_news_Advantage .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}
.eds_news_Advantage .form-check-label {
  margin-bottom: 0;
}
.eds_news_Advantage .form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.eds_news_Advantage .form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.eds_news_Advantage .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #64ce66;
}
.eds_news_Advantage .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(100, 206, 102, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .form-control:valid, .eds_news_Advantage .form-control.is-valid,
.was-validated .eds_news_Advantage .custom-select:valid,
.eds_news_Advantage .custom-select.is-valid {
  border-color: #64ce66;
}
.was-validated .eds_news_Advantage .form-control:valid:focus, .eds_news_Advantage .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .custom-select:valid:focus,
.eds_news_Advantage .custom-select.is-valid:focus {
  border-color: #64ce66;
  box-shadow: 0 0 0 0.2rem rgba(100, 206, 102, 0.25);
}
.was-validated .eds_news_Advantage .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .form-check-input.is-valid ~ .form-check-label {
  color: #64ce66;
}
.was-validated .eds_news_Advantage .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .custom-control-input.is-valid ~ .custom-control-label {
  color: #64ce66;
}
.was-validated .eds_news_Advantage .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #c5edc6;
}
.was-validated .eds_news_Advantage .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #8bda8c;
}
.was-validated .eds_news_Advantage .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(100, 206, 102, 0.25);
}
.was-validated .eds_news_Advantage .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #64ce66;
}
.was-validated .eds_news_Advantage .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(100, 206, 102, 0.25);
}
.eds_news_Advantage .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #fc4c3b;
}
.eds_news_Advantage .invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(252, 76, 59, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .form-control:invalid, .eds_news_Advantage .form-control.is-invalid,
.was-validated .eds_news_Advantage .custom-select:invalid,
.eds_news_Advantage .custom-select.is-invalid {
  border-color: #fc4c3b;
}
.was-validated .eds_news_Advantage .form-control:invalid:focus, .eds_news_Advantage .form-control.is-invalid:focus,
.was-validated .eds_news_Advantage .custom-select:invalid:focus,
.eds_news_Advantage .custom-select.is-invalid:focus {
  border-color: #fc4c3b;
  box-shadow: 0 0 0 0.2rem rgba(252, 76, 59, 0.25);
}
.was-validated .eds_news_Advantage .form-control:invalid ~ .invalid-feedback,
.was-validated .eds_news_Advantage .form-control:invalid ~ .invalid-tooltip, .eds_news_Advantage .form-control.is-invalid ~ .invalid-feedback,
.eds_news_Advantage .form-control.is-invalid ~ .invalid-tooltip,
.was-validated .eds_news_Advantage .custom-select:invalid ~ .invalid-feedback,
.was-validated .eds_news_Advantage .custom-select:invalid ~ .invalid-tooltip,
.eds_news_Advantage .custom-select.is-invalid ~ .invalid-feedback,
.eds_news_Advantage .custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .form-check-input:invalid ~ .form-check-label, .eds_news_Advantage .form-check-input.is-invalid ~ .form-check-label {
  color: #fc4c3b;
}
.was-validated .eds_news_Advantage .form-check-input:invalid ~ .invalid-feedback,
.was-validated .eds_news_Advantage .form-check-input:invalid ~ .invalid-tooltip, .eds_news_Advantage .form-check-input.is-invalid ~ .invalid-feedback,
.eds_news_Advantage .form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-control-input:invalid ~ .custom-control-label, .eds_news_Advantage .custom-control-input.is-invalid ~ .custom-control-label {
  color: #fc4c3b;
}
.was-validated .eds_news_Advantage .custom-control-input:invalid ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #febfb9;
}
.was-validated .eds_news_Advantage .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .eds_news_Advantage .custom-control-input:invalid ~ .invalid-tooltip, .eds_news_Advantage .custom-control-input.is-invalid ~ .invalid-feedback,
.eds_news_Advantage .custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-control-input:invalid:checked ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #fd7a6d;
}
.was-validated .eds_news_Advantage .custom-control-input:invalid:focus ~ .custom-control-label::before, .eds_news_Advantage .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(252, 76, 59, 0.25);
}
.was-validated .eds_news_Advantage .custom-file-input:invalid ~ .custom-file-label, .eds_news_Advantage .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #fc4c3b;
}
.was-validated .eds_news_Advantage .custom-file-input:invalid ~ .custom-file-label::before, .eds_news_Advantage .custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .eds_news_Advantage .custom-file-input:invalid ~ .invalid-tooltip, .eds_news_Advantage .custom-file-input.is-invalid ~ .invalid-feedback,
.eds_news_Advantage .custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .custom-file-input:invalid:focus ~ .custom-file-label, .eds_news_Advantage .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(252, 76, 59, 0.25);
}
.eds_news_Advantage .form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.eds_news_Advantage .form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .eds_news_Advantage .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .eds_news_Advantage .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .eds_news_Advantage .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .eds_news_Advantage .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .eds_news_Advantage .form-inline .input-group {
    width: auto;
  }
  .eds_news_Advantage .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .eds_news_Advantage .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .eds_news_Advantage .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .eds_news_Advantage .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/*.dropup,
.dropdown {
  position: relative;
}*/
.eds_news_Advantage .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.eds_news_Advantage .dropdown-toggle:empty::after {
  margin-left: 0;
}

/*
// The dropdown menu
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: $zindex-dropdown;
  display: none; // none by default, but block on "open" of the menu
  float: left;
  min-width: $dropdown-min-width;
  padding: $dropdown-padding-y 0;
  margin: $dropdown-spacer 0 0; // override default ul
  font-size: $font-size-base; // Redeclare because nesting can cause inheritance issues
  color: $body-color;
  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
  list-style: none;
  background-color: $dropdown-bg;
  background-clip: padding-box;
  border: $dropdown-border-width solid $dropdown-border-color;
  @include border-radius($dropdown-border-radius);
  @include box-shadow($dropdown-box-shadow);
}

// Allow for dropdowns to go bottom up (aka, dropup-menu)
// Just add .dropup after the standard .dropdown class and you're set.
.dropup {
  .dropdown-menu {
    margin-top: 0;
    margin-bottom: $dropdown-spacer;
  }

  .dropdown-toggle {
    @include caret(up);
  }
}

.dropright {
  .dropdown-menu {
    margin-top: 0;
    margin-left: $dropdown-spacer;
  }

  .dropdown-toggle {
    @include caret(right);
    &::after {
      vertical-align: 0;
    }
  }
}

.dropleft {
  .dropdown-menu {
    margin-top: 0;
    margin-right: $dropdown-spacer;
  }

  .dropdown-toggle {
    @include caret(left);
    &::before {
      vertical-align: 0;
    }
  }
}

// Dividers (basically an `<hr>`) within the dropdown
.dropdown-divider {
  @include nav-divider($dropdown-divider-bg);
}

// Links, buttons, and more within the dropdown menu
//
// `<button>`-specific styles are denoted with `// For <button>s`
.dropdown-item {
  display: block;
  width: 100%; // For `<button>`s
  padding: $dropdown-item-padding-y $dropdown-item-padding-x;
  clear: both;
  font-weight: $font-weight-normal;
  color: $dropdown-link-color;
  text-align: inherit; // For `<button>`s
  white-space: nowrap; // prevent links from randomly breaking onto new lines
  background-color: transparent; // For `<button>`s
  border: 0; // For `<button>`s

  @include hover-focus {
    color: $dropdown-link-hover-color;
    text-decoration: none;
    @include gradient-bg($dropdown-link-hover-bg);
  }

  &.active,
  &:active {
    color: $dropdown-link-active-color;
    text-decoration: none;
    @include gradient-bg($dropdown-link-active-bg);
  }

  &.disabled,
  &:disabled {
    color: $dropdown-link-disabled-color;
    background-color: transparent;
    // Remove CSS gradients if they're enabled
    @if $enable-gradients {
      background-image: none;
    }
  }
}

.dropdown-menu.show {
  display: block;
}

// Dropdown section headers
.dropdown-header {
  display: block;
  padding: $dropdown-padding-y $dropdown-item-padding-x;
  margin-bottom: 0; // for use with heading elements
  font-size: $font-size-sm;
  color: $dropdown-header-color;
  white-space: nowrap; // as with > li > a
}
*/
.eds_news_Advantage .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, 0.12);
  border-radius: 0.25rem;
}
.eds_news_Advantage .card > hr {
  margin-right: 0;
  margin-left: 0;
}
.eds_news_Advantage .card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.eds_news_Advantage .card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.eds_news_Advantage .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.eds_news_Advantage .card-title {
  margin-bottom: 0.75rem;
}
.eds_news_Advantage .card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.eds_news_Advantage .card-text:last-child {
  margin-bottom: 0;
}
.eds_news_Advantage .card-link:hover {
  text-decoration: none;
}
.eds_news_Advantage .card-link + .card-link {
  margin-left: 1.25rem;
}
.eds_news_Advantage .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.eds_news_Advantage .card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.eds_news_Advantage .card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.eds_news_Advantage .card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.eds_news_Advantage .card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.eds_news_Advantage .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.eds_news_Advantage .card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.eds_news_Advantage .card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.eds_news_Advantage .card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.eds_news_Advantage .card-deck {
  display: flex;
  flex-direction: column;
}
.eds_news_Advantage .card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .eds_news_Advantage .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .eds_news_Advantage .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.eds_news_Advantage .card-group {
  display: flex;
  flex-direction: column;
}
.eds_news_Advantage .card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .eds_news_Advantage .card-group {
    flex-flow: row wrap;
  }
  .eds_news_Advantage .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .eds_news_Advantage .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .eds_news_Advantage .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:first-child .card-img-top,
.eds_news_Advantage .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:first-child .card-img-bottom,
.eds_news_Advantage .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:last-child .card-img-top,
.eds_news_Advantage .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:last-child .card-img-bottom,
.eds_news_Advantage .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .eds_news_Advantage .card-group > .card:only-child .card-img-top,
.eds_news_Advantage .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .eds_news_Advantage .card-group > .card:only-child .card-img-bottom,
.eds_news_Advantage .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .eds_news_Advantage .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .eds_news_Advantage .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
.eds_news_Advantage .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
.eds_news_Advantage .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
.eds_news_Advantage .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}
.eds_news_Advantage .card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .eds_news_Advantage .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .eds_news_Advantage .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.eds_news_Advantage .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.eds_news_Advantage .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: "/";
}
.eds_news_Advantage .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.eds_news_Advantage .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.eds_news_Advantage .breadcrumb-item.active {
  color: #6c757d;
}

.eds_news_Advantage .media {
  display: flex;
  align-items: flex-start;
}
.eds_news_Advantage .media-body {
  flex: 1;
}

.eds_news_Advantage .badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.eds_news_Advantage .badge:empty {
  display: none;
}
.eds_news_Advantage .btn .badge {
  position: relative;
  top: -1px;
}
.eds_news_Advantage .badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.eds_news_Advantage .badge-primary {
  color: #212529;
  background-color: #10d7bf;
}
.eds_news_Advantage .badge-primary[href]:hover, .eds_news_Advantage .badge-primary[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #0ca895;
}
.eds_news_Advantage .badge-secondary {
  color: #ffffff;
  background-color: #6c757d;
}
.eds_news_Advantage .badge-secondary[href]:hover, .eds_news_Advantage .badge-secondary[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #545b62;
}
.eds_news_Advantage .badge-success {
  color: #212529;
  background-color: #64ce66;
}
.eds_news_Advantage .badge-success[href]:hover, .eds_news_Advantage .badge-success[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #3dc240;
}
.eds_news_Advantage .badge-info {
  color: #ffffff;
  background-color: #00bcd4;
}
.eds_news_Advantage .badge-info[href]:hover, .eds_news_Advantage .badge-info[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #008fa1;
}
.eds_news_Advantage .badge-warning {
  color: #212529;
  background-color: #f6c606;
}
.eds_news_Advantage .badge-warning[href]:hover, .eds_news_Advantage .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #c49e05;
}
.eds_news_Advantage .badge-danger {
  color: #ffffff;
  background-color: #fc4c3b;
}
.eds_news_Advantage .badge-danger[href]:hover, .eds_news_Advantage .badge-danger[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #fb1e09;
}
.eds_news_Advantage .badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.eds_news_Advantage .badge-light[href]:hover, .eds_news_Advantage .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}
.eds_news_Advantage .badge-dark {
  color: #ffffff;
  background-color: #343a40;
}
.eds_news_Advantage .badge-dark[href]:hover, .eds_news_Advantage .badge-dark[href]:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #1d2124;
}

.eds_news_Advantage .d-none {
  display: none !important;
}
.eds_news_Advantage .d-inline {
  display: inline !important;
}
.eds_news_Advantage .d-inline-block {
  display: inline-block !important;
}
.eds_news_Advantage .d-block {
  display: block !important;
}
.eds_news_Advantage .d-table {
  display: table !important;
}
.eds_news_Advantage .d-table-row {
  display: table-row !important;
}
.eds_news_Advantage .d-table-cell {
  display: table-cell !important;
}
.eds_news_Advantage .d-flex {
  display: flex !important;
}
.eds_news_Advantage .d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .eds_news_Advantage .d-sm-none {
    display: none !important;
  }
  .eds_news_Advantage .d-sm-inline {
    display: inline !important;
  }
  .eds_news_Advantage .d-sm-inline-block {
    display: inline-block !important;
  }
  .eds_news_Advantage .d-sm-block {
    display: block !important;
  }
  .eds_news_Advantage .d-sm-table {
    display: table !important;
  }
  .eds_news_Advantage .d-sm-table-row {
    display: table-row !important;
  }
  .eds_news_Advantage .d-sm-table-cell {
    display: table-cell !important;
  }
  .eds_news_Advantage .d-sm-flex {
    display: flex !important;
  }
  .eds_news_Advantage .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .d-md-none {
    display: none !important;
  }
  .eds_news_Advantage .d-md-inline {
    display: inline !important;
  }
  .eds_news_Advantage .d-md-inline-block {
    display: inline-block !important;
  }
  .eds_news_Advantage .d-md-block {
    display: block !important;
  }
  .eds_news_Advantage .d-md-table {
    display: table !important;
  }
  .eds_news_Advantage .d-md-table-row {
    display: table-row !important;
  }
  .eds_news_Advantage .d-md-table-cell {
    display: table-cell !important;
  }
  .eds_news_Advantage .d-md-flex {
    display: flex !important;
  }
  .eds_news_Advantage .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .d-lg-none {
    display: none !important;
  }
  .eds_news_Advantage .d-lg-inline {
    display: inline !important;
  }
  .eds_news_Advantage .d-lg-inline-block {
    display: inline-block !important;
  }
  .eds_news_Advantage .d-lg-block {
    display: block !important;
  }
  .eds_news_Advantage .d-lg-table {
    display: table !important;
  }
  .eds_news_Advantage .d-lg-table-row {
    display: table-row !important;
  }
  .eds_news_Advantage .d-lg-table-cell {
    display: table-cell !important;
  }
  .eds_news_Advantage .d-lg-flex {
    display: flex !important;
  }
  .eds_news_Advantage .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .d-xl-none {
    display: none !important;
  }
  .eds_news_Advantage .d-xl-inline {
    display: inline !important;
  }
  .eds_news_Advantage .d-xl-inline-block {
    display: inline-block !important;
  }
  .eds_news_Advantage .d-xl-block {
    display: block !important;
  }
  .eds_news_Advantage .d-xl-table {
    display: table !important;
  }
  .eds_news_Advantage .d-xl-table-row {
    display: table-row !important;
  }
  .eds_news_Advantage .d-xl-table-cell {
    display: table-cell !important;
  }
  .eds_news_Advantage .d-xl-flex {
    display: flex !important;
  }
  .eds_news_Advantage .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .eds_news_Advantage .d-print-none {
    display: none !important;
  }
  .eds_news_Advantage .d-print-inline {
    display: inline !important;
  }
  .eds_news_Advantage .d-print-inline-block {
    display: inline-block !important;
  }
  .eds_news_Advantage .d-print-block {
    display: block !important;
  }
  .eds_news_Advantage .d-print-table {
    display: table !important;
  }
  .eds_news_Advantage .d-print-table-row {
    display: table-row !important;
  }
  .eds_news_Advantage .d-print-table-cell {
    display: table-cell !important;
  }
  .eds_news_Advantage .d-print-flex {
    display: flex !important;
  }
  .eds_news_Advantage .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.eds_news_Advantage .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.eds_news_Advantage .embed-responsive::before {
  display: block;
  content: "";
}
.eds_news_Advantage .embed-responsive .embed-responsive-item,
.eds_news_Advantage .embed-responsive iframe,
.eds_news_Advantage .embed-responsive embed,
.eds_news_Advantage .embed-responsive object,
.eds_news_Advantage .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.eds_news_Advantage .embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
.eds_news_Advantage .embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.eds_news_Advantage .embed-responsive-4by3::before {
  padding-top: 75%;
}
.eds_news_Advantage .embed-responsive-1by1::before {
  padding-top: 100%;
}

.eds_news_Advantage .flex-row {
  flex-direction: row !important;
}
.eds_news_Advantage .flex-column {
  flex-direction: column !important;
}
.eds_news_Advantage .flex-row-reverse {
  flex-direction: row-reverse !important;
}
.eds_news_Advantage .flex-column-reverse {
  flex-direction: column-reverse !important;
}
.eds_news_Advantage .flex-wrap {
  flex-wrap: wrap !important;
}
.eds_news_Advantage .flex-nowrap {
  flex-wrap: nowrap !important;
}
.eds_news_Advantage .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.eds_news_Advantage .justify-content-start {
  justify-content: flex-start !important;
}
.eds_news_Advantage .justify-content-end {
  justify-content: flex-end !important;
}
.eds_news_Advantage .justify-content-center {
  justify-content: center !important;
}
.eds_news_Advantage .justify-content-between {
  justify-content: space-between !important;
}
.eds_news_Advantage .justify-content-around {
  justify-content: space-around !important;
}
.eds_news_Advantage .align-items-start {
  align-items: flex-start !important;
}
.eds_news_Advantage .align-items-end {
  align-items: flex-end !important;
}
.eds_news_Advantage .align-items-center {
  align-items: center !important;
}
.eds_news_Advantage .align-items-baseline {
  align-items: baseline !important;
}
.eds_news_Advantage .align-items-stretch {
  align-items: stretch !important;
}
.eds_news_Advantage .align-content-start {
  align-content: flex-start !important;
}
.eds_news_Advantage .align-content-end {
  align-content: flex-end !important;
}
.eds_news_Advantage .align-content-center {
  align-content: center !important;
}
.eds_news_Advantage .align-content-between {
  align-content: space-between !important;
}
.eds_news_Advantage .align-content-around {
  align-content: space-around !important;
}
.eds_news_Advantage .align-content-stretch {
  align-content: stretch !important;
}
.eds_news_Advantage .align-self-auto {
  align-self: auto !important;
}
.eds_news_Advantage .align-self-start {
  align-self: flex-start !important;
}
.eds_news_Advantage .align-self-end {
  align-self: flex-end !important;
}
.eds_news_Advantage .align-self-center {
  align-self: center !important;
}
.eds_news_Advantage .align-self-baseline {
  align-self: baseline !important;
}
.eds_news_Advantage .align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .eds_news_Advantage .flex-sm-row {
    flex-direction: row !important;
  }
  .eds_news_Advantage .flex-sm-column {
    flex-direction: column !important;
  }
  .eds_news_Advantage .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .eds_news_Advantage .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .eds_news_Advantage .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .eds_news_Advantage .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .eds_news_Advantage .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .eds_news_Advantage .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .eds_news_Advantage .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .eds_news_Advantage .justify-content-sm-center {
    justify-content: center !important;
  }
  .eds_news_Advantage .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .eds_news_Advantage .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .eds_news_Advantage .align-items-sm-start {
    align-items: flex-start !important;
  }
  .eds_news_Advantage .align-items-sm-end {
    align-items: flex-end !important;
  }
  .eds_news_Advantage .align-items-sm-center {
    align-items: center !important;
  }
  .eds_news_Advantage .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .eds_news_Advantage .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .eds_news_Advantage .align-content-sm-start {
    align-content: flex-start !important;
  }
  .eds_news_Advantage .align-content-sm-end {
    align-content: flex-end !important;
  }
  .eds_news_Advantage .align-content-sm-center {
    align-content: center !important;
  }
  .eds_news_Advantage .align-content-sm-between {
    align-content: space-between !important;
  }
  .eds_news_Advantage .align-content-sm-around {
    align-content: space-around !important;
  }
  .eds_news_Advantage .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .eds_news_Advantage .align-self-sm-auto {
    align-self: auto !important;
  }
  .eds_news_Advantage .align-self-sm-start {
    align-self: flex-start !important;
  }
  .eds_news_Advantage .align-self-sm-end {
    align-self: flex-end !important;
  }
  .eds_news_Advantage .align-self-sm-center {
    align-self: center !important;
  }
  .eds_news_Advantage .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .eds_news_Advantage .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .flex-md-row {
    flex-direction: row !important;
  }
  .eds_news_Advantage .flex-md-column {
    flex-direction: column !important;
  }
  .eds_news_Advantage .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .eds_news_Advantage .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .eds_news_Advantage .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .eds_news_Advantage .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .eds_news_Advantage .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .eds_news_Advantage .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .eds_news_Advantage .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .eds_news_Advantage .justify-content-md-center {
    justify-content: center !important;
  }
  .eds_news_Advantage .justify-content-md-between {
    justify-content: space-between !important;
  }
  .eds_news_Advantage .justify-content-md-around {
    justify-content: space-around !important;
  }
  .eds_news_Advantage .align-items-md-start {
    align-items: flex-start !important;
  }
  .eds_news_Advantage .align-items-md-end {
    align-items: flex-end !important;
  }
  .eds_news_Advantage .align-items-md-center {
    align-items: center !important;
  }
  .eds_news_Advantage .align-items-md-baseline {
    align-items: baseline !important;
  }
  .eds_news_Advantage .align-items-md-stretch {
    align-items: stretch !important;
  }
  .eds_news_Advantage .align-content-md-start {
    align-content: flex-start !important;
  }
  .eds_news_Advantage .align-content-md-end {
    align-content: flex-end !important;
  }
  .eds_news_Advantage .align-content-md-center {
    align-content: center !important;
  }
  .eds_news_Advantage .align-content-md-between {
    align-content: space-between !important;
  }
  .eds_news_Advantage .align-content-md-around {
    align-content: space-around !important;
  }
  .eds_news_Advantage .align-content-md-stretch {
    align-content: stretch !important;
  }
  .eds_news_Advantage .align-self-md-auto {
    align-self: auto !important;
  }
  .eds_news_Advantage .align-self-md-start {
    align-self: flex-start !important;
  }
  .eds_news_Advantage .align-self-md-end {
    align-self: flex-end !important;
  }
  .eds_news_Advantage .align-self-md-center {
    align-self: center !important;
  }
  .eds_news_Advantage .align-self-md-baseline {
    align-self: baseline !important;
  }
  .eds_news_Advantage .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .flex-lg-row {
    flex-direction: row !important;
  }
  .eds_news_Advantage .flex-lg-column {
    flex-direction: column !important;
  }
  .eds_news_Advantage .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .eds_news_Advantage .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .eds_news_Advantage .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .eds_news_Advantage .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .eds_news_Advantage .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .eds_news_Advantage .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .eds_news_Advantage .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .eds_news_Advantage .justify-content-lg-center {
    justify-content: center !important;
  }
  .eds_news_Advantage .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .eds_news_Advantage .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .eds_news_Advantage .align-items-lg-start {
    align-items: flex-start !important;
  }
  .eds_news_Advantage .align-items-lg-end {
    align-items: flex-end !important;
  }
  .eds_news_Advantage .align-items-lg-center {
    align-items: center !important;
  }
  .eds_news_Advantage .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .eds_news_Advantage .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .eds_news_Advantage .align-content-lg-start {
    align-content: flex-start !important;
  }
  .eds_news_Advantage .align-content-lg-end {
    align-content: flex-end !important;
  }
  .eds_news_Advantage .align-content-lg-center {
    align-content: center !important;
  }
  .eds_news_Advantage .align-content-lg-between {
    align-content: space-between !important;
  }
  .eds_news_Advantage .align-content-lg-around {
    align-content: space-around !important;
  }
  .eds_news_Advantage .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .eds_news_Advantage .align-self-lg-auto {
    align-self: auto !important;
  }
  .eds_news_Advantage .align-self-lg-start {
    align-self: flex-start !important;
  }
  .eds_news_Advantage .align-self-lg-end {
    align-self: flex-end !important;
  }
  .eds_news_Advantage .align-self-lg-center {
    align-self: center !important;
  }
  .eds_news_Advantage .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .eds_news_Advantage .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .flex-xl-row {
    flex-direction: row !important;
  }
  .eds_news_Advantage .flex-xl-column {
    flex-direction: column !important;
  }
  .eds_news_Advantage .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .eds_news_Advantage .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .eds_news_Advantage .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .eds_news_Advantage .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .eds_news_Advantage .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .eds_news_Advantage .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .eds_news_Advantage .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .eds_news_Advantage .justify-content-xl-center {
    justify-content: center !important;
  }
  .eds_news_Advantage .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .eds_news_Advantage .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .eds_news_Advantage .align-items-xl-start {
    align-items: flex-start !important;
  }
  .eds_news_Advantage .align-items-xl-end {
    align-items: flex-end !important;
  }
  .eds_news_Advantage .align-items-xl-center {
    align-items: center !important;
  }
  .eds_news_Advantage .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .eds_news_Advantage .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .eds_news_Advantage .align-content-xl-start {
    align-content: flex-start !important;
  }
  .eds_news_Advantage .align-content-xl-end {
    align-content: flex-end !important;
  }
  .eds_news_Advantage .align-content-xl-center {
    align-content: center !important;
  }
  .eds_news_Advantage .align-content-xl-between {
    align-content: space-between !important;
  }
  .eds_news_Advantage .align-content-xl-around {
    align-content: space-around !important;
  }
  .eds_news_Advantage .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .eds_news_Advantage .align-self-xl-auto {
    align-self: auto !important;
  }
  .eds_news_Advantage .align-self-xl-start {
    align-self: flex-start !important;
  }
  .eds_news_Advantage .align-self-xl-end {
    align-self: flex-end !important;
  }
  .eds_news_Advantage .align-self-xl-center {
    align-self: center !important;
  }
  .eds_news_Advantage .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .eds_news_Advantage .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.eds_news_Advantage .float-left {
  float: left !important;
}
.eds_news_Advantage .float-right {
  float: right !important;
}
.eds_news_Advantage .float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .eds_news_Advantage .float-sm-left {
    float: left !important;
  }
  .eds_news_Advantage .float-sm-right {
    float: right !important;
  }
  .eds_news_Advantage .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .float-md-left {
    float: left !important;
  }
  .eds_news_Advantage .float-md-right {
    float: right !important;
  }
  .eds_news_Advantage .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .float-lg-left {
    float: left !important;
  }
  .eds_news_Advantage .float-lg-right {
    float: right !important;
  }
  .eds_news_Advantage .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .float-xl-left {
    float: left !important;
  }
  .eds_news_Advantage .float-xl-right {
    float: right !important;
  }
  .eds_news_Advantage .float-xl-none {
    float: none !important;
  }
}

.eds_news_Advantage .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}
.eds_news_Advantage .sr-only-focusable:active, .eds_news_Advantage .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

.eds_news_Advantage .w-25 {
  width: 25% !important;
}
.eds_news_Advantage .w-50 {
  width: 50% !important;
}
.eds_news_Advantage .w-75 {
  width: 75% !important;
}
.eds_news_Advantage .w-100 {
  width: 100% !important;
}
.eds_news_Advantage .h-25 {
  height: 25% !important;
}
.eds_news_Advantage .h-50 {
  height: 50% !important;
}
.eds_news_Advantage .h-75 {
  height: 75% !important;
}
.eds_news_Advantage .h-100 {
  height: 100% !important;
}
.eds_news_Advantage .mw-100 {
  max-width: 100% !important;
}
.eds_news_Advantage .mh-100 {
  max-height: 100% !important;
}

.eds_news_Advantage .m-0 {
  margin: 0 !important;
}
.eds_news_Advantage .mt-0,
.eds_news_Advantage .my-0 {
  margin-top: 0 !important;
}
.eds_news_Advantage .mr-0,
.eds_news_Advantage .mx-0 {
  margin-right: 0 !important;
}
.eds_news_Advantage .mb-0,
.eds_news_Advantage .my-0 {
  margin-bottom: 0 !important;
}
.eds_news_Advantage .ml-0,
.eds_news_Advantage .mx-0 {
  margin-left: 0 !important;
}
.eds_news_Advantage .m-1 {
  margin: 0.25rem !important;
}
.eds_news_Advantage .mt-1,
.eds_news_Advantage .my-1 {
  margin-top: 0.25rem !important;
}
.eds_news_Advantage .mr-1,
.eds_news_Advantage .mx-1 {
  margin-right: 0.25rem !important;
}
.eds_news_Advantage .mb-1,
.eds_news_Advantage .my-1 {
  margin-bottom: 0.25rem !important;
}
.eds_news_Advantage .ml-1,
.eds_news_Advantage .mx-1 {
  margin-left: 0.25rem !important;
}
.eds_news_Advantage .m-2 {
  margin: 0.5rem !important;
}
.eds_news_Advantage .mt-2,
.eds_news_Advantage .my-2 {
  margin-top: 0.5rem !important;
}
.eds_news_Advantage .mr-2,
.eds_news_Advantage .mx-2 {
  margin-right: 0.5rem !important;
}
.eds_news_Advantage .mb-2,
.eds_news_Advantage .my-2 {
  margin-bottom: 0.5rem !important;
}
.eds_news_Advantage .ml-2,
.eds_news_Advantage .mx-2 {
  margin-left: 0.5rem !important;
}
.eds_news_Advantage .m-3 {
  margin: 1rem !important;
}
.eds_news_Advantage .mt-3,
.eds_news_Advantage .my-3 {
  margin-top: 1rem !important;
}
.eds_news_Advantage .mr-3,
.eds_news_Advantage .mx-3 {
  margin-right: 1rem !important;
}
.eds_news_Advantage .mb-3,
.eds_news_Advantage .my-3 {
  margin-bottom: 1rem !important;
}
.eds_news_Advantage .ml-3,
.eds_news_Advantage .mx-3 {
  margin-left: 1rem !important;
}
.eds_news_Advantage .m-4 {
  margin: 1.5rem !important;
}
.eds_news_Advantage .mt-4,
.eds_news_Advantage .my-4 {
  margin-top: 1.5rem !important;
}
.eds_news_Advantage .mr-4,
.eds_news_Advantage .mx-4 {
  margin-right: 1.5rem !important;
}
.eds_news_Advantage .mb-4,
.eds_news_Advantage .my-4 {
  margin-bottom: 1.5rem !important;
}
.eds_news_Advantage .ml-4,
.eds_news_Advantage .mx-4 {
  margin-left: 1.5rem !important;
}
.eds_news_Advantage .m-5 {
  margin: 3rem !important;
}
.eds_news_Advantage .mt-5,
.eds_news_Advantage .my-5 {
  margin-top: 3rem !important;
}
.eds_news_Advantage .mr-5,
.eds_news_Advantage .mx-5 {
  margin-right: 3rem !important;
}
.eds_news_Advantage .mb-5,
.eds_news_Advantage .my-5 {
  margin-bottom: 3rem !important;
}
.eds_news_Advantage .ml-5,
.eds_news_Advantage .mx-5 {
  margin-left: 3rem !important;
}
.eds_news_Advantage .p-0 {
  padding: 0 !important;
}
.eds_news_Advantage .pt-0,
.eds_news_Advantage .py-0 {
  padding-top: 0 !important;
}
.eds_news_Advantage .pr-0,
.eds_news_Advantage .px-0 {
  padding-right: 0 !important;
}
.eds_news_Advantage .pb-0,
.eds_news_Advantage .py-0 {
  padding-bottom: 0 !important;
}
.eds_news_Advantage .pl-0,
.eds_news_Advantage .px-0 {
  padding-left: 0 !important;
}
.eds_news_Advantage .p-1 {
  padding: 0.25rem !important;
}
.eds_news_Advantage .pt-1,
.eds_news_Advantage .py-1 {
  padding-top: 0.25rem !important;
}
.eds_news_Advantage .pr-1,
.eds_news_Advantage .px-1 {
  padding-right: 0.25rem !important;
}
.eds_news_Advantage .pb-1,
.eds_news_Advantage .py-1 {
  padding-bottom: 0.25rem !important;
}
.eds_news_Advantage .pl-1,
.eds_news_Advantage .px-1 {
  padding-left: 0.25rem !important;
}
.eds_news_Advantage .p-2 {
  padding: 0.5rem !important;
}
.eds_news_Advantage .pt-2,
.eds_news_Advantage .py-2 {
  padding-top: 0.5rem !important;
}
.eds_news_Advantage .pr-2,
.eds_news_Advantage .px-2 {
  padding-right: 0.5rem !important;
}
.eds_news_Advantage .pb-2,
.eds_news_Advantage .py-2 {
  padding-bottom: 0.5rem !important;
}
.eds_news_Advantage .pl-2,
.eds_news_Advantage .px-2 {
  padding-left: 0.5rem !important;
}
.eds_news_Advantage .p-3 {
  padding: 1rem !important;
}
.eds_news_Advantage .pt-3,
.eds_news_Advantage .py-3 {
  padding-top: 1rem !important;
}
.eds_news_Advantage .pr-3,
.eds_news_Advantage .px-3 {
  padding-right: 1rem !important;
}
.eds_news_Advantage .pb-3,
.eds_news_Advantage .py-3 {
  padding-bottom: 1rem !important;
}
.eds_news_Advantage .pl-3,
.eds_news_Advantage .px-3 {
  padding-left: 1rem !important;
}
.eds_news_Advantage .p-4 {
  padding: 1.5rem !important;
}
.eds_news_Advantage .pt-4,
.eds_news_Advantage .py-4 {
  padding-top: 1.5rem !important;
}
.eds_news_Advantage .pr-4,
.eds_news_Advantage .px-4 {
  padding-right: 1.5rem !important;
}
.eds_news_Advantage .pb-4,
.eds_news_Advantage .py-4 {
  padding-bottom: 1.5rem !important;
}
.eds_news_Advantage .pl-4,
.eds_news_Advantage .px-4 {
  padding-left: 1.5rem !important;
}
.eds_news_Advantage .p-5 {
  padding: 3rem !important;
}
.eds_news_Advantage .pt-5,
.eds_news_Advantage .py-5 {
  padding-top: 3rem !important;
}
.eds_news_Advantage .pr-5,
.eds_news_Advantage .px-5 {
  padding-right: 3rem !important;
}
.eds_news_Advantage .pb-5,
.eds_news_Advantage .py-5 {
  padding-bottom: 3rem !important;
}
.eds_news_Advantage .pl-5,
.eds_news_Advantage .px-5 {
  padding-left: 3rem !important;
}
.eds_news_Advantage .m-auto {
  margin: auto !important;
}
.eds_news_Advantage .mt-auto,
.eds_news_Advantage .my-auto {
  margin-top: auto !important;
}
.eds_news_Advantage .mr-auto,
.eds_news_Advantage .mx-auto {
  margin-right: auto !important;
}
.eds_news_Advantage .mb-auto,
.eds_news_Advantage .my-auto {
  margin-bottom: auto !important;
}
.eds_news_Advantage .ml-auto,
.eds_news_Advantage .mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .eds_news_Advantage .m-sm-0 {
    margin: 0 !important;
  }
  .eds_news_Advantage .mt-sm-0,
.eds_news_Advantage .my-sm-0 {
    margin-top: 0 !important;
  }
  .eds_news_Advantage .mr-sm-0,
.eds_news_Advantage .mx-sm-0 {
    margin-right: 0 !important;
  }
  .eds_news_Advantage .mb-sm-0,
.eds_news_Advantage .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .eds_news_Advantage .ml-sm-0,
.eds_news_Advantage .mx-sm-0 {
    margin-left: 0 !important;
  }
  .eds_news_Advantage .m-sm-1 {
    margin: 0.25rem !important;
  }
  .eds_news_Advantage .mt-sm-1,
.eds_news_Advantage .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .eds_news_Advantage .mr-sm-1,
.eds_news_Advantage .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .eds_news_Advantage .mb-sm-1,
.eds_news_Advantage .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .ml-sm-1,
.eds_news_Advantage .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .eds_news_Advantage .m-sm-2 {
    margin: 0.5rem !important;
  }
  .eds_news_Advantage .mt-sm-2,
.eds_news_Advantage .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .eds_news_Advantage .mr-sm-2,
.eds_news_Advantage .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .eds_news_Advantage .mb-sm-2,
.eds_news_Advantage .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .ml-sm-2,
.eds_news_Advantage .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .eds_news_Advantage .m-sm-3 {
    margin: 1rem !important;
  }
  .eds_news_Advantage .mt-sm-3,
.eds_news_Advantage .my-sm-3 {
    margin-top: 1rem !important;
  }
  .eds_news_Advantage .mr-sm-3,
.eds_news_Advantage .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .eds_news_Advantage .mb-sm-3,
.eds_news_Advantage .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .eds_news_Advantage .ml-sm-3,
.eds_news_Advantage .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .eds_news_Advantage .m-sm-4 {
    margin: 1.5rem !important;
  }
  .eds_news_Advantage .mt-sm-4,
.eds_news_Advantage .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .eds_news_Advantage .mr-sm-4,
.eds_news_Advantage .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .eds_news_Advantage .mb-sm-4,
.eds_news_Advantage .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .ml-sm-4,
.eds_news_Advantage .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .eds_news_Advantage .m-sm-5 {
    margin: 3rem !important;
  }
  .eds_news_Advantage .mt-sm-5,
.eds_news_Advantage .my-sm-5 {
    margin-top: 3rem !important;
  }
  .eds_news_Advantage .mr-sm-5,
.eds_news_Advantage .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .eds_news_Advantage .mb-sm-5,
.eds_news_Advantage .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .eds_news_Advantage .ml-sm-5,
.eds_news_Advantage .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .eds_news_Advantage .p-sm-0 {
    padding: 0 !important;
  }
  .eds_news_Advantage .pt-sm-0,
.eds_news_Advantage .py-sm-0 {
    padding-top: 0 !important;
  }
  .eds_news_Advantage .pr-sm-0,
.eds_news_Advantage .px-sm-0 {
    padding-right: 0 !important;
  }
  .eds_news_Advantage .pb-sm-0,
.eds_news_Advantage .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .eds_news_Advantage .pl-sm-0,
.eds_news_Advantage .px-sm-0 {
    padding-left: 0 !important;
  }
  .eds_news_Advantage .p-sm-1 {
    padding: 0.25rem !important;
  }
  .eds_news_Advantage .pt-sm-1,
.eds_news_Advantage .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .eds_news_Advantage .pr-sm-1,
.eds_news_Advantage .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .eds_news_Advantage .pb-sm-1,
.eds_news_Advantage .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .pl-sm-1,
.eds_news_Advantage .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .eds_news_Advantage .p-sm-2 {
    padding: 0.5rem !important;
  }
  .eds_news_Advantage .pt-sm-2,
.eds_news_Advantage .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .eds_news_Advantage .pr-sm-2,
.eds_news_Advantage .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .eds_news_Advantage .pb-sm-2,
.eds_news_Advantage .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .pl-sm-2,
.eds_news_Advantage .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .eds_news_Advantage .p-sm-3 {
    padding: 1rem !important;
  }
  .eds_news_Advantage .pt-sm-3,
.eds_news_Advantage .py-sm-3 {
    padding-top: 1rem !important;
  }
  .eds_news_Advantage .pr-sm-3,
.eds_news_Advantage .px-sm-3 {
    padding-right: 1rem !important;
  }
  .eds_news_Advantage .pb-sm-3,
.eds_news_Advantage .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .eds_news_Advantage .pl-sm-3,
.eds_news_Advantage .px-sm-3 {
    padding-left: 1rem !important;
  }
  .eds_news_Advantage .p-sm-4 {
    padding: 1.5rem !important;
  }
  .eds_news_Advantage .pt-sm-4,
.eds_news_Advantage .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .eds_news_Advantage .pr-sm-4,
.eds_news_Advantage .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .eds_news_Advantage .pb-sm-4,
.eds_news_Advantage .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .pl-sm-4,
.eds_news_Advantage .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .eds_news_Advantage .p-sm-5 {
    padding: 3rem !important;
  }
  .eds_news_Advantage .pt-sm-5,
.eds_news_Advantage .py-sm-5 {
    padding-top: 3rem !important;
  }
  .eds_news_Advantage .pr-sm-5,
.eds_news_Advantage .px-sm-5 {
    padding-right: 3rem !important;
  }
  .eds_news_Advantage .pb-sm-5,
.eds_news_Advantage .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .eds_news_Advantage .pl-sm-5,
.eds_news_Advantage .px-sm-5 {
    padding-left: 3rem !important;
  }
  .eds_news_Advantage .m-sm-auto {
    margin: auto !important;
  }
  .eds_news_Advantage .mt-sm-auto,
.eds_news_Advantage .my-sm-auto {
    margin-top: auto !important;
  }
  .eds_news_Advantage .mr-sm-auto,
.eds_news_Advantage .mx-sm-auto {
    margin-right: auto !important;
  }
  .eds_news_Advantage .mb-sm-auto,
.eds_news_Advantage .my-sm-auto {
    margin-bottom: auto !important;
  }
  .eds_news_Advantage .ml-sm-auto,
.eds_news_Advantage .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .m-md-0 {
    margin: 0 !important;
  }
  .eds_news_Advantage .mt-md-0,
.eds_news_Advantage .my-md-0 {
    margin-top: 0 !important;
  }
  .eds_news_Advantage .mr-md-0,
.eds_news_Advantage .mx-md-0 {
    margin-right: 0 !important;
  }
  .eds_news_Advantage .mb-md-0,
.eds_news_Advantage .my-md-0 {
    margin-bottom: 0 !important;
  }
  .eds_news_Advantage .ml-md-0,
.eds_news_Advantage .mx-md-0 {
    margin-left: 0 !important;
  }
  .eds_news_Advantage .m-md-1 {
    margin: 0.25rem !important;
  }
  .eds_news_Advantage .mt-md-1,
.eds_news_Advantage .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .eds_news_Advantage .mr-md-1,
.eds_news_Advantage .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .eds_news_Advantage .mb-md-1,
.eds_news_Advantage .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .ml-md-1,
.eds_news_Advantage .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .eds_news_Advantage .m-md-2 {
    margin: 0.5rem !important;
  }
  .eds_news_Advantage .mt-md-2,
.eds_news_Advantage .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .eds_news_Advantage .mr-md-2,
.eds_news_Advantage .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .eds_news_Advantage .mb-md-2,
.eds_news_Advantage .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .ml-md-2,
.eds_news_Advantage .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .eds_news_Advantage .m-md-3 {
    margin: 1rem !important;
  }
  .eds_news_Advantage .mt-md-3,
.eds_news_Advantage .my-md-3 {
    margin-top: 1rem !important;
  }
  .eds_news_Advantage .mr-md-3,
.eds_news_Advantage .mx-md-3 {
    margin-right: 1rem !important;
  }
  .eds_news_Advantage .mb-md-3,
.eds_news_Advantage .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .eds_news_Advantage .ml-md-3,
.eds_news_Advantage .mx-md-3 {
    margin-left: 1rem !important;
  }
  .eds_news_Advantage .m-md-4 {
    margin: 1.5rem !important;
  }
  .eds_news_Advantage .mt-md-4,
.eds_news_Advantage .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .eds_news_Advantage .mr-md-4,
.eds_news_Advantage .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .eds_news_Advantage .mb-md-4,
.eds_news_Advantage .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .ml-md-4,
.eds_news_Advantage .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .eds_news_Advantage .m-md-5 {
    margin: 3rem !important;
  }
  .eds_news_Advantage .mt-md-5,
.eds_news_Advantage .my-md-5 {
    margin-top: 3rem !important;
  }
  .eds_news_Advantage .mr-md-5,
.eds_news_Advantage .mx-md-5 {
    margin-right: 3rem !important;
  }
  .eds_news_Advantage .mb-md-5,
.eds_news_Advantage .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .eds_news_Advantage .ml-md-5,
.eds_news_Advantage .mx-md-5 {
    margin-left: 3rem !important;
  }
  .eds_news_Advantage .p-md-0 {
    padding: 0 !important;
  }
  .eds_news_Advantage .pt-md-0,
.eds_news_Advantage .py-md-0 {
    padding-top: 0 !important;
  }
  .eds_news_Advantage .pr-md-0,
.eds_news_Advantage .px-md-0 {
    padding-right: 0 !important;
  }
  .eds_news_Advantage .pb-md-0,
.eds_news_Advantage .py-md-0 {
    padding-bottom: 0 !important;
  }
  .eds_news_Advantage .pl-md-0,
.eds_news_Advantage .px-md-0 {
    padding-left: 0 !important;
  }
  .eds_news_Advantage .p-md-1 {
    padding: 0.25rem !important;
  }
  .eds_news_Advantage .pt-md-1,
.eds_news_Advantage .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .eds_news_Advantage .pr-md-1,
.eds_news_Advantage .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .eds_news_Advantage .pb-md-1,
.eds_news_Advantage .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .pl-md-1,
.eds_news_Advantage .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .eds_news_Advantage .p-md-2 {
    padding: 0.5rem !important;
  }
  .eds_news_Advantage .pt-md-2,
.eds_news_Advantage .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .eds_news_Advantage .pr-md-2,
.eds_news_Advantage .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .eds_news_Advantage .pb-md-2,
.eds_news_Advantage .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .pl-md-2,
.eds_news_Advantage .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .eds_news_Advantage .p-md-3 {
    padding: 1rem !important;
  }
  .eds_news_Advantage .pt-md-3,
.eds_news_Advantage .py-md-3 {
    padding-top: 1rem !important;
  }
  .eds_news_Advantage .pr-md-3,
.eds_news_Advantage .px-md-3 {
    padding-right: 1rem !important;
  }
  .eds_news_Advantage .pb-md-3,
.eds_news_Advantage .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .eds_news_Advantage .pl-md-3,
.eds_news_Advantage .px-md-3 {
    padding-left: 1rem !important;
  }
  .eds_news_Advantage .p-md-4 {
    padding: 1.5rem !important;
  }
  .eds_news_Advantage .pt-md-4,
.eds_news_Advantage .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .eds_news_Advantage .pr-md-4,
.eds_news_Advantage .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .eds_news_Advantage .pb-md-4,
.eds_news_Advantage .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .pl-md-4,
.eds_news_Advantage .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .eds_news_Advantage .p-md-5 {
    padding: 3rem !important;
  }
  .eds_news_Advantage .pt-md-5,
.eds_news_Advantage .py-md-5 {
    padding-top: 3rem !important;
  }
  .eds_news_Advantage .pr-md-5,
.eds_news_Advantage .px-md-5 {
    padding-right: 3rem !important;
  }
  .eds_news_Advantage .pb-md-5,
.eds_news_Advantage .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .eds_news_Advantage .pl-md-5,
.eds_news_Advantage .px-md-5 {
    padding-left: 3rem !important;
  }
  .eds_news_Advantage .m-md-auto {
    margin: auto !important;
  }
  .eds_news_Advantage .mt-md-auto,
.eds_news_Advantage .my-md-auto {
    margin-top: auto !important;
  }
  .eds_news_Advantage .mr-md-auto,
.eds_news_Advantage .mx-md-auto {
    margin-right: auto !important;
  }
  .eds_news_Advantage .mb-md-auto,
.eds_news_Advantage .my-md-auto {
    margin-bottom: auto !important;
  }
  .eds_news_Advantage .ml-md-auto,
.eds_news_Advantage .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .m-lg-0 {
    margin: 0 !important;
  }
  .eds_news_Advantage .mt-lg-0,
.eds_news_Advantage .my-lg-0 {
    margin-top: 0 !important;
  }
  .eds_news_Advantage .mr-lg-0,
.eds_news_Advantage .mx-lg-0 {
    margin-right: 0 !important;
  }
  .eds_news_Advantage .mb-lg-0,
.eds_news_Advantage .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .eds_news_Advantage .ml-lg-0,
.eds_news_Advantage .mx-lg-0 {
    margin-left: 0 !important;
  }
  .eds_news_Advantage .m-lg-1 {
    margin: 0.25rem !important;
  }
  .eds_news_Advantage .mt-lg-1,
.eds_news_Advantage .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .eds_news_Advantage .mr-lg-1,
.eds_news_Advantage .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .eds_news_Advantage .mb-lg-1,
.eds_news_Advantage .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .ml-lg-1,
.eds_news_Advantage .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .eds_news_Advantage .m-lg-2 {
    margin: 0.5rem !important;
  }
  .eds_news_Advantage .mt-lg-2,
.eds_news_Advantage .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .eds_news_Advantage .mr-lg-2,
.eds_news_Advantage .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .eds_news_Advantage .mb-lg-2,
.eds_news_Advantage .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .ml-lg-2,
.eds_news_Advantage .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .eds_news_Advantage .m-lg-3 {
    margin: 1rem !important;
  }
  .eds_news_Advantage .mt-lg-3,
.eds_news_Advantage .my-lg-3 {
    margin-top: 1rem !important;
  }
  .eds_news_Advantage .mr-lg-3,
.eds_news_Advantage .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .eds_news_Advantage .mb-lg-3,
.eds_news_Advantage .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .eds_news_Advantage .ml-lg-3,
.eds_news_Advantage .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .eds_news_Advantage .m-lg-4 {
    margin: 1.5rem !important;
  }
  .eds_news_Advantage .mt-lg-4,
.eds_news_Advantage .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .eds_news_Advantage .mr-lg-4,
.eds_news_Advantage .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .eds_news_Advantage .mb-lg-4,
.eds_news_Advantage .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .ml-lg-4,
.eds_news_Advantage .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .eds_news_Advantage .m-lg-5 {
    margin: 3rem !important;
  }
  .eds_news_Advantage .mt-lg-5,
.eds_news_Advantage .my-lg-5 {
    margin-top: 3rem !important;
  }
  .eds_news_Advantage .mr-lg-5,
.eds_news_Advantage .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .eds_news_Advantage .mb-lg-5,
.eds_news_Advantage .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .eds_news_Advantage .ml-lg-5,
.eds_news_Advantage .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .eds_news_Advantage .p-lg-0 {
    padding: 0 !important;
  }
  .eds_news_Advantage .pt-lg-0,
.eds_news_Advantage .py-lg-0 {
    padding-top: 0 !important;
  }
  .eds_news_Advantage .pr-lg-0,
.eds_news_Advantage .px-lg-0 {
    padding-right: 0 !important;
  }
  .eds_news_Advantage .pb-lg-0,
.eds_news_Advantage .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .eds_news_Advantage .pl-lg-0,
.eds_news_Advantage .px-lg-0 {
    padding-left: 0 !important;
  }
  .eds_news_Advantage .p-lg-1 {
    padding: 0.25rem !important;
  }
  .eds_news_Advantage .pt-lg-1,
.eds_news_Advantage .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .eds_news_Advantage .pr-lg-1,
.eds_news_Advantage .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .eds_news_Advantage .pb-lg-1,
.eds_news_Advantage .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .pl-lg-1,
.eds_news_Advantage .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .eds_news_Advantage .p-lg-2 {
    padding: 0.5rem !important;
  }
  .eds_news_Advantage .pt-lg-2,
.eds_news_Advantage .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .eds_news_Advantage .pr-lg-2,
.eds_news_Advantage .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .eds_news_Advantage .pb-lg-2,
.eds_news_Advantage .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .pl-lg-2,
.eds_news_Advantage .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .eds_news_Advantage .p-lg-3 {
    padding: 1rem !important;
  }
  .eds_news_Advantage .pt-lg-3,
.eds_news_Advantage .py-lg-3 {
    padding-top: 1rem !important;
  }
  .eds_news_Advantage .pr-lg-3,
.eds_news_Advantage .px-lg-3 {
    padding-right: 1rem !important;
  }
  .eds_news_Advantage .pb-lg-3,
.eds_news_Advantage .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .eds_news_Advantage .pl-lg-3,
.eds_news_Advantage .px-lg-3 {
    padding-left: 1rem !important;
  }
  .eds_news_Advantage .p-lg-4 {
    padding: 1.5rem !important;
  }
  .eds_news_Advantage .pt-lg-4,
.eds_news_Advantage .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .eds_news_Advantage .pr-lg-4,
.eds_news_Advantage .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .eds_news_Advantage .pb-lg-4,
.eds_news_Advantage .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .pl-lg-4,
.eds_news_Advantage .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .eds_news_Advantage .p-lg-5 {
    padding: 3rem !important;
  }
  .eds_news_Advantage .pt-lg-5,
.eds_news_Advantage .py-lg-5 {
    padding-top: 3rem !important;
  }
  .eds_news_Advantage .pr-lg-5,
.eds_news_Advantage .px-lg-5 {
    padding-right: 3rem !important;
  }
  .eds_news_Advantage .pb-lg-5,
.eds_news_Advantage .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .eds_news_Advantage .pl-lg-5,
.eds_news_Advantage .px-lg-5 {
    padding-left: 3rem !important;
  }
  .eds_news_Advantage .m-lg-auto {
    margin: auto !important;
  }
  .eds_news_Advantage .mt-lg-auto,
.eds_news_Advantage .my-lg-auto {
    margin-top: auto !important;
  }
  .eds_news_Advantage .mr-lg-auto,
.eds_news_Advantage .mx-lg-auto {
    margin-right: auto !important;
  }
  .eds_news_Advantage .mb-lg-auto,
.eds_news_Advantage .my-lg-auto {
    margin-bottom: auto !important;
  }
  .eds_news_Advantage .ml-lg-auto,
.eds_news_Advantage .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .m-xl-0 {
    margin: 0 !important;
  }
  .eds_news_Advantage .mt-xl-0,
.eds_news_Advantage .my-xl-0 {
    margin-top: 0 !important;
  }
  .eds_news_Advantage .mr-xl-0,
.eds_news_Advantage .mx-xl-0 {
    margin-right: 0 !important;
  }
  .eds_news_Advantage .mb-xl-0,
.eds_news_Advantage .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .eds_news_Advantage .ml-xl-0,
.eds_news_Advantage .mx-xl-0 {
    margin-left: 0 !important;
  }
  .eds_news_Advantage .m-xl-1 {
    margin: 0.25rem !important;
  }
  .eds_news_Advantage .mt-xl-1,
.eds_news_Advantage .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .eds_news_Advantage .mr-xl-1,
.eds_news_Advantage .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .eds_news_Advantage .mb-xl-1,
.eds_news_Advantage .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .ml-xl-1,
.eds_news_Advantage .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .eds_news_Advantage .m-xl-2 {
    margin: 0.5rem !important;
  }
  .eds_news_Advantage .mt-xl-2,
.eds_news_Advantage .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .eds_news_Advantage .mr-xl-2,
.eds_news_Advantage .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .eds_news_Advantage .mb-xl-2,
.eds_news_Advantage .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .ml-xl-2,
.eds_news_Advantage .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .eds_news_Advantage .m-xl-3 {
    margin: 1rem !important;
  }
  .eds_news_Advantage .mt-xl-3,
.eds_news_Advantage .my-xl-3 {
    margin-top: 1rem !important;
  }
  .eds_news_Advantage .mr-xl-3,
.eds_news_Advantage .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .eds_news_Advantage .mb-xl-3,
.eds_news_Advantage .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .eds_news_Advantage .ml-xl-3,
.eds_news_Advantage .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .eds_news_Advantage .m-xl-4 {
    margin: 1.5rem !important;
  }
  .eds_news_Advantage .mt-xl-4,
.eds_news_Advantage .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .eds_news_Advantage .mr-xl-4,
.eds_news_Advantage .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .eds_news_Advantage .mb-xl-4,
.eds_news_Advantage .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .ml-xl-4,
.eds_news_Advantage .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .eds_news_Advantage .m-xl-5 {
    margin: 3rem !important;
  }
  .eds_news_Advantage .mt-xl-5,
.eds_news_Advantage .my-xl-5 {
    margin-top: 3rem !important;
  }
  .eds_news_Advantage .mr-xl-5,
.eds_news_Advantage .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .eds_news_Advantage .mb-xl-5,
.eds_news_Advantage .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .eds_news_Advantage .ml-xl-5,
.eds_news_Advantage .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .eds_news_Advantage .p-xl-0 {
    padding: 0 !important;
  }
  .eds_news_Advantage .pt-xl-0,
.eds_news_Advantage .py-xl-0 {
    padding-top: 0 !important;
  }
  .eds_news_Advantage .pr-xl-0,
.eds_news_Advantage .px-xl-0 {
    padding-right: 0 !important;
  }
  .eds_news_Advantage .pb-xl-0,
.eds_news_Advantage .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .eds_news_Advantage .pl-xl-0,
.eds_news_Advantage .px-xl-0 {
    padding-left: 0 !important;
  }
  .eds_news_Advantage .p-xl-1 {
    padding: 0.25rem !important;
  }
  .eds_news_Advantage .pt-xl-1,
.eds_news_Advantage .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .eds_news_Advantage .pr-xl-1,
.eds_news_Advantage .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .eds_news_Advantage .pb-xl-1,
.eds_news_Advantage .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .eds_news_Advantage .pl-xl-1,
.eds_news_Advantage .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .eds_news_Advantage .p-xl-2 {
    padding: 0.5rem !important;
  }
  .eds_news_Advantage .pt-xl-2,
.eds_news_Advantage .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .eds_news_Advantage .pr-xl-2,
.eds_news_Advantage .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .eds_news_Advantage .pb-xl-2,
.eds_news_Advantage .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .eds_news_Advantage .pl-xl-2,
.eds_news_Advantage .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .eds_news_Advantage .p-xl-3 {
    padding: 1rem !important;
  }
  .eds_news_Advantage .pt-xl-3,
.eds_news_Advantage .py-xl-3 {
    padding-top: 1rem !important;
  }
  .eds_news_Advantage .pr-xl-3,
.eds_news_Advantage .px-xl-3 {
    padding-right: 1rem !important;
  }
  .eds_news_Advantage .pb-xl-3,
.eds_news_Advantage .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .eds_news_Advantage .pl-xl-3,
.eds_news_Advantage .px-xl-3 {
    padding-left: 1rem !important;
  }
  .eds_news_Advantage .p-xl-4 {
    padding: 1.5rem !important;
  }
  .eds_news_Advantage .pt-xl-4,
.eds_news_Advantage .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .eds_news_Advantage .pr-xl-4,
.eds_news_Advantage .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .eds_news_Advantage .pb-xl-4,
.eds_news_Advantage .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .eds_news_Advantage .pl-xl-4,
.eds_news_Advantage .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .eds_news_Advantage .p-xl-5 {
    padding: 3rem !important;
  }
  .eds_news_Advantage .pt-xl-5,
.eds_news_Advantage .py-xl-5 {
    padding-top: 3rem !important;
  }
  .eds_news_Advantage .pr-xl-5,
.eds_news_Advantage .px-xl-5 {
    padding-right: 3rem !important;
  }
  .eds_news_Advantage .pb-xl-5,
.eds_news_Advantage .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .eds_news_Advantage .pl-xl-5,
.eds_news_Advantage .px-xl-5 {
    padding-left: 3rem !important;
  }
  .eds_news_Advantage .m-xl-auto {
    margin: auto !important;
  }
  .eds_news_Advantage .mt-xl-auto,
.eds_news_Advantage .my-xl-auto {
    margin-top: auto !important;
  }
  .eds_news_Advantage .mr-xl-auto,
.eds_news_Advantage .mx-xl-auto {
    margin-right: auto !important;
  }
  .eds_news_Advantage .mb-xl-auto,
.eds_news_Advantage .my-xl-auto {
    margin-bottom: auto !important;
  }
  .eds_news_Advantage .ml-xl-auto,
.eds_news_Advantage .mx-xl-auto {
    margin-left: auto !important;
  }
}

.eds_news_Advantage .text-justify {
  text-align: justify !important;
}
.eds_news_Advantage .text-nowrap {
  white-space: nowrap !important;
}
.eds_news_Advantage .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eds_news_Advantage .text-left {
  text-align: left !important;
}
.eds_news_Advantage .text-right {
  text-align: right !important;
}
.eds_news_Advantage .text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .eds_news_Advantage .text-sm-left {
    text-align: left !important;
  }
  .eds_news_Advantage .text-sm-right {
    text-align: right !important;
  }
  .eds_news_Advantage .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .eds_news_Advantage .text-md-left {
    text-align: left !important;
  }
  .eds_news_Advantage .text-md-right {
    text-align: right !important;
  }
  .eds_news_Advantage .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .eds_news_Advantage .text-lg-left {
    text-align: left !important;
  }
  .eds_news_Advantage .text-lg-right {
    text-align: right !important;
  }
  .eds_news_Advantage .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .eds_news_Advantage .text-xl-left {
    text-align: left !important;
  }
  .eds_news_Advantage .text-xl-right {
    text-align: right !important;
  }
  .eds_news_Advantage .text-xl-center {
    text-align: center !important;
  }
}
.eds_news_Advantage .text-lowercase {
  text-transform: lowercase !important;
}
.eds_news_Advantage .text-uppercase {
  text-transform: uppercase !important;
}
.eds_news_Advantage .text-capitalize {
  text-transform: capitalize !important;
}
.eds_news_Advantage .font-weight-light {
  font-weight: 300 !important;
}
.eds_news_Advantage .font-weight-normal {
  font-weight: 400 !important;
}
.eds_news_Advantage .font-weight-bold {
  font-weight: 500 !important;
}
.eds_news_Advantage .font-italic {
  font-style: italic !important;
}
.eds_news_Advantage .text-white {
  color: #fff !important;
}
.eds_news_Advantage .text-primary {
  color: #10d7bf !important;
}
.eds_news_Advantage a.text-primary:hover, .eds_news_Advantage a.text-primary:focus {
  color: #0ca895 !important;
}
.eds_news_Advantage .text-secondary {
  color: #6c757d !important;
}
.eds_news_Advantage a.text-secondary:hover, .eds_news_Advantage a.text-secondary:focus {
  color: #545b62 !important;
}
.eds_news_Advantage .text-success {
  color: #64ce66 !important;
}
.eds_news_Advantage a.text-success:hover, .eds_news_Advantage a.text-success:focus {
  color: #3dc240 !important;
}
.eds_news_Advantage .text-info {
  color: #00bcd4 !important;
}
.eds_news_Advantage a.text-info:hover, .eds_news_Advantage a.text-info:focus {
  color: #008fa1 !important;
}
.eds_news_Advantage .text-warning {
  color: #f6c606 !important;
}
.eds_news_Advantage a.text-warning:hover, .eds_news_Advantage a.text-warning:focus {
  color: #c49e05 !important;
}
.eds_news_Advantage .text-danger {
  color: #fc4c3b !important;
}
.eds_news_Advantage a.text-danger:hover, .eds_news_Advantage a.text-danger:focus {
  color: #fb1e09 !important;
}
.eds_news_Advantage .text-light {
  color: #f8f9fa !important;
}
.eds_news_Advantage a.text-light:hover, .eds_news_Advantage a.text-light:focus {
  color: #dae0e5 !important;
}
.eds_news_Advantage .text-dark {
  color: #343a40 !important;
}
.eds_news_Advantage a.text-dark:hover, .eds_news_Advantage a.text-dark:focus {
  color: #1d2124 !important;
}
.eds_news_Advantage .text-muted, .eds_news_Advantage .bmd-help {
  color: #6c757d !important;
}
.eds_news_Advantage .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.eds_news_Advantage .visible {
  visibility: visible !important;
}
.eds_news_Advantage .invisible {
  visibility: hidden !important;
}

.eds_news_Advantage .btn {
  position: relative;
  padding: 12px 30px;
  margin: 0.3125rem 1px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.42857143;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 0.2rem;
  outline: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
}
.eds_news_Advantage .btn:focus, .eds_news_Advantage .btn.focus, .eds_news_Advantage .btn:active:focus, .eds_news_Advantage .btn:active.focus, .eds_news_Advantage .btn:active:focus:focus, .eds_news_Advantage .btn:active:focus.focus, .eds_news_Advantage .btn.active:focus, .eds_news_Advantage .btn.active.focus {
  outline: 0;
  box-shadow: none !important;
}
.eds_news_Advantage .btn.btn-primary {
  color: #fff;
  background-color: #10d7bf;
  border-color: #10d7bf;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .btn.btn-primary:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .btn.btn-primary:focus, .eds_news_Advantage .btn.btn-primary.focus, .eds_news_Advantage .btn.btn-primary:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .btn.btn-primary:active, .eds_news_Advantage .btn.btn-primary.active, .open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .btn.btn-primary:active:hover, .eds_news_Advantage .btn.btn-primary:active:focus, .eds_news_Advantage .btn.btn-primary:active.focus, .eds_news_Advantage .btn.btn-primary.active:hover, .eds_news_Advantage .btn.btn-primary.active:focus, .eds_news_Advantage .btn.btn-primary.active.focus, .open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-primary.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-primary.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #076056;
}
.open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #10d7bf;
}
.open > .eds_news_Advantage .btn.btn-primary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #0fc9b2;
}
.eds_news_Advantage .btn.btn-primary.disabled:focus, .eds_news_Advantage .btn.btn-primary.disabled.focus, .eds_news_Advantage .btn.btn-primary:disabled:focus, .eds_news_Advantage .btn.btn-primary:disabled.focus {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-primary.disabled:hover, .eds_news_Advantage .btn.btn-primary:disabled:hover {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-primary:focus, .eds_news_Advantage .btn.btn-primary:active, .eds_news_Advantage .btn.btn-primary:hover {
  box-shadow: 0 14px 26px -12px rgba(16, 215, 191, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .btn.btn-primary.btn-link {
  background-color: transparent;
  color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-primary.btn-link:hover, .eds_news_Advantage .btn.btn-primary.btn-link:focus, .eds_news_Advantage .btn.btn-primary.btn-link:active {
  background-color: transparent;
  color: #10d7bf;
}
.eds_news_Advantage .btn.btn-secondary {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
  border-color: #ccc;
  box-shadow: 0 2px 2px 0 rgba(250, 250, 250, 0.14), 0 3px 1px -2px rgba(250, 250, 250, 0.2), 0 1px 5px 0 rgba(250, 250, 250, 0.12);
}
.eds_news_Advantage .btn.btn-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: #f2f2f2;
  border-color: #adadad;
}
.eds_news_Advantage .btn.btn-secondary:focus, .eds_news_Advantage .btn.btn-secondary.focus, .eds_news_Advantage .btn.btn-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: #f2f2f2;
  border-color: #adadad;
}
.eds_news_Advantage .btn.btn-secondary:active, .eds_news_Advantage .btn.btn-secondary.active, .open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle {
  color: rgba(0, 0, 0, 0.87);
  background-color: #f2f2f2;
  border-color: #adadad;
  box-shadow: 0 2px 2px 0 rgba(250, 250, 250, 0.14), 0 3px 1px -2px rgba(250, 250, 250, 0.2), 0 1px 5px 0 rgba(250, 250, 250, 0.12);
}
.eds_news_Advantage .btn.btn-secondary:active:hover, .eds_news_Advantage .btn.btn-secondary:active:focus, .eds_news_Advantage .btn.btn-secondary:active.focus, .eds_news_Advantage .btn.btn-secondary.active:hover, .eds_news_Advantage .btn.btn-secondary.active:focus, .eds_news_Advantage .btn.btn-secondary.active.focus, .open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle.focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: #f2f2f2;
  border-color: #8c8c8c;
}
.open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #fafafa;
}
.open > .eds_news_Advantage .btn.btn-secondary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f2f2f2;
}
.eds_news_Advantage .btn.btn-secondary.disabled:focus, .eds_news_Advantage .btn.btn-secondary.disabled.focus, .eds_news_Advantage .btn.btn-secondary:disabled:focus, .eds_news_Advantage .btn.btn-secondary:disabled.focus {
  background-color: #fafafa;
  border-color: #ccc;
}
.eds_news_Advantage .btn.btn-secondary.disabled:hover, .eds_news_Advantage .btn.btn-secondary:disabled:hover {
  background-color: #fafafa;
  border-color: #ccc;
}
.eds_news_Advantage .btn.btn-secondary:focus, .eds_news_Advantage .btn.btn-secondary:active, .eds_news_Advantage .btn.btn-secondary:hover {
  box-shadow: 0 14px 26px -12px rgba(250, 250, 250, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(250, 250, 250, 0.2);
}
.eds_news_Advantage .btn.btn-secondary.btn-link {
  background-color: transparent;
  color: #fafafa;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-secondary.btn-link:hover, .eds_news_Advantage .btn.btn-secondary.btn-link:focus, .eds_news_Advantage .btn.btn-secondary.btn-link:active {
  background-color: transparent;
  color: #fafafa;
}
.eds_news_Advantage .btn.btn-info {
  color: #fff;
  background-color: #00bcd4;
  border-color: #00bcd4;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.eds_news_Advantage .btn.btn-info:hover {
  color: #fff;
  background-color: #00aec5;
  border-color: #008697;
}
.eds_news_Advantage .btn.btn-info:focus, .eds_news_Advantage .btn.btn-info.focus, .eds_news_Advantage .btn.btn-info:hover {
  color: #fff;
  background-color: #00aec5;
  border-color: #008697;
}
.eds_news_Advantage .btn.btn-info:active, .eds_news_Advantage .btn.btn-info.active, .open > .eds_news_Advantage .btn.btn-info.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #00aec5;
  border-color: #008697;
  box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12);
}
.eds_news_Advantage .btn.btn-info:active:hover, .eds_news_Advantage .btn.btn-info:active:focus, .eds_news_Advantage .btn.btn-info:active.focus, .eds_news_Advantage .btn.btn-info.active:hover, .eds_news_Advantage .btn.btn-info.active:focus, .eds_news_Advantage .btn.btn-info.active.focus, .open > .eds_news_Advantage .btn.btn-info.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-info.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-info.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-info.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-info.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #00aec5;
  border-color: #004b55;
}
.open > .eds_news_Advantage .btn.btn-info.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #00bcd4;
}
.open > .eds_news_Advantage .btn.btn-info.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #00aec5;
}
.eds_news_Advantage .btn.btn-info.disabled:focus, .eds_news_Advantage .btn.btn-info.disabled.focus, .eds_news_Advantage .btn.btn-info:disabled:focus, .eds_news_Advantage .btn.btn-info:disabled.focus {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-info.disabled:hover, .eds_news_Advantage .btn.btn-info:disabled:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-info:focus, .eds_news_Advantage .btn.btn-info:active, .eds_news_Advantage .btn.btn-info:hover {
  box-shadow: 0 14px 26px -12px rgba(0, 188, 212, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2);
}
.eds_news_Advantage .btn.btn-info.btn-link {
  background-color: transparent;
  color: #00bcd4;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-info.btn-link:hover, .eds_news_Advantage .btn.btn-info.btn-link:focus, .eds_news_Advantage .btn.btn-info.btn-link:active {
  background-color: transparent;
  color: #00bcd4;
}
.eds_news_Advantage .btn.btn-success {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .btn.btn-success:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .btn.btn-success:focus, .eds_news_Advantage .btn.btn-success.focus, .eds_news_Advantage .btn.btn-success:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .btn.btn-success:active, .eds_news_Advantage .btn.btn-success.active, .open > .eds_news_Advantage .btn.btn-success.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .btn.btn-success:active:hover, .eds_news_Advantage .btn.btn-success:active:focus, .eds_news_Advantage .btn.btn-success:active.focus, .eds_news_Advantage .btn.btn-success.active:hover, .eds_news_Advantage .btn.btn-success.active:focus, .eds_news_Advantage .btn.btn-success.active.focus, .open > .eds_news_Advantage .btn.btn-success.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-success.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-success.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-success.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-success.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #47a44b;
  border-color: #255627;
}
.open > .eds_news_Advantage .btn.btn-success.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #4caf50;
}
.open > .eds_news_Advantage .btn.btn-success.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #47a44b;
}
.eds_news_Advantage .btn.btn-success.disabled:focus, .eds_news_Advantage .btn.btn-success.disabled.focus, .eds_news_Advantage .btn.btn-success:disabled:focus, .eds_news_Advantage .btn.btn-success:disabled.focus {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-success.disabled:hover, .eds_news_Advantage .btn.btn-success:disabled:hover {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-success:focus, .eds_news_Advantage .btn.btn-success:active, .eds_news_Advantage .btn.btn-success:hover {
  box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}
.eds_news_Advantage .btn.btn-success.btn-link {
  background-color: transparent;
  color: #4caf50;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-success.btn-link:hover, .eds_news_Advantage .btn.btn-success.btn-link:focus, .eds_news_Advantage .btn.btn-success.btn-link:active {
  background-color: transparent;
  color: #4caf50;
}
.eds_news_Advantage .btn.btn-warning {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .btn.btn-warning:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .btn.btn-warning:focus, .eds_news_Advantage .btn.btn-warning.focus, .eds_news_Advantage .btn.btn-warning:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .btn.btn-warning:active, .eds_news_Advantage .btn.btn-warning.active, .open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .btn.btn-warning:active:hover, .eds_news_Advantage .btn.btn-warning:active:focus, .eds_news_Advantage .btn.btn-warning:active.focus, .eds_news_Advantage .btn.btn-warning.active:hover, .eds_news_Advantage .btn.btn-warning.active:focus, .eds_news_Advantage .btn.btn-warning.active.focus, .open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-warning.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-warning.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #f08f00;
  border-color: #804c00;
}
.open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #ff9800;
}
.open > .eds_news_Advantage .btn.btn-warning.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f08f00;
}
.eds_news_Advantage .btn.btn-warning.disabled:focus, .eds_news_Advantage .btn.btn-warning.disabled.focus, .eds_news_Advantage .btn.btn-warning:disabled:focus, .eds_news_Advantage .btn.btn-warning:disabled.focus {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-warning.disabled:hover, .eds_news_Advantage .btn.btn-warning:disabled:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-warning:focus, .eds_news_Advantage .btn.btn-warning:active, .eds_news_Advantage .btn.btn-warning:hover {
  box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2);
}
.eds_news_Advantage .btn.btn-warning.btn-link {
  background-color: transparent;
  color: #ff9800;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-warning.btn-link:hover, .eds_news_Advantage .btn.btn-warning.btn-link:focus, .eds_news_Advantage .btn.btn-warning.btn-link:active {
  background-color: transparent;
  color: #ff9800;
}
.eds_news_Advantage .btn.btn-danger {
  color: #fff;
  background-color: #f44336;
  border-color: #f44336;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .btn.btn-danger:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .btn.btn-danger:focus, .eds_news_Advantage .btn.btn-danger.focus, .eds_news_Advantage .btn.btn-danger:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .btn.btn-danger:active, .eds_news_Advantage .btn.btn-danger.active, .open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .btn.btn-danger:active:hover, .eds_news_Advantage .btn.btn-danger:active:focus, .eds_news_Advantage .btn.btn-danger:active.focus, .eds_news_Advantage .btn.btn-danger.active:hover, .eds_news_Advantage .btn.btn-danger.active:focus, .eds_news_Advantage .btn.btn-danger.active.focus, .open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-danger.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-danger.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #f33527;
  border-color: #a21309;
}
.open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #f44336;
}
.open > .eds_news_Advantage .btn.btn-danger.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f33527;
}
.eds_news_Advantage .btn.btn-danger.disabled:focus, .eds_news_Advantage .btn.btn-danger.disabled.focus, .eds_news_Advantage .btn.btn-danger:disabled:focus, .eds_news_Advantage .btn.btn-danger:disabled.focus {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-danger.disabled:hover, .eds_news_Advantage .btn.btn-danger:disabled:hover {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-danger:focus, .eds_news_Advantage .btn.btn-danger:active, .eds_news_Advantage .btn.btn-danger:hover {
  box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
.eds_news_Advantage .btn.btn-danger.btn-link {
  background-color: transparent;
  color: #f44336;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-danger.btn-link:hover, .eds_news_Advantage .btn.btn-danger.btn-link:focus, .eds_news_Advantage .btn.btn-danger.btn-link:active {
  background-color: transparent;
  color: #f44336;
}
.eds_news_Advantage .btn.btn-rose {
  color: #fff;
  background-color: #e91e63;
  border-color: #e91e63;
  box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12);
}
.eds_news_Advantage .btn.btn-rose:hover {
  color: #fff;
  background-color: #ea2c6d;
  border-color: #b8124a;
}
.eds_news_Advantage .btn.btn-rose:focus, .eds_news_Advantage .btn.btn-rose.focus, .eds_news_Advantage .btn.btn-rose:hover {
  color: #fff;
  background-color: #ea2c6d;
  border-color: #b8124a;
}
.eds_news_Advantage .btn.btn-rose:active, .eds_news_Advantage .btn.btn-rose.active, .open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-rose.dropdown-toggle {
  color: #fff;
  background-color: #ea2c6d;
  border-color: #b8124a;
  box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12);
}
.eds_news_Advantage .btn.btn-rose:active:hover, .eds_news_Advantage .btn.btn-rose:active:focus, .eds_news_Advantage .btn.btn-rose:active.focus, .eds_news_Advantage .btn.btn-rose.active:hover, .eds_news_Advantage .btn.btn-rose.active:focus, .eds_news_Advantage .btn.btn-rose.active.focus, .open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-rose.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-rose.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-rose.dropdown-toggle.focus {
  color: #fff;
  background-color: #ea2c6d;
  border-color: #7b0c32;
}
.open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #e91e63;
}
.open > .eds_news_Advantage .btn.btn-rose.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #ea2c6d;
}
.eds_news_Advantage .btn.btn-rose.disabled:focus, .eds_news_Advantage .btn.btn-rose.disabled.focus, .eds_news_Advantage .btn.btn-rose:disabled:focus, .eds_news_Advantage .btn.btn-rose:disabled.focus {
  background-color: #e91e63;
  border-color: #e91e63;
}
.eds_news_Advantage .btn.btn-rose.disabled:hover, .eds_news_Advantage .btn.btn-rose:disabled:hover {
  background-color: #e91e63;
  border-color: #e91e63;
}
.eds_news_Advantage .btn.btn-rose:focus, .eds_news_Advantage .btn.btn-rose:active, .eds_news_Advantage .btn.btn-rose:hover {
  box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2);
}
.eds_news_Advantage .btn.btn-rose.btn-link {
  background-color: transparent;
  color: #e91e63;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-rose.btn-link:hover, .eds_news_Advantage .btn.btn-rose.btn-link:focus, .eds_news_Advantage .btn.btn-rose.btn-link:active {
  background-color: transparent;
  color: #e91e63;
}
.eds_news_Advantage .btn, .eds_news_Advantage .btn.btn-default {
  color: #fff;
  background-color: #999999;
  border-color: #999999;
  box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}
.eds_news_Advantage .btn:hover, .eds_news_Advantage .btn.btn-default:hover {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
}
.eds_news_Advantage .btn:focus, .eds_news_Advantage .btn.focus, .eds_news_Advantage .btn:hover, .eds_news_Advantage .btn.btn-default:focus, .eds_news_Advantage .btn.btn-default.focus, .eds_news_Advantage .btn.btn-default:hover {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
}
.eds_news_Advantage .btn:active, .eds_news_Advantage .btn.active, .open > .eds_news_Advantage .btn.dropdown-toggle, .show > .eds_news_Advantage .btn.dropdown-toggle, .eds_news_Advantage .btn.btn-default:active, .eds_news_Advantage .btn.btn-default.active, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-default.dropdown-toggle {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
  box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}
.eds_news_Advantage .btn:active:hover, .eds_news_Advantage .btn:active:focus, .eds_news_Advantage .btn:active.focus, .eds_news_Advantage .btn.active:hover, .eds_news_Advantage .btn.active:focus, .eds_news_Advantage .btn.active.focus, .open > .eds_news_Advantage .btn.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.dropdown-toggle.focus, .eds_news_Advantage .btn.btn-default:active:hover, .eds_news_Advantage .btn.btn-default:active:focus, .eds_news_Advantage .btn.btn-default:active.focus, .eds_news_Advantage .btn.btn-default.active:hover, .eds_news_Advantage .btn.btn-default.active:focus, .eds_news_Advantage .btn.btn-default.active.focus, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-default.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-default.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #919191;
  border-color: #595959;
}
.open > .eds_news_Advantage .btn.dropdown-toggle.bmd-btn-icon, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #999999;
}
.open > .eds_news_Advantage .btn.dropdown-toggle.bmd-btn-icon:hover, .open > .eds_news_Advantage .btn.btn-default.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #919191;
}
.eds_news_Advantage .btn.disabled:focus, .eds_news_Advantage .btn.disabled.focus, .eds_news_Advantage .btn:disabled:focus, .eds_news_Advantage .btn:disabled.focus, .eds_news_Advantage .btn.btn-default.disabled:focus, .eds_news_Advantage .btn.btn-default.disabled.focus, .eds_news_Advantage .btn.btn-default:disabled:focus, .eds_news_Advantage .btn.btn-default:disabled.focus {
  background-color: #999999;
  border-color: #999999;
}
.eds_news_Advantage .btn.disabled:hover, .eds_news_Advantage .btn:disabled:hover, .eds_news_Advantage .btn.btn-default.disabled:hover, .eds_news_Advantage .btn.btn-default:disabled:hover {
  background-color: #999999;
  border-color: #999999;
}
.eds_news_Advantage .btn:focus, .eds_news_Advantage .btn:active, .eds_news_Advantage .btn:hover, .eds_news_Advantage .btn.btn-default:focus, .eds_news_Advantage .btn.btn-default:active, .eds_news_Advantage .btn.btn-default:hover {
  box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-link, .eds_news_Advantage .btn.btn-default.btn-link {
  background-color: transparent;
  color: #999999;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-link:hover, .eds_news_Advantage .btn.btn-link:focus, .eds_news_Advantage .btn.btn-link:active, .eds_news_Advantage .btn.btn-default.btn-link:hover, .eds_news_Advantage .btn.btn-default.btn-link:focus, .eds_news_Advantage .btn.btn-default.btn-link:active {
  background-color: transparent;
  color: #999999;
}
.eds_news_Advantage .btn.btn-white, .eds_news_Advantage .btn.btn-white:focus, .eds_news_Advantage .btn.btn-white:hover {
  background-color: #fff;
  color: #999999;
}
.eds_news_Advantage .btn.btn-white.btn-link {
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-link:hover, .eds_news_Advantage .btn.btn-link:focus, .eds_news_Advantage .btn.btn-link:active {
  text-decoration: none !important;
}
.eds_news_Advantage .btn.btn-disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.eds_news_Advantage .btn.btn-disabled:hover {
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-raised.btn-link, .btn-group-raised .eds_news_Advantage .btn.btn-link {
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-raised.btn-link.active, .btn-group-raised .eds_news_Advantage .btn.btn-link.active {
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-raised.btn-link:hover, .eds_news_Advantage .btn.btn-raised.btn-link:focus, .eds_news_Advantage .btn.btn-raised.btn-link:active, .btn-group-raised .eds_news_Advantage .btn.btn-link:hover, .btn-group-raised .eds_news_Advantage .btn.btn-link:focus, .btn-group-raised .eds_news_Advantage .btn.btn-link:active {
  box-shadow: none;
}
fieldset[disabled][disabled] .eds_news_Advantage .btn.btn-raised, .eds_news_Advantage .btn.btn-raised.disabled, .eds_news_Advantage .btn.btn-raised:disabled, .eds_news_Advantage .btn.btn-raised[disabled], fieldset[disabled][disabled] .btn-group-raised .eds_news_Advantage .btn, .btn-group-raised .eds_news_Advantage .btn.disabled, .btn-group-raised .eds_news_Advantage .btn:disabled, .btn-group-raised .eds_news_Advantage .btn[disabled] {
  box-shadow: none;
}
.eds_news_Advantage .btn.btn-outline, .eds_news_Advantage .btn.btn-outline-primary, .eds_news_Advantage .btn.btn-outline-secondary, .eds_news_Advantage .btn.btn-outline-info, .eds_news_Advantage .btn.btn-outline-success, .eds_news_Advantage .btn.btn-outline-warning, .eds_news_Advantage .btn.btn-outline-danger {
  border-color: currentColor;
  border-style: solid;
  border-width: 1px;
}
.eds_news_Advantage .btn.btn-outline {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline:focus, .eds_news_Advantage .btn.btn-outline.focus, .eds_news_Advantage .btn.btn-outline:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline:active, .eds_news_Advantage .btn.btn-outline.active, .open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline.dropdown-toggle {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline:active:hover, .eds_news_Advantage .btn.btn-outline:active:focus, .eds_news_Advantage .btn.btn-outline:active.focus, .eds_news_Advantage .btn.btn-outline.active:hover, .eds_news_Advantage .btn.btn-outline.active:focus, .eds_news_Advantage .btn.btn-outline.active.focus, .open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline.dropdown-toggle.focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.4);
  border-color: rgba(0, 0, 0, 0.87);
}
.open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline.disabled:focus, .eds_news_Advantage .btn.btn-outline.disabled.focus, .eds_news_Advantage .btn.btn-outline:disabled:focus, .eds_news_Advantage .btn.btn-outline:disabled.focus {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline.disabled:hover, .eds_news_Advantage .btn.btn-outline:disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline:active, .bg-inverse .eds_news_Advantage .btn.btn-outline.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle.focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline:disabled.focus {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline:disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-primary {
  color: #10d7bf;
  background-color: transparent;
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-outline-primary:hover {
  color: #10d7bf;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-outline-primary:focus, .eds_news_Advantage .btn.btn-outline-primary.focus, .eds_news_Advantage .btn.btn-outline-primary:hover {
  color: #10d7bf;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-outline-primary:active, .eds_news_Advantage .btn.btn-outline-primary.active, .open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle {
  color: #10d7bf;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #10d7bf;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-primary:active:hover, .eds_news_Advantage .btn.btn-outline-primary:active:focus, .eds_news_Advantage .btn.btn-outline-primary:active.focus, .eds_news_Advantage .btn.btn-outline-primary.active:hover, .eds_news_Advantage .btn.btn-outline-primary.active:focus, .eds_news_Advantage .btn.btn-outline-primary.active.focus, .open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.focus {
  color: #10d7bf;
  background-color: rgba(153, 153, 153, 0.4);
  border-color: #10d7bf;
}
.open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-primary.disabled:focus, .eds_news_Advantage .btn.btn-outline-primary.disabled.focus, .eds_news_Advantage .btn.btn-outline-primary:disabled:focus, .eds_news_Advantage .btn.btn-outline-primary:disabled.focus {
  background-color: transparent;
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-outline-primary.disabled:hover, .eds_news_Advantage .btn.btn-outline-primary:disabled:hover {
  background-color: transparent;
  border-color: #10d7bf;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary {
  color: #10d7bf;
  background-color: transparent;
  border-color: #10d7bf;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary:hover {
  color: #10d7bf;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:hover {
  color: #10d7bf;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle {
  color: #10d7bf;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.focus {
  color: #10d7bf;
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:disabled.focus {
  background-color: transparent;
  border-color: #10d7bf;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-primary.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-primary:disabled:hover {
  background-color: transparent;
  border-color: #10d7bf;
}
.eds_news_Advantage .btn.btn-outline-primary.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-secondary {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline-secondary:focus, .eds_news_Advantage .btn.btn-outline-secondary.focus, .eds_news_Advantage .btn.btn-outline-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline-secondary:active, .eds_news_Advantage .btn.btn-outline-secondary.active, .open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.2);
  border-color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-secondary:active:hover, .eds_news_Advantage .btn.btn-outline-secondary:active:focus, .eds_news_Advantage .btn.btn-outline-secondary:active.focus, .eds_news_Advantage .btn.btn-outline-secondary.active:hover, .eds_news_Advantage .btn.btn-outline-secondary.active:focus, .eds_news_Advantage .btn.btn-outline-secondary.active.focus, .open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(153, 153, 153, 0.4);
  border-color: rgba(0, 0, 0, 0.87);
}
.open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-secondary.disabled:focus, .eds_news_Advantage .btn.btn-outline-secondary.disabled.focus, .eds_news_Advantage .btn.btn-outline-secondary:disabled:focus, .eds_news_Advantage .btn.btn-outline-secondary:disabled.focus {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline-secondary.disabled:hover, .eds_news_Advantage .btn.btn-outline-secondary:disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.focus {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:disabled.focus {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-secondary.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-secondary:disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.87);
}
.eds_news_Advantage .btn.btn-outline-secondary.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-info {
  color: #00bcd4;
  background-color: transparent;
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-outline-info:hover {
  color: #00bcd4;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-outline-info:focus, .eds_news_Advantage .btn.btn-outline-info.focus, .eds_news_Advantage .btn.btn-outline-info:hover {
  color: #00bcd4;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-outline-info:active, .eds_news_Advantage .btn.btn-outline-info.active, .open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle {
  color: #00bcd4;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #00bcd4;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-info:active:hover, .eds_news_Advantage .btn.btn-outline-info:active:focus, .eds_news_Advantage .btn.btn-outline-info:active.focus, .eds_news_Advantage .btn.btn-outline-info.active:hover, .eds_news_Advantage .btn.btn-outline-info.active:focus, .eds_news_Advantage .btn.btn-outline-info.active.focus, .open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.focus {
  color: #00bcd4;
  background-color: rgba(153, 153, 153, 0.4);
  border-color: #00bcd4;
}
.open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-info.disabled:focus, .eds_news_Advantage .btn.btn-outline-info.disabled.focus, .eds_news_Advantage .btn.btn-outline-info:disabled:focus, .eds_news_Advantage .btn.btn-outline-info:disabled.focus {
  background-color: transparent;
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-outline-info.disabled:hover, .eds_news_Advantage .btn.btn-outline-info:disabled:hover {
  background-color: transparent;
  border-color: #00bcd4;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info {
  color: #00bcd4;
  background-color: transparent;
  border-color: #00bcd4;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info:hover {
  color: #00bcd4;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:hover {
  color: #00bcd4;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle {
  color: #00bcd4;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.focus {
  color: #00bcd4;
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-info.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:disabled.focus {
  background-color: transparent;
  border-color: #00bcd4;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-info.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-info:disabled:hover {
  background-color: transparent;
  border-color: #00bcd4;
}
.eds_news_Advantage .btn.btn-outline-info.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-success {
  color: #4caf50;
  background-color: transparent;
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-outline-success:hover {
  color: #4caf50;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-outline-success:focus, .eds_news_Advantage .btn.btn-outline-success.focus, .eds_news_Advantage .btn.btn-outline-success:hover {
  color: #4caf50;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-outline-success:active, .eds_news_Advantage .btn.btn-outline-success.active, .open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle {
  color: #4caf50;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #4caf50;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-success:active:hover, .eds_news_Advantage .btn.btn-outline-success:active:focus, .eds_news_Advantage .btn.btn-outline-success:active.focus, .eds_news_Advantage .btn.btn-outline-success.active:hover, .eds_news_Advantage .btn.btn-outline-success.active:focus, .eds_news_Advantage .btn.btn-outline-success.active.focus, .open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.focus {
  color: #4caf50;
  background-color: rgba(153, 153, 153, 0.4);
  border-color: #4caf50;
}
.open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-success.disabled:focus, .eds_news_Advantage .btn.btn-outline-success.disabled.focus, .eds_news_Advantage .btn.btn-outline-success:disabled:focus, .eds_news_Advantage .btn.btn-outline-success:disabled.focus {
  background-color: transparent;
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-outline-success.disabled:hover, .eds_news_Advantage .btn.btn-outline-success:disabled:hover {
  background-color: transparent;
  border-color: #4caf50;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success {
  color: #4caf50;
  background-color: transparent;
  border-color: #4caf50;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success:hover {
  color: #4caf50;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:hover {
  color: #4caf50;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle {
  color: #4caf50;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.focus {
  color: #4caf50;
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-success.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:disabled.focus {
  background-color: transparent;
  border-color: #4caf50;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-success.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-success:disabled:hover {
  background-color: transparent;
  border-color: #4caf50;
}
.eds_news_Advantage .btn.btn-outline-success.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-warning {
  color: #ff9800;
  background-color: transparent;
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-outline-warning:hover {
  color: #ff9800;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-outline-warning:focus, .eds_news_Advantage .btn.btn-outline-warning.focus, .eds_news_Advantage .btn.btn-outline-warning:hover {
  color: #ff9800;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-outline-warning:active, .eds_news_Advantage .btn.btn-outline-warning.active, .open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle {
  color: #ff9800;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-warning:active:hover, .eds_news_Advantage .btn.btn-outline-warning:active:focus, .eds_news_Advantage .btn.btn-outline-warning:active.focus, .eds_news_Advantage .btn.btn-outline-warning.active:hover, .eds_news_Advantage .btn.btn-outline-warning.active:focus, .eds_news_Advantage .btn.btn-outline-warning.active.focus, .open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.focus {
  color: #ff9800;
  background-color: rgba(153, 153, 153, 0.4);
  border-color: #ff9800;
}
.open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-warning.disabled:focus, .eds_news_Advantage .btn.btn-outline-warning.disabled.focus, .eds_news_Advantage .btn.btn-outline-warning:disabled:focus, .eds_news_Advantage .btn.btn-outline-warning:disabled.focus {
  background-color: transparent;
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-outline-warning.disabled:hover, .eds_news_Advantage .btn.btn-outline-warning:disabled:hover {
  background-color: transparent;
  border-color: #ff9800;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning {
  color: #ff9800;
  background-color: transparent;
  border-color: #ff9800;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning:hover {
  color: #ff9800;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:hover {
  color: #ff9800;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle {
  color: #ff9800;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.focus {
  color: #ff9800;
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:disabled.focus {
  background-color: transparent;
  border-color: #ff9800;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-warning.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-warning:disabled:hover {
  background-color: transparent;
  border-color: #ff9800;
}
.eds_news_Advantage .btn.btn-outline-warning.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-outline-danger {
  color: #f44336;
  background-color: transparent;
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-outline-danger:hover {
  color: #f44336;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-outline-danger:focus, .eds_news_Advantage .btn.btn-outline-danger.focus, .eds_news_Advantage .btn.btn-outline-danger:hover {
  color: #f44336;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-outline-danger:active, .eds_news_Advantage .btn.btn-outline-danger.active, .open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle, .show > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle {
  color: #f44336;
  background-color: rgba(153, 153, 153, 0.2);
  border-color: #f44336;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn.btn-outline-danger:active:hover, .eds_news_Advantage .btn.btn-outline-danger:active:focus, .eds_news_Advantage .btn.btn-outline-danger:active.focus, .eds_news_Advantage .btn.btn-outline-danger.active:hover, .eds_news_Advantage .btn.btn-outline-danger.active:focus, .eds_news_Advantage .btn.btn-outline-danger.active.focus, .open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:hover, .open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:focus, .open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.focus, .show > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:hover, .show > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:focus, .show > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.focus {
  color: #f44336;
  background-color: rgba(153, 153, 153, 0.4);
  border-color: #f44336;
}
.open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .btn.btn-outline-danger.disabled:focus, .eds_news_Advantage .btn.btn-outline-danger.disabled.focus, .eds_news_Advantage .btn.btn-outline-danger:disabled:focus, .eds_news_Advantage .btn.btn-outline-danger:disabled.focus {
  background-color: transparent;
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-outline-danger.disabled:hover, .eds_news_Advantage .btn.btn-outline-danger:disabled:hover {
  background-color: transparent;
  border-color: #f44336;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger {
  color: #f44336;
  background-color: transparent;
  border-color: #f44336;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger:hover {
  color: #f44336;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:hover {
  color: #f44336;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger:active, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.active, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle {
  color: #f44336;
  background-color: rgba(204, 204, 204, 0.15);
  border-color: rgba(204, 204, 204, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger:active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:active.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.active:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.active:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.active.focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:hover, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:focus, .open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:hover, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle:focus, .show > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.focus {
  color: #f44336;
  background-color: rgba(204, 204, 204, 0.25);
  border-color: rgba(204, 204, 204, 0.25);
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: transparent;
}
.open > .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.dropdown-toggle.bmd-btn-icon:hover {
  background-color: rgba(204, 204, 204, 0.15);
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger.disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger.disabled.focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:disabled:focus, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:disabled.focus {
  background-color: transparent;
  border-color: #f44336;
}
.bg-inverse .eds_news_Advantage .btn.btn-outline-danger.disabled:hover, .bg-inverse .eds_news_Advantage .btn.btn-outline-danger:disabled:hover {
  background-color: transparent;
  border-color: #f44336;
}
.eds_news_Advantage .btn.btn-outline-danger.btn-link {
  background-color: transparent;
}
.eds_news_Advantage .btn.btn-lg, .btn-group-lg .eds_news_Advantage .btn {
  padding: 1.125rem 2.25rem;
  font-size: 0.875rem;
  line-height: 1.3333333;
  border-radius: 0.2rem;
}
.eds_news_Advantage .btn.btn-sm, .btn-group-sm .eds_news_Advantage .btn {
  padding: 0.40625rem 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.eds_news_Advantage .btn.btn-round {
  border-radius: 30px;
}
.eds_news_Advantage .btn.btn-fab, .eds_news_Advantage .btn.btn-just-icon {
  font-size: 24px;
  height: 41px;
  min-width: 41px;
  width: 41px;
  padding: 0;
  overflow: hidden;
  position: relative;
  line-height: 41px;
}
.eds_news_Advantage .btn.btn-fab.btn-round, .eds_news_Advantage .btn.btn-just-icon.btn-round {
  border-radius: 50%;
}
.btn-group-sm .eds_news_Advantage .btn.btn-fab, .eds_news_Advantage .btn.btn-fab.btn-sm, .eds_news_Advantage .btn.btn-fab.btn-fab-mini, .btn-group-sm .eds_news_Advantage .btn.btn-just-icon, .eds_news_Advantage .btn.btn-just-icon.btn-sm, .eds_news_Advantage .btn.btn-just-icon.btn-fab-mini {
  height: 30px;
  min-width: 30px;
  width: 30px;
}
.btn-group-sm .eds_news_Advantage .btn.btn-fab .material-icons,
.btn-group-sm .eds_news_Advantage .btn.btn-fab .fa, .eds_news_Advantage .btn.btn-fab.btn-sm .material-icons,
.eds_news_Advantage .btn.btn-fab.btn-sm .fa, .eds_news_Advantage .btn.btn-fab.btn-fab-mini .material-icons,
.eds_news_Advantage .btn.btn-fab.btn-fab-mini .fa, .btn-group-sm .eds_news_Advantage .btn.btn-just-icon .material-icons,
.btn-group-sm .eds_news_Advantage .btn.btn-just-icon .fa, .eds_news_Advantage .btn.btn-just-icon.btn-sm .material-icons,
.eds_news_Advantage .btn.btn-just-icon.btn-sm .fa, .eds_news_Advantage .btn.btn-just-icon.btn-fab-mini .material-icons,
.eds_news_Advantage .btn.btn-just-icon.btn-fab-mini .fa {
  font-size: 17px;
  line-height: 29px;
}
.btn-group-lg .eds_news_Advantage .btn.btn-fab, .eds_news_Advantage .btn.btn-fab.btn-lg, .btn-group-lg .eds_news_Advantage .btn.btn-just-icon, .eds_news_Advantage .btn.btn-just-icon.btn-lg {
  height: 57px;
  min-width: 57px;
  width: 57px;
  line-height: 56px;
}
.btn-group-lg .eds_news_Advantage .btn.btn-fab .material-icons,
.btn-group-lg .eds_news_Advantage .btn.btn-fab .fa, .eds_news_Advantage .btn.btn-fab.btn-lg .material-icons,
.eds_news_Advantage .btn.btn-fab.btn-lg .fa, .btn-group-lg .eds_news_Advantage .btn.btn-just-icon .material-icons,
.btn-group-lg .eds_news_Advantage .btn.btn-just-icon .fa, .eds_news_Advantage .btn.btn-just-icon.btn-lg .material-icons,
.eds_news_Advantage .btn.btn-just-icon.btn-lg .fa {
  font-size: 32px;
  line-height: 56px;
}
.eds_news_Advantage .btn.btn-fab .material-icons,
.eds_news_Advantage .btn.btn-fab .fa, .eds_news_Advantage .btn.btn-just-icon .material-icons,
.eds_news_Advantage .btn.btn-just-icon .fa {
  margin-top: 0;
  position: absolute;
  width: 100%;
  transform: none;
  left: 0;
  top: 0;
  height: 100%;
  line-height: 41px;
  font-size: 20px;
}
.eds_news_Advantage .btn-just-icon.btn-lg {
  font-size: 24px;
  height: 41px;
  min-width: 41px;
  width: 41px;
}
.eds_news_Advantage .input-group-btn > .btn {
  border: 0;
}
.eds_news_Advantage .btn .material-icons,
.eds_news_Advantage .btn:not(.btn-just-icon):not(.btn-fab) .fa {
  position: relative;
  display: inline-block;
  top: 0;
  margin-top: -1em;
  margin-bottom: -1em;
  font-size: 1.1rem;
  vertical-align: middle;
}
.bg-inverse fieldset[disabled][disabled] .eds_news_Advantage .btn, .bg-inverse .eds_news_Advantage .btn.disabled, .bg-inverse .eds_news_Advantage .btn:disabled, .bg-inverse .eds_news_Advantage .btn[disabled],
.bg-inverse fieldset[disabled][disabled] .eds_news_Advantage .input-group-btn .btn,
.bg-inverse .eds_news_Advantage .input-group-btn .btn.disabled,
.bg-inverse .eds_news_Advantage .input-group-btn .btn:disabled,
.bg-inverse .eds_news_Advantage .input-group-btn .btn[disabled],
.bg-inverse fieldset[disabled][disabled] .eds_news_Advantage .btn-group,
.bg-inverse .eds_news_Advantage .btn-group.disabled,
.bg-inverse .eds_news_Advantage .btn-group:disabled,
.bg-inverse .eds_news_Advantage .btn-group[disabled],
.bg-inverse fieldset[disabled][disabled] .eds_news_Advantage .btn-group-vertical,
.bg-inverse .eds_news_Advantage .btn-group-vertical.disabled,
.bg-inverse .eds_news_Advantage .btn-group-vertical:disabled,
.bg-inverse .eds_news_Advantage .btn-group-vertical[disabled] {
  color: rgba(255, 255, 255, 0.3);
}
.eds_news_Advantage .btn-group,
.eds_news_Advantage .btn-group-vertical {
  position: relative;
  margin: 10px 1px;
}
.eds_news_Advantage .btn-group .dropdown-menu,
.eds_news_Advantage .btn-group-vertical .dropdown-menu {
  border-radius: 0 0 0.25rem 0.25rem;
}
.eds_news_Advantage .btn-group.btn-group-raised,
.eds_news_Advantage .btn-group-vertical.btn-group-raised {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .btn-group .btn + .btn,
.eds_news_Advantage .btn-group .btn,
.eds_news_Advantage .btn-group .btn:active,
.eds_news_Advantage .btn-group .btn-group,
.eds_news_Advantage .btn-group-vertical .btn + .btn,
.eds_news_Advantage .btn-group-vertical .btn,
.eds_news_Advantage .btn-group-vertical .btn:active,
.eds_news_Advantage .btn-group-vertical .btn-group {
  margin: 0;
}
.eds_news_Advantage .btn-group > .btn-group,
.eds_news_Advantage .btn-group-vertical > .btn-group {
  margin: 0;
}

.eds_news_Advantage a:not(.btn):link, .eds_news_Advantage a:not(.btn):active, .eds_news_Advantage a:not(.btn):visited {
  color: #10d7bf;
}
.eds_news_Advantage a:not(.btn):hover, .eds_news_Advantage a:not(.btn):focus {
  color: #0ebfaa;
  text-decoration: none;
}
.eds_news_Advantage a.text-info:hover, .eds_news_Advantage a.text-info:focus {
  color: #00a5bb;
}
.eds_news_Advantage a .material-icons {
  vertical-align: middle;
}

/*form {
  // ensure enough room at the bottom of any form to display a one-line bmd-help
  margin-bottom: ($bmd-help-size-ratio * $font-size-base) * $line-height-base;

  .card &{
      margin: 0;
  }
  // reverse the above for navbars (no help expected in a navbar form)
  .navbar & {
    margin-bottom: 0; // only adjust bottom so that pull-xs-right flexed margin-left: auto works

    .bmd-form-group {
      display: inline-block;
      padding-top: 0;
    }

    .btn {
      margin-bottom: 0;
    }
  }
}
*/
.eds_news_Advantage .form-control {
  background: no-repeat center bottom, center calc(100% - 1px);
  background-size: 0 100%, 100% 100%;
  border: 0;
  height: 36px;
  transition: background 0s ease-out;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  font-size: 14px;
}
.eds_news_Advantage .form-control:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control {
  background-size: 100% 100%, 100% 100%;
  transition-duration: 0.3s;
  box-shadow: none;
}
.eds_news_Advantage .form-control::-moz-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 14px;
}
.eds_news_Advantage .form-control:-ms-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 14px;
}
.eds_news_Advantage .form-control::-webkit-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  font-size: 14px;
}
.has-white .eds_news_Advantage .form-control::-moz-placeholder {
  color: #fff;
}
.has-white .eds_news_Advantage .form-control:-ms-input-placeholder {
  color: #fff;
}
.has-white .eds_news_Advantage .form-control::-webkit-input-placeholder {
  color: #fff;
}
.eds_news_Advantage .bmd-help {
  position: absolute;
  display: none;
  font-size: 0.8rem;
  font-weight: normal;
}
.bmd-form-group.is-focused .eds_news_Advantage .bmd-help {
  display: block;
}
.eds_news_Advantage .bmd-help:nth-of-type(2) {
  padding-top: 1rem;
}
.eds_news_Advantage .bmd-help + .bmd-help {
  position: relative;
  margin-bottom: 0;
}
.eds_news_Advantage .radio label, .is-focused .eds_news_Advantage .radio label,
.eds_news_Advantage .radio-inline,
.is-focused .eds_news_Advantage .radio-inline,
.eds_news_Advantage .checkbox label,
.is-focused .eds_news_Advantage .checkbox label,
.eds_news_Advantage .checkbox-inline,
.is-focused .eds_news_Advantage .checkbox-inline,
.eds_news_Advantage .switch label,
.is-focused .eds_news_Advantage .switch label {
  color: #999999;
}
.eds_news_Advantage .radio label label:has(input[type=radio][disabled]), .eds_news_Advantage .radio label label:has(input[type=radio][disabled]):hover, .eds_news_Advantage .radio label label:has(input[type=radio][disabled]):focus,
.eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]),
.eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]):hover,
.eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]):focus, fieldset[disabled] .eds_news_Advantage .radio label, fieldset[disabled] .eds_news_Advantage .radio label:hover, fieldset[disabled] .eds_news_Advantage .radio label:focus, .is-focused .eds_news_Advantage .radio label label:has(input[type=radio][disabled]), .is-focused .eds_news_Advantage .radio label label:has(input[type=radio][disabled]):hover, .is-focused .eds_news_Advantage .radio label label:has(input[type=radio][disabled]):focus,
.is-focused .eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]),
.is-focused .eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]):hover,
.is-focused .eds_news_Advantage .radio label label:has(input[type=checkbox][disabled]):focus, fieldset[disabled] .is-focused .eds_news_Advantage .radio label, fieldset[disabled] .is-focused .eds_news_Advantage .radio label:hover, fieldset[disabled] .is-focused .eds_news_Advantage .radio label:focus,
.eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]),
.eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]):hover,
.eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]):focus,
.eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]),
.eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]):hover,
.eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .eds_news_Advantage .radio-inline,
fieldset[disabled] .eds_news_Advantage .radio-inline:hover,
fieldset[disabled] .eds_news_Advantage .radio-inline:focus,
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]),
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]):hover,
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=radio][disabled]):focus,
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]),
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]):hover,
.is-focused .eds_news_Advantage .radio-inline label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .is-focused .eds_news_Advantage .radio-inline,
fieldset[disabled] .is-focused .eds_news_Advantage .radio-inline:hover,
fieldset[disabled] .is-focused .eds_news_Advantage .radio-inline:focus,
.eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]),
.eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]):hover,
.eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]):focus,
.eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]),
.eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]):hover,
.eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .eds_news_Advantage .checkbox label,
fieldset[disabled] .eds_news_Advantage .checkbox label:hover,
fieldset[disabled] .eds_news_Advantage .checkbox label:focus,
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]),
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]):hover,
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=radio][disabled]):focus,
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]),
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]):hover,
.is-focused .eds_news_Advantage .checkbox label label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox label,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox label:hover,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox label:focus,
.eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]),
.eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]):hover,
.eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]):focus,
.eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]),
.eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]):hover,
.eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .eds_news_Advantage .checkbox-inline,
fieldset[disabled] .eds_news_Advantage .checkbox-inline:hover,
fieldset[disabled] .eds_news_Advantage .checkbox-inline:focus,
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]),
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]):hover,
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=radio][disabled]):focus,
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]),
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]):hover,
.is-focused .eds_news_Advantage .checkbox-inline label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox-inline,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox-inline:hover,
fieldset[disabled] .is-focused .eds_news_Advantage .checkbox-inline:focus,
.eds_news_Advantage .switch label label:has(input[type=radio][disabled]),
.eds_news_Advantage .switch label label:has(input[type=radio][disabled]):hover,
.eds_news_Advantage .switch label label:has(input[type=radio][disabled]):focus,
.eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]),
.eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]):hover,
.eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .eds_news_Advantage .switch label,
fieldset[disabled] .eds_news_Advantage .switch label:hover,
fieldset[disabled] .eds_news_Advantage .switch label:focus,
.is-focused .eds_news_Advantage .switch label label:has(input[type=radio][disabled]),
.is-focused .eds_news_Advantage .switch label label:has(input[type=radio][disabled]):hover,
.is-focused .eds_news_Advantage .switch label label:has(input[type=radio][disabled]):focus,
.is-focused .eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]),
.is-focused .eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]):hover,
.is-focused .eds_news_Advantage .switch label label:has(input[type=checkbox][disabled]):focus,
fieldset[disabled] .is-focused .eds_news_Advantage .switch label,
fieldset[disabled] .is-focused .eds_news_Advantage .switch label:hover,
fieldset[disabled] .is-focused .eds_news_Advantage .switch label:focus {
  color: #999999;
}
.eds_news_Advantage [class^=bmd-label],
.eds_news_Advantage [class*=" bmd-label"] {
  color: #999999;
}
.eds_news_Advantage .form-control, .is-focused .eds_news_Advantage .form-control {
  background-image: linear-gradient(to top, #10d7bf 2px, rgba(16, 215, 191, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .form-control, .eds_news_Advantage .form-control.disabled, .eds_news_Advantage .form-control:disabled, .eds_news_Advantage .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .form-control.form-control-success, .is-focused .eds_news_Advantage .form-control.form-control-success {
  background-image: linear-gradient(to top, #10d7bf 2px, rgba(16, 215, 191, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .form-control.form-control-warning, .is-focused .eds_news_Advantage .form-control.form-control-warning {
  background-image: linear-gradient(to top, #10d7bf 2px, rgba(16, 215, 191, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .form-control.form-control-danger, .is-focused .eds_news_Advantage .form-control.form-control-danger {
  background-image: linear-gradient(to top, #10d7bf 2px, rgba(16, 215, 191, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #999999;
}
.eds_news_Advantage .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(153, 153, 153, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .is-focused .form-control:valid, .eds_news_Advantage .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .is-focused .custom-select:valid,
.eds_news_Advantage .is-focused .custom-select.is-valid {
  border-color: #999999;
}
.was-validated .eds_news_Advantage .is-focused .form-control:valid:focus, .eds_news_Advantage .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .is-focused .custom-select:valid:focus,
.eds_news_Advantage .is-focused .custom-select.is-valid:focus {
  border-color: #999999;
  box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.25);
}
.was-validated .eds_news_Advantage .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #999999;
}
.was-validated .eds_news_Advantage .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #999999;
}
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #d9d9d9;
}
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #b3b3b3;
}
.was-validated .eds_news_Advantage .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(153, 153, 153, 0.25);
}
.was-validated .eds_news_Advantage .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #999999;
}
.was-validated .eds_news_Advantage .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.25);
}
.eds_news_Advantage .is-focused [class^=bmd-label],
.eds_news_Advantage .is-focused [class*=" bmd-label"] {
  color: #10d7bf;
}
.eds_news_Advantage .is-focused .bmd-label-placeholder {
  color: #999999;
}
.eds_news_Advantage .is-focused .form-control {
  border-color: #d2d2d2;
}
.eds_news_Advantage .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-success [class^=bmd-label],
.eds_news_Advantage .has-success [class*=" bmd-label"] {
  color: #4caf50;
}
.eds_news_Advantage .has-success .form-control, .is-focused .eds_news_Advantage .has-success .form-control {
  background-image: linear-gradient(to top, #4caf50 2px, rgba(76, 175, 80, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-success .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-success .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-success .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-success .form-control, .eds_news_Advantage .has-success .form-control.disabled, .eds_news_Advantage .has-success .form-control:disabled, .eds_news_Advantage .has-success .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-success .form-control.form-control-success, .is-focused .eds_news_Advantage .has-success .form-control.form-control-success {
  background-image: linear-gradient(to top, #4caf50 2px, rgba(76, 175, 80, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-success .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-success .form-control.form-control-warning {
  background-image: linear-gradient(to top, #4caf50 2px, rgba(76, 175, 80, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-success .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-success .form-control.form-control-danger {
  background-image: linear-gradient(to top, #4caf50 2px, rgba(76, 175, 80, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-success .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #4caf50;
}
.eds_news_Advantage .has-success .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(76, 175, 80, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-success .is-focused .form-control:valid, .eds_news_Advantage .has-success .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-select:valid,
.eds_news_Advantage .has-success .is-focused .custom-select.is-valid {
  border-color: #4caf50;
}
.was-validated .eds_news_Advantage .has-success .is-focused .form-control:valid:focus, .eds_news_Advantage .has-success .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-success .is-focused .custom-select.is-valid:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.was-validated .eds_news_Advantage .has-success .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-success .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-success .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-success .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-success .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-success .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-success .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-success .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #4caf50;
}
.was-validated .eds_news_Advantage .has-success .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-success .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-success .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-success .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #4caf50;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #a3d7a5;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #6ec071;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-success .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-success .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #4caf50;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-success .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-success .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-success .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-success .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-success .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-success .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.eds_news_Advantage .has-success .is-focused [class^=bmd-label],
.eds_news_Advantage .has-success .is-focused [class*=" bmd-label"] {
  color: #4caf50;
}
.eds_news_Advantage .has-success .is-focused .bmd-label-placeholder {
  color: #4caf50;
}
.eds_news_Advantage .has-success .is-focused .form-control {
  border-color: #4caf50;
}
.eds_news_Advantage .has-success .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-info [class^=bmd-label],
.eds_news_Advantage .has-info [class*=" bmd-label"] {
  color: #00bcd4;
}
.eds_news_Advantage .has-info .form-control, .is-focused .eds_news_Advantage .has-info .form-control {
  background-image: linear-gradient(to top, #00bcd4 2px, rgba(0, 188, 212, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-info .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-info .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-info .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-info .form-control, .eds_news_Advantage .has-info .form-control.disabled, .eds_news_Advantage .has-info .form-control:disabled, .eds_news_Advantage .has-info .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-info .form-control.form-control-success, .is-focused .eds_news_Advantage .has-info .form-control.form-control-success {
  background-image: linear-gradient(to top, #00bcd4 2px, rgba(0, 188, 212, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-info .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-info .form-control.form-control-warning {
  background-image: linear-gradient(to top, #00bcd4 2px, rgba(0, 188, 212, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-info .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-info .form-control.form-control-danger {
  background-image: linear-gradient(to top, #00bcd4 2px, rgba(0, 188, 212, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-info .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #00bcd4;
}
.eds_news_Advantage .has-info .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(0, 188, 212, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-info .is-focused .form-control:valid, .eds_news_Advantage .has-info .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-select:valid,
.eds_news_Advantage .has-info .is-focused .custom-select.is-valid {
  border-color: #00bcd4;
}
.was-validated .eds_news_Advantage .has-info .is-focused .form-control:valid:focus, .eds_news_Advantage .has-info .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-info .is-focused .custom-select.is-valid:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
}
.was-validated .eds_news_Advantage .has-info .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-info .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-info .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-info .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-info .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-info .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-info .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-info .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #00bcd4;
}
.was-validated .eds_news_Advantage .has-info .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-info .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-info .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-info .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #00bcd4;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #55ecff;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #08e3ff;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-info .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-info .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #00bcd4;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-info .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-info .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-info .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-info .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-info .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-info .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
}
.eds_news_Advantage .has-info .is-focused [class^=bmd-label],
.eds_news_Advantage .has-info .is-focused [class*=" bmd-label"] {
  color: #00bcd4;
}
.eds_news_Advantage .has-info .is-focused .bmd-label-placeholder {
  color: #00bcd4;
}
.eds_news_Advantage .has-info .is-focused .form-control {
  border-color: #00bcd4;
}
.eds_news_Advantage .has-info .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-white [class^=bmd-label],
.eds_news_Advantage .has-white [class*=" bmd-label"] {
  color: #fff;
}
.eds_news_Advantage .has-white .form-control, .is-focused .eds_news_Advantage .has-white .form-control {
  background-image: linear-gradient(to top, #fff 2px, rgba(255, 255, 255, 0) 2px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px);
}
.eds_news_Advantage .has-white .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px);
}
.eds_news_Advantage .has-white .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px);
}
.eds_news_Advantage .has-white .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-white .form-control, .eds_news_Advantage .has-white .form-control.disabled, .eds_news_Advantage .has-white .form-control:disabled, .eds_news_Advantage .has-white .form-control[disabled] {
  background-image: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-white .form-control.form-control-success, .is-focused .eds_news_Advantage .has-white .form-control.form-control-success {
  background-image: linear-gradient(to top, #fff 2px, rgba(255, 255, 255, 0) 2px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-white .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-white .form-control.form-control-warning {
  background-image: linear-gradient(to top, #fff 2px, rgba(255, 255, 255, 0) 2px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-white .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-white .form-control.form-control-danger {
  background-image: linear-gradient(to top, #fff 2px, rgba(255, 255, 255, 0) 2px), linear-gradient(to top, #FFFFFF 1px, rgba(255, 255, 255, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-white .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #fff;
}
.eds_news_Advantage .has-white .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-white .is-focused .form-control:valid, .eds_news_Advantage .has-white .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-select:valid,
.eds_news_Advantage .has-white .is-focused .custom-select.is-valid {
  border-color: #fff;
}
.was-validated .eds_news_Advantage .has-white .is-focused .form-control:valid:focus, .eds_news_Advantage .has-white .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-white .is-focused .custom-select.is-valid:focus {
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.was-validated .eds_news_Advantage .has-white .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-white .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-white .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-white .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-white .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-white .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-white .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-white .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #fff;
}
.was-validated .eds_news_Advantage .has-white .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-white .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-white .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-white .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #fff;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: white;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: white;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-white .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-white .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #fff;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-white .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-white .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-white .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-white .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-white .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-white .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.eds_news_Advantage .has-white .is-focused [class^=bmd-label],
.eds_news_Advantage .has-white .is-focused [class*=" bmd-label"] {
  color: #fff;
}
.eds_news_Advantage .has-white .is-focused .bmd-label-placeholder {
  color: #fff;
}
.eds_news_Advantage .has-white .is-focused .form-control {
  border-color: #fff;
}
.eds_news_Advantage .has-white .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-white .form-control:focus {
  color: #fff;
}
.eds_news_Advantage .has-warning [class^=bmd-label],
.eds_news_Advantage .has-warning [class*=" bmd-label"] {
  color: #ff9800;
}
.eds_news_Advantage .has-warning .form-control, .is-focused .eds_news_Advantage .has-warning .form-control {
  background-image: linear-gradient(to top, #ff9800 2px, rgba(255, 152, 0, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-warning .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-warning .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-warning .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-warning .form-control, .eds_news_Advantage .has-warning .form-control.disabled, .eds_news_Advantage .has-warning .form-control:disabled, .eds_news_Advantage .has-warning .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-warning .form-control.form-control-success, .is-focused .eds_news_Advantage .has-warning .form-control.form-control-success {
  background-image: linear-gradient(to top, #ff9800 2px, rgba(255, 152, 0, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-warning .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-warning .form-control.form-control-warning {
  background-image: linear-gradient(to top, #ff9800 2px, rgba(255, 152, 0, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-warning .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-warning .form-control.form-control-danger {
  background-image: linear-gradient(to top, #ff9800 2px, rgba(255, 152, 0, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-warning .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ff9800;
}
.eds_news_Advantage .has-warning .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(255, 152, 0, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .form-control:valid, .eds_news_Advantage .has-warning .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-select:valid,
.eds_news_Advantage .has-warning .is-focused .custom-select.is-valid {
  border-color: #ff9800;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .form-control:valid:focus, .eds_news_Advantage .has-warning .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-warning .is-focused .custom-select.is-valid:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}
.was-validated .eds_news_Advantage .has-warning .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-warning .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-warning .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-warning .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-warning .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-warning .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-warning .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #ff9800;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-warning .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-warning .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-warning .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #ff9800;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #ffcc80;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #ffad33;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-warning .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-warning .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #ff9800;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-warning .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-warning .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-warning .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-warning .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-warning .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}
.eds_news_Advantage .has-warning .is-focused [class^=bmd-label],
.eds_news_Advantage .has-warning .is-focused [class*=" bmd-label"] {
  color: #ff9800;
}
.eds_news_Advantage .has-warning .is-focused .bmd-label-placeholder {
  color: #ff9800;
}
.eds_news_Advantage .has-warning .is-focused .form-control {
  border-color: #ff9800;
}
.eds_news_Advantage .has-warning .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-danger [class^=bmd-label],
.eds_news_Advantage .has-danger [class*=" bmd-label"] {
  color: #f44336;
}
.eds_news_Advantage .has-danger .form-control, .is-focused .eds_news_Advantage .has-danger .form-control {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-danger .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-danger .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-danger .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-danger .form-control, .eds_news_Advantage .has-danger .form-control.disabled, .eds_news_Advantage .has-danger .form-control:disabled, .eds_news_Advantage .has-danger .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-danger .form-control.form-control-success, .is-focused .eds_news_Advantage .has-danger .form-control.form-control-success {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-danger .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-danger .form-control.form-control-warning {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-danger .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-danger .form-control.form-control-danger {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-danger .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #f44336;
}
.eds_news_Advantage .has-danger .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(244, 67, 54, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .form-control:valid, .eds_news_Advantage .has-danger .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-select:valid,
.eds_news_Advantage .has-danger .is-focused .custom-select.is-valid {
  border-color: #f44336;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .form-control:valid:focus, .eds_news_Advantage .has-danger .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-danger .is-focused .custom-select.is-valid:focus {
  border-color: #f44336;
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.was-validated .eds_news_Advantage .has-danger .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-danger .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-danger .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-danger .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-danger .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-danger .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-danger .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #f44336;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-danger .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-danger .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-danger .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #f44336;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #fbb4af;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #f77066;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-danger .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-danger .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #f44336;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-danger .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-danger .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-danger .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-danger .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-danger .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}
.eds_news_Advantage .has-danger .is-focused [class^=bmd-label],
.eds_news_Advantage .has-danger .is-focused [class*=" bmd-label"] {
  color: #f44336;
}
.eds_news_Advantage .has-danger .is-focused .bmd-label-placeholder {
  color: #f44336;
}
.eds_news_Advantage .has-danger .is-focused .form-control {
  border-color: #f44336;
}
.eds_news_Advantage .has-danger .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .has-rose [class^=bmd-label],
.eds_news_Advantage .has-rose [class*=" bmd-label"] {
  color: #e91e63;
}
.eds_news_Advantage .has-rose .form-control, .is-focused .eds_news_Advantage .has-rose .form-control {
  background-image: linear-gradient(to top, #e91e63 2px, rgba(233, 30, 99, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-rose .form-control:invalid {
  background-image: linear-gradient(to top, #f44336 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-rose .form-control:-moz-read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
.eds_news_Advantage .has-rose .form-control:read-only {
  background-image: linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}
fieldset[disabled][disabled] .eds_news_Advantage .has-rose .form-control, .eds_news_Advantage .has-rose .form-control.disabled, .eds_news_Advantage .has-rose .form-control:disabled, .eds_news_Advantage .has-rose .form-control[disabled] {
  background-image: linear-gradient(to right, #d2d2d2 0%, #d2d2d2 30%, transparent 30%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.eds_news_Advantage .has-rose .form-control.form-control-success, .is-focused .eds_news_Advantage .has-rose .form-control.form-control-success {
  background-image: linear-gradient(to top, #e91e63 2px, rgba(233, 30, 99, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
}
.eds_news_Advantage .has-rose .form-control.form-control-warning, .is-focused .eds_news_Advantage .has-rose .form-control.form-control-warning {
  background-image: linear-gradient(to top, #e91e63 2px, rgba(233, 30, 99, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
}
.eds_news_Advantage .has-rose .form-control.form-control-danger, .is-focused .eds_news_Advantage .has-rose .form-control.form-control-danger {
  background-image: linear-gradient(to top, #e91e63 2px, rgba(233, 30, 99, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px), "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
}
.eds_news_Advantage .has-rose .is-focused .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e91e63;
}
.eds_news_Advantage .has-rose .is-focused .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(233, 30, 99, 0.8);
  border-radius: 0.2rem;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .form-control:valid, .eds_news_Advantage .has-rose .is-focused .form-control.is-valid,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-select:valid,
.eds_news_Advantage .has-rose .is-focused .custom-select.is-valid {
  border-color: #e91e63;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .form-control:valid:focus, .eds_news_Advantage .has-rose .is-focused .form-control.is-valid:focus,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-select:valid:focus,
.eds_news_Advantage .has-rose .is-focused .custom-select.is-valid:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}
.was-validated .eds_news_Advantage .has-rose .is-focused .form-control:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-rose .is-focused .form-control:valid ~ .valid-tooltip, .eds_news_Advantage .has-rose .is-focused .form-control.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-rose .is-focused .form-control.is-valid ~ .valid-tooltip,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-select:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-select:valid ~ .valid-tooltip,
.eds_news_Advantage .has-rose .is-focused .custom-select.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-rose .is-focused .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .form-check-input:valid ~ .form-check-label, .eds_news_Advantage .has-rose .is-focused .form-check-input.is-valid ~ .form-check-label {
  color: #e91e63;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .form-check-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-rose .is-focused .form-check-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-rose .is-focused .form-check-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-rose .is-focused .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid ~ .custom-control-label, .eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid ~ .custom-control-label {
  color: #e91e63;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid ~ .custom-control-label::before, .eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #f492b4;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid:checked ~ .custom-control-label::before, .eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #ee4c83;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-control-input:valid:focus ~ .custom-control-label::before, .eds_news_Advantage .has-rose .is-focused .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fafafa, 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-file-input:valid ~ .custom-file-label, .eds_news_Advantage .has-rose .is-focused .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #e91e63;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-file-input:valid ~ .custom-file-label::before, .eds_news_Advantage .has-rose .is-focused .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-file-input:valid ~ .valid-feedback,
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-file-input:valid ~ .valid-tooltip, .eds_news_Advantage .has-rose .is-focused .custom-file-input.is-valid ~ .valid-feedback,
.eds_news_Advantage .has-rose .is-focused .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .eds_news_Advantage .has-rose .is-focused .custom-file-input:valid:focus ~ .custom-file-label, .eds_news_Advantage .has-rose .is-focused .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}
.eds_news_Advantage .has-rose .is-focused [class^=bmd-label],
.eds_news_Advantage .has-rose .is-focused [class*=" bmd-label"] {
  color: #e91e63;
}
.eds_news_Advantage .has-rose .is-focused .bmd-label-placeholder {
  color: #e91e63;
}
.eds_news_Advantage .has-rose .is-focused .form-control {
  border-color: #e91e63;
}
.eds_news_Advantage .has-rose .is-focused .bmd-help {
  color: #808080;
}
.eds_news_Advantage .bmd-form-group {
  position: relative;
  padding-top: 27px;
}
.eds_news_Advantage .bmd-form-group:not(.has-success):not(.has-danger) [class^=bmd-label].bmd-label-floating,
.eds_news_Advantage .bmd-form-group:not(.has-success):not(.has-danger) [class*=" bmd-label"].bmd-label-floating {
  color: #AAAAAA;
}
.eds_news_Advantage .bmd-form-group [class^=bmd-label],
.eds_news_Advantage .bmd-form-group [class*=" bmd-label"] {
  position: absolute;
  pointer-events: none;
  transition: 0.3s ease all;
}
.eds_news_Advantage .bmd-form-group [class^=bmd-label].bmd-label-floating,
.eds_news_Advantage .bmd-form-group [class*=" bmd-label"].bmd-label-floating {
  will-change: left, top, contents;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}
.eds_news_Advantage .bmd-form-group.is-filled .bmd-label-placeholder {
  display: none;
}
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline {
  display: flex;
  align-items: center;
  padding: 0;
  min-height: 2.1em;
}
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .collapse {
  flex: 1;
  display: none;
}
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .collapse.show {
  max-width: 1200px;
}
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .collapsing,
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .width:not(.collapse),
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .collapse.show {
  display: block;
}
.eds_news_Advantage .bmd-form-group.bmd-collapse-inline .collapsing {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.eds_news_Advantage .bmd-form-group input::-moz-placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group .form-control,
.eds_news_Advantage .bmd-form-group label,
.eds_news_Advantage .bmd-form-group input::placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group label {
  color: #AAAAAA;
}
.eds_news_Advantage .bmd-form-group .radio label,
.eds_news_Advantage .bmd-form-group label.radio-inline,
.eds_news_Advantage .bmd-form-group .checkbox label,
.eds_news_Advantage .bmd-form-group label.checkbox-inline,
.eds_news_Advantage .bmd-form-group .switch label {
  line-height: 1.5;
}
.eds_news_Advantage .bmd-form-group .checkbox label,
.eds_news_Advantage .bmd-form-group .radio label,
.eds_news_Advantage .bmd-form-group label {
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group .bmd-label-floating,
.eds_news_Advantage .bmd-form-group .bmd-label-placeholder {
  top: 2.3125rem;
}
.eds_news_Advantage .bmd-form-group input[type=text] + .bmd-label-floating {
  top: 58%;
}
.eds_news_Advantage .bmd-form-group .is-focused .bmd-label-floating,
.eds_news_Advantage .bmd-form-group .is-filled .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group .form-control:focus + .bmd-label-floating,
.eds_news_Advantage .bmd-form-group .form-control:valid + .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group .bmd-label-static {
  top: 0.35rem;
  left: 0;
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group .bmd-help {
  margin-top: 0;
  font-size: 0.75rem;
}
.eds_news_Advantage .bmd-form-group .form-control.form-control-success, .eds_news_Advantage .bmd-form-group .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group .form-control.form-control-danger {
  background-size: 0 100%, 100% 100%, 0.9375rem 0.9375rem;
}
.eds_news_Advantage .bmd-form-group .form-control.form-control-success, .eds_news_Advantage .bmd-form-group .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-success, .eds_news_Advantage .bmd-form-group .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group .form-control.form-control-danger, .eds_news_Advantage .bmd-form-group .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-danger {
  padding-right: 0;
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center calc(100% - 1px), center right 0.46875rem;
}
.eds_news_Advantage .bmd-form-group .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-success, .eds_news_Advantage .bmd-form-group .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group .form-control.form-control-danger {
  background-size: 100% 100%, 100% 100%, 0.9375rem 0.9375rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm input::-moz-placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm input::placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm label {
  color: #AAAAAA;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .radio label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm label.radio-inline,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .checkbox label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm label.checkbox-inline,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .switch label {
  line-height: 1.5;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .checkbox label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .radio label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm label {
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .bmd-label-placeholder {
  top: 1.875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm input[type=text] + .bmd-label-floating {
  top: 58%;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .is-focused .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .is-filled .bmd-label-floating {
  top: 0.75rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control:focus + .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control:valid + .bmd-label-floating {
  top: 0.75rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .bmd-label-static {
  top: 0.1rem;
  left: 0;
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .bmd-help {
  margin-top: 0;
  font-size: 0.65625rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger {
  background-size: 0 100%, 100% 100%, 0.6875rem 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger {
  padding-right: 0;
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center calc(100% - 1px), center right 0.34375rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-sm .form-control.form-control-danger {
  background-size: 100% 100%, 100% 100%, 0.6875rem 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg input::-moz-placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg input::placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg label {
  color: #AAAAAA;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .radio label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg label.radio-inline,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .checkbox label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg label.checkbox-inline,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .switch label {
  line-height: 1.5;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .checkbox label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .radio label,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg label {
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .bmd-label-placeholder {
  top: 2.4375rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg input[type=text] + .bmd-label-floating {
  top: 58%;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .is-focused .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .is-filled .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control:focus + .bmd-label-floating,
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control:valid + .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .bmd-label-static {
  top: 0.35rem;
  left: 0;
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .bmd-help {
  margin-top: 0;
  font-size: 0.9375rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger {
  background-size: 0 100%, 100% 100%, 1.1875rem 1.1875rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger {
  padding-right: 0;
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center calc(100% - 1px), center right 0.59375rem;
}
.eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-success, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-warning, .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .bmd-form-group.bmd-form-group-lg .form-control.form-control-danger {
  background-size: 100% 100%, 100% 100%, 1.1875rem 1.1875rem;
}
.eds_news_Advantage input::-moz-placeholder {
  line-height: 1.1;
}
.eds_news_Advantage .form-control,
.eds_news_Advantage label,
.eds_news_Advantage input::placeholder {
  line-height: 1.1;
}
.eds_news_Advantage label {
  color: #AAAAAA;
}
.eds_news_Advantage .radio label,
.eds_news_Advantage label.radio-inline,
.eds_news_Advantage .checkbox label,
.eds_news_Advantage label.checkbox-inline,
.eds_news_Advantage .switch label {
  line-height: 1.5;
}
.eds_news_Advantage .checkbox label,
.eds_news_Advantage .radio label,
.eds_news_Advantage label {
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-label-floating,
.eds_news_Advantage .bmd-label-placeholder {
  top: 2.3125rem;
}
.eds_news_Advantage input[type=text] + .bmd-label-floating {
  top: 58%;
}
.eds_news_Advantage .is-focused .bmd-label-floating,
.eds_news_Advantage .is-filled .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .form-control:focus + .bmd-label-floating,
.eds_news_Advantage .form-control:valid + .bmd-label-floating {
  top: 1rem;
  left: 0;
  font-size: 0.6875rem;
}
.eds_news_Advantage .bmd-label-static {
  top: 0.35rem;
  left: 0;
  font-size: 0.875rem;
}
.eds_news_Advantage .bmd-help {
  margin-top: 0;
  font-size: 0.75rem;
}
.eds_news_Advantage .form-control.form-control-success, .eds_news_Advantage .form-control.form-control-warning, .eds_news_Advantage .form-control.form-control-danger {
  background-size: 0 100%, 100% 100%, 0.9375rem 0.9375rem;
}
.eds_news_Advantage .form-control.form-control-success, .eds_news_Advantage .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-success, .eds_news_Advantage .form-control.form-control-warning, .eds_news_Advantage .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-warning, .eds_news_Advantage .form-control.form-control-danger, .eds_news_Advantage .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-danger {
  padding-right: 0;
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center calc(100% - 1px), center right 0.46875rem;
}
.eds_news_Advantage .form-control.form-control-success:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-success, .eds_news_Advantage .form-control.form-control-warning:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-warning, .eds_news_Advantage .form-control.form-control-danger:focus, .bmd-form-group.is-focused .eds_news_Advantage .form-control.form-control-danger {
  background-size: 100% 100%, 100% 100%, 0.9375rem 0.9375rem;
}
.eds_news_Advantage select, .eds_news_Advantage select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
}
@media (min-width: 576px) {
  .eds_news_Advantage .form-inline .input-group {
    display: inline-flex;
    align-items: center;
  }
}
.eds_news_Advantage .form-control-feedback {
  position: absolute;
  top: 33px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}
.has-success .eds_news_Advantage .form-control-feedback {
  color: #64ce66;
  opacity: 1;
}
.has-danger .eds_news_Advantage .form-control-feedback {
  color: #fc4c3b;
  opacity: 1;
}
.eds_news_Advantage .form-group {
  margin-bottom: 17px;
  position: relative;
}
.eds_news_Advantage textarea {
  height: auto !important;
  resize: none;
  line-height: 1.42857143 !important;
}
.eds_news_Advantage .form-group input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.eds_news_Advantage .form-newsletter .input-group,
.eds_news_Advantage .form-newsletter .form-group {
  float: left;
  width: 78%;
  margin-right: 2%;
  margin-top: 9px;
  padding-top: 5px;
}
.eds_news_Advantage .form-newsletter .btn {
  float: left;
  width: 20%;
  margin: 9px 0 0;
}
.eds_news_Advantage .form-file-upload .input-group-btn:last-child > .btn-round {
  border-radius: 30px;
}
.eds_news_Advantage .form-file-upload .input-group-btn .btn {
  margin: 0;
}
.eds_news_Advantage .form-file-upload .input-group {
  width: 100%;
}
.eds_news_Advantage .input-group .input-group-btn {
  padding: 0 12px;
}

.eds_news_Advantage .page-header {
  height: 60vh;
  background-position: center center;
  background-size: cover;
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
}
.eds_news_Advantage .page-header .page-header-image {
  position: absolute;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.eds_news_Advantage .page-header .content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 0 15px;
  width: 100%;
  max-width: 880px;
}
.eds_news_Advantage .page-header .carousel .carousel-indicators {
  bottom: 60px;
}
.eds_news_Advantage .page-header > .container {
  color: #fff;
}
.eds_news_Advantage .page-header .title {
  color: #fff;
}
.eds_news_Advantage .page-header.header-small {
  height: 65vh;
  min-height: 65vh;
}
.eds_news_Advantage .page-header .iframe-container iframe {
  width: 100%;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .header-filter {
  position: relative;
}
.eds_news_Advantage .header-filter:before, .eds_news_Advantage .header-filter:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
}
.eds_news_Advantage .header-filter::before {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Advantage .header-filter .container {
  z-index: 2;
  position: relative;
}
.eds_news_Advantage .clear-filter::before {
  background: none;
}
.eds_news_Advantage .purple-filter:after {
  background: rgba(101, 47, 142, 0.64);
  background: linear-gradient(45deg, rgba(101, 47, 142, 0.88) 0%, rgba(125, 46, 185, 0.45) 100%);
  background: -webkit-linear-gradient(135deg, rgba(101, 47, 142, 0.88) 0%, rgba(125, 46, 185, 0.45) 100%);
}

.eds_news_Advantage .img-thumbnail {
  border-radius: 16px;
}
.eds_news_Advantage .img-raised {
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .rounded {
  border-radius: 6px !important;
}

.eds_news_Advantage .badge {
  padding: 5px 12px;
  text-transform: uppercase;
  font-size: 10px;
  color: #fff;
}
.eds_news_Advantage .badge.badge-primary {
  background-color: #10d7bf;
}
.eds_news_Advantage .badge.badge-info {
  background-color: #00bcd4;
}
.eds_news_Advantage .badge.badge-success {
  background-color: #4caf50;
}
.eds_news_Advantage .badge.badge-warning {
  background-color: #ff9800;
}
.eds_news_Advantage .badge.badge-danger {
  background-color: #f44336;
}
.eds_news_Advantage .badge.badge-rose {
  background-color: #e91e63;
}
.eds_news_Advantage .badge.badge-default {
  background-color: #999;
}
.eds_news_Advantage .badge-default[href]:hover,
.eds_news_Advantage .badge-default[href]:focus {
  background-color: #c1c1c1;
}
.eds_news_Advantage .badge-primary[href]:hover,
.eds_news_Advantage .badge-primary[href]:focus {
  background-color: #0ebfaa;
}
.eds_news_Advantage .badge-info[href]:hover,
.eds_news_Advantage .badge-info[href]:focus {
  background-color: #00a5bb;
}
.eds_news_Advantage .badge-success[href]:hover,
.eds_news_Advantage .badge-success[href]:focus {
  background-color: #449d48;
}
.eds_news_Advantage .badge-warning[href]:hover,
.eds_news_Advantage .badge-warning[href]:focus {
  background-color: #e68900;
  color: #fff;
}
.eds_news_Advantage .badge-danger[href]:hover,
.eds_news_Advantage .badge-danger[href]:focus {
  background-color: #f32c1e;
}
.eds_news_Advantage .badge-rose[href]:hover,
.eds_news_Advantage .badge-rose[href]:focus {
  background-color: #d81558;
}
.eds_news_Advantage .pro-badge {
  position: relative;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  right: -10px;
  padding: 10px 18px;
  top: -30px;
  background: #fff;
  border-radius: 3px;
  color: #444444;
  line-height: 22px;
  box-shadow: 0 5px 5px -2px rgba(31, 31, 31, 0.4);
}

.eds_news_Advantage .alert {
  border: 0;
  border-radius: 0;
  padding: 20px 15px;
  line-height: 20px;
}
.eds_news_Advantage .alert b {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.eds_news_Advantage .alert, .eds_news_Advantage .alert.alert-default {
  background-color: white;
  color: #808080;
}
.eds_news_Advantage .alert a, .eds_news_Advantage .alert .alert-link, .eds_news_Advantage .alert.alert-default a, .eds_news_Advantage .alert.alert-default .alert-link {
  color: #808080;
}
.eds_news_Advantage .alert.alert-inverse {
  background-color: #292929;
  color: #fff;
}
.eds_news_Advantage .alert.alert-inverse a, .eds_news_Advantage .alert.alert-inverse .alert-link {
  color: #fff;
}
.eds_news_Advantage .alert.alert-primary {
  background-color: #11e5cc;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-primary a, .eds_news_Advantage .alert.alert-primary .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-success {
  background-color: #55b559;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-success a, .eds_news_Advantage .alert.alert-success .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-info {
  background-color: #00cae3;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-info a, .eds_news_Advantage .alert.alert-info .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-warning {
  background-color: #ff9e0f;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-warning a, .eds_news_Advantage .alert.alert-warning .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-danger {
  background-color: #f55145;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-danger a, .eds_news_Advantage .alert.alert-danger .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-rose {
  background-color: #ea2c6d;
  color: #ffffff;
}
.eds_news_Advantage .alert.alert-rose a, .eds_news_Advantage .alert.alert-rose .alert-link {
  color: #ffffff;
}
.eds_news_Advantage .alert-info, .eds_news_Advantage .alert-danger, .eds_news_Advantage .alert-warning, .eds_news_Advantage .alert-success {
  color: #ffffff;
}
.eds_news_Advantage .alert-default a, .eds_news_Advantage .alert-default .alert-link {
  color: rgba(0,0,0, 0.87);
}
.eds_news_Advantage .alert .alert-icon {
  display: block;
  float: left;
  margin-right: 1.071rem;
}
.eds_news_Advantage .alert .alert-icon i {
  margin-top: -7px;
  top: 5px;
  position: relative;
}
.eds_news_Advantage .alert .close {
  color: #fff;
  text-shadow: none;
  opacity: 0.9;
}
.eds_news_Advantage .alert .close i {
  font-size: 20px;
}
.eds_news_Advantage .alert .close:hover, .eds_news_Advantage .alert .close:focus {
  opacity: 1;
}

.eds_news_Advantage {
  font-weight: 300;
  line-height: 1.5;
}
.eds_news_Advantage h1, .eds_news_Advantage h2, .eds_news_Advantage h3, .eds_news_Advantage h4, .eds_news_Advantage h5, .eds_news_Advantage h6, .eds_news_Advantage .h1, .eds_news_Advantage .h2, .eds_news_Advantage .h3, .eds_news_Advantage .h4 {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}
.eds_news_Advantage h1, .eds_news_Advantage h2, .eds_news_Advantage h3, .eds_news_Advantage .h1, .eds_news_Advantage .h2, .eds_news_Advantage .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.eds_news_Advantage h4, .eds_news_Advantage h5, .eds_news_Advantage h6, .eds_news_Advantage .h4, .eds_news_Advantage .h5, .eds_news_Advantage .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.eds_news_Advantage h1, .eds_news_Advantage .h1 {
  font-size: 3.3125rem;
  line-height: 1.15em;
}
@media (max-width: 768px) {
  .eds_news_Advantage h1, .eds_news_Advantage .h1 {
    font-size: 1.5rem;
  }
}
.eds_news_Advantage h2, .eds_news_Advantage .h2 {
  font-size: 2.25rem;
  line-height: 1.5em;
}
.eds_news_Advantage h3, .eds_news_Advantage .h3 {
  font-size: 1.5625rem;
  line-height: 1.4em;
}
.eds_news_Advantage h4, .eds_news_Advantage .h4 {
  font-size: 1.125rem;
  line-height: 1.5em;
}
.eds_news_Advantage h5, .eds_news_Advantage .h5 {
  font-size: 1.0625rem;
  line-height: 1.55em;
  margin-bottom: 15px;
}
.eds_news_Advantage h6, .eds_news_Advantage .h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
}
.eds_news_Advantage p {
  margin: 0 0 10px;
}
.eds_news_Advantage b, .eds_news_Advantage strong {
  font-weight: 700;
}
.eds_news_Advantage small,
.eds_news_Advantage .small {
  font-size: 75%;
}
.eds_news_Advantage .title,
.eds_news_Advantage .card-title,
.eds_news_Advantage .info-title,
.eds_news_Advantage .footer-brand,
.eds_news_Advantage .footer-big h5,
.eds_news_Advantage .footer-big h4,
.eds_news_Advantage .media .media-heading,
.eds_news_Advantage .image_title {
  font-weight: 700;
  font-family: "Roboto Slab", "Times New Roman", serif;
  color: #3C4858;
}
.eds_news_Advantage h2.title {
  margin-bottom: 1rem;
}
.eds_news_Advantage .description,
.eds_news_Advantage .card-description,
.eds_news_Advantage .footer-big p {
  color: #999;
}
.eds_news_Advantage .text-warning {
  color: #ff9800 !important;
}
.eds_news_Advantage .text-primary {
  color: #10d7bf !important;
}
.eds_news_Advantage .text-danger {
  color: #f44336 !important;
}
.eds_news_Advantage .text-success {
  color: #4caf50 !important;
}
.eds_news_Advantage .text-info {
  color: #00bcd4 !important;
}
.eds_news_Advantage .text-rose {
  color: #e91e63 !important;
}
.eds_news_Advantage .text-gray {
  color: #999999 !important;
}
.eds_news_Advantage .space {
  height: 130px;
  display: block;
}
.eds_news_Advantage .space-110 {
  height: 110px;
  display: block;
}
.eds_news_Advantage .space-50 {
  height: 50px;
  display: block;
}
.eds_news_Advantage .space-70 {
  height: 70px;
  display: block;
}
.eds_news_Advantage .blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}
.eds_news_Advantage .blockquote p {
  font-size: 1.063rem;
  font-style: italic;
}
.eds_news_Advantage .blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

.eds_news_Advantage .section-white {
  background: #FFFFFF;
}
.eds_news_Advantage .section-white-to-gray {
  background-color: #fff;
  background: rgba(0, 0, 0, 0) linear-gradient(0deg, #e5e5e5 0%, #fff 100%) repeat scroll 0 0;
}
.eds_news_Advantage .section-gray {
  background: #E5E5E5;
}
.eds_news_Advantage .section-light-gray {
  background: #eee;
}
.eds_news_Advantage .section-primary {
  background: #e1bee7; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #e1bee7, #ba68c8); /* Standard syntax */
}
.eds_news_Advantage .section-info {
  background: #b2ebf2; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #b2ebf2, #4dd0e1); /* Standard syntax */
}
.eds_news_Advantage .section-success {
  background: #c8e6c9; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #c8e6c9, #81c784); /* Standard syntax */
}
.eds_news_Advantage .section-warning {
  background: #ffe0b2; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #ffe0b2, #ffb74d); /* Standard syntax */
}
.eds_news_Advantage .section-danger {
  background: #ffcdd2; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #ffcdd2, #e57373); /* Standard syntax */
}
.eds_news_Advantage .section-rose {
  background: #f8bbd0; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: linear-gradient(60deg, #f8bbd0, #f06292); /* Standard syntax */
}
.eds_news_Advantage .section-space {
  height: 70px;
  display: block;
}
.eds_news_Advantage .section {
  padding: 70px 0;
}
.eds_news_Advantage .section-navbars {
  padding-bottom: 0;
}
.eds_news_Advantage .section-full-screen {
  height: 100vh;
}
.eds_news_Advantage .section-signup {
  padding-top: 20vh;
}
.eds_news_Advantage .section-dark,
.eds_news_Advantage .section-image {
  background-color: #343434;
  background-size: 200% 240%;
  background: #232323; /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 12+ */ /* IE10+ */
  background: radial-gradient(ellipse at center, #585858 0%, #232323 100%); /* W3C */
  background-size: 550% 450%;
}
.eds_news_Advantage .section-dark .eds_news_Advantage .title,
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain .card-title,
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain .icon i,
.eds_news_Advantage .section-image .eds_news_Advantage .title,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain .card-title,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain .icon i {
  color: #fff;
}
.eds_news_Advantage .section-dark .eds_news_Advantage .description,
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain .card-description,
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain .icon,
.eds_news_Advantage .section-image .eds_news_Advantage .description,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain .card-description,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain .icon {
  color: rgba(255, 255, 255, 0.76);
}
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain [class*=text-],
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain ul li b,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain [class*=text-],
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain ul li b {
  color: #fff;
}
.eds_news_Advantage .section-dark .eds_news_Advantage .card-plain .card-category,
.eds_news_Advantage .section-image .eds_news_Advantage .card-plain .card-category {
  color: rgba(255, 255, 255, 0.5);
}
.eds_news_Advantage .section-dark .eds_news_Advantage .card .card-image .colored-shadow,
.eds_news_Advantage .section-image .eds_news_Advantage .card .card-image .colored-shadow {
  top: 0px;
}
.eds_news_Advantage .section-image {
  position: relative;
}
.eds_news_Advantage .section-image:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}
.eds_news_Advantage .section-image .container {
  z-index: 2;
  position: relative;
}
.eds_news_Advantage .section,
.eds_news_Advantage .section-image {
  background-position: center center;
  background-size: cover;
}
.eds_news_Advantage [class*=features-],
.eds_news_Advantage [class*=team-],
.eds_news_Advantage [class*=projects-],
.eds_news_Advantage [class*=pricing-],
.eds_news_Advantage [class*=testimonials-],
.eds_news_Advantage [class*=contactus-] {
  padding: 80px 0;
}

.eds_news_Advantage .media {
  /*p{
      color: $gray-color;
      font-size: 1rem;
      line-height: 1.6em;
  }*/
}
.eds_news_Advantage .media .avatar {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .media .avatar img {
  width: 100%;
}
.eds_news_Advantage .media .media-heading small {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
.eds_news_Advantage .media .media-body {
  padding-right: 10px;
}
.eds_news_Advantage .media .media-body textarea {
  margin-top: 15px;
}
.eds_news_Advantage .media .media-body .media .media-body {
  padding-right: 0px;
}
.eds_news_Advantage .media .media-footer .btn {
  margin-bottom: 20px;
}
.eds_news_Advantage .media .media-footer:after {
  display: table;
  content: " ";
  clear: both;
}
.eds_news_Advantage .media-left,
.eds_news_Advantage .media > .float-left {
  padding: 10px;
}

.eds_news_Advantage .card {
  border: 0;
  margin-bottom: 30px;
  margin-top: 30px;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_Advantage .card .card-category:not([class*=text-]) {
  color: #999999;
}
.eds_news_Advantage .card .card-category {
  margin-top: 10px;
}
.eds_news_Advantage .card .card-category .material-icons {
  position: relative;
  top: 8px;
  line-height: 0;
}
.eds_news_Advantage .card .form-check {
  margin-top: 15px;
}
.eds_news_Advantage .card .card-title {
  margin-top: 0.625rem;
}
.eds_news_Advantage .card .card-title:last-child {
  margin-bottom: 0;
}
.eds_news_Advantage .card.no-shadow .card-header-image,
.eds_news_Advantage .card.no-shadow .card-header-image img {
  box-shadow: none !important;
}
.eds_news_Advantage .card .card-body,
.eds_news_Advantage .card .card-footer {
  padding: 0.9375rem 1.875rem;
}
.eds_news_Advantage .card .card-body + .card-footer {
  padding-top: 0rem;
  border: 0;
  border-radius: 6px;
}
.eds_news_Advantage .card .card-footer {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
}
.eds_news_Advantage .card .card-footer .author,
.eds_news_Advantage .card .card-footer .stats {
  display: inline-flex;
}
.eds_news_Advantage .card .card-footer .stats {
  color: #999999;
}
.eds_news_Advantage .card .card-footer .stats .material-icons {
  position: relative;
  top: auto;
  margin-right: 3px;
  margin-left: 3px;
  font-size: 18px;
}
.eds_news_Advantage .card.bmd-card-raised {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .eds_news_Advantage .card.bmd-card-flat {
    box-shadow: none;
  }
}
.eds_news_Advantage .card .card-header {
  border-radius: 3px;
  padding: 1rem 15px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
  border: 0;
  background: linear-gradient(60deg, #eee, #bdbdbd);
}
.eds_news_Advantage .card .card-header .title {
  color: #fff;
}
.eds_news_Advantage .card .card-header:not([class*=header-]) {
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .card .card-header .nav-tabs {
  padding: 0;
}
.eds_news_Advantage .card .card-header.card-header-image {
  position: relative;
  padding: 0;
  z-index: 1;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
  border-radius: 6px;
}
.eds_news_Advantage .card .card-header.card-header-image a {
  display: block;
}
.eds_news_Advantage .card .card-header.card-header-image img {
  width: 100%;
  border-radius: 6px;
  pointer-events: none;
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .card .card-header.card-header-image .card-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 1.125rem;
  text-shadow: 0 2px 5px rgba(33, 33, 33, 0.5);
}
.eds_news_Advantage .card .card-header.card-header-image .colored-shadow {
  transform: scale(0.94);
  top: 12px;
  filter: blur(12px);
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  transition: opacity 0.45s;
  opacity: 0;
}
.eds_news_Advantage .card .card-header.card-header-image.no-shadow {
  box-shadow: none;
}
.eds_news_Advantage .card .card-header.card-header-image.no-shadow.shadow-normal {
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .card .card-header.card-header-image.no-shadow .colored-shadow {
  display: none !important;
}
.eds_news_Advantage .card .card-header-primary, .eds_news_Advantage .card.bg-primary, .eds_news_Advantage .card.card-rotate.bg-primary .front, .eds_news_Advantage .card.card-rotate.bg-primary .back {
  background: linear-gradient(60deg, #ab47bc, #7b1fa2);
}
.eds_news_Advantage .card .card-header-info, .eds_news_Advantage .card.bg-info, .eds_news_Advantage .card.card-rotate.bg-info .front, .eds_news_Advantage .card.card-rotate.bg-info .back {
  background: linear-gradient(60deg, #26c6da, #0097a7);
}
.eds_news_Advantage .card .card-header-success, .eds_news_Advantage .card.bg-success, .eds_news_Advantage .card.card-rotate.bg-success .front, .eds_news_Advantage .card.card-rotate.bg-success .back {
  background: linear-gradient(60deg, #66bb6a, #388e3c);
}
.eds_news_Advantage .card .card-header-warning, .eds_news_Advantage .card.bg-warning, .eds_news_Advantage .card.card-rotate.bg-warning .front, .eds_news_Advantage .card.card-rotate.bg-warning .back {
  background: linear-gradient(60deg, #ffa726, #f57c00);
}
.eds_news_Advantage .card .card-header-danger, .eds_news_Advantage .card.bg-danger, .eds_news_Advantage .card.card-rotate.bg-danger .front, .eds_news_Advantage .card.card-rotate.bg-danger .back {
  background: linear-gradient(60deg, #ef5350, #d32f2f);
}
.eds_news_Advantage .card .card-header-rose, .eds_news_Advantage .card.bg-rose, .eds_news_Advantage .card.card-rotate.bg-rose .front, .eds_news_Advantage .card.card-rotate.bg-rose .back {
  background: linear-gradient(60deg, #ec407a, #c2185b);
}
.eds_news_Advantage .card .card-header-primary {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(16, 215, 191, 0.6);
}
.eds_news_Advantage .card .card-header-danger {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(244, 67, 54, 0.6);
}
.eds_news_Advantage .card .card-header-rose {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(233, 30, 99, 0.6);
}
.eds_news_Advantage .card .card-header-warning {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(255, 152, 0, 0.6);
}
.eds_news_Advantage .card .card-header-info {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(0, 188, 212, 0.6);
}
.eds_news_Advantage .card .card-header-success {
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(76, 175, 80, 0.6);
}
.eds_news_Advantage .card [class*=header-], .eds_news_Advantage .card[class*=bg-] {
  color: #fff;
}
.eds_news_Advantage .card [class*=header-] .card-title a,
.eds_news_Advantage .card [class*=header-] .card-title,
.eds_news_Advantage .card [class*=header-] .icon i, .eds_news_Advantage .card[class*=bg-] .card-title a,
.eds_news_Advantage .card[class*=bg-] .card-title,
.eds_news_Advantage .card[class*=bg-] .icon i {
  color: #fff;
}
.eds_news_Advantage .card [class*=header-] .icon i, .eds_news_Advantage .card[class*=bg-] .icon i {
  border-color: rgba(255, 255, 255, 0.25);
}
.eds_news_Advantage .card [class*=header-] .author a,
.eds_news_Advantage .card [class*=header-] .stats,
.eds_news_Advantage .card [class*=header-] .card-category,
.eds_news_Advantage .card [class*=header-] .card-description, .eds_news_Advantage .card[class*=bg-] .author a,
.eds_news_Advantage .card[class*=bg-] .stats,
.eds_news_Advantage .card[class*=bg-] .card-category,
.eds_news_Advantage .card[class*=bg-] .card-description {
  color: rgba(255, 255, 255, 0.8);
}
.eds_news_Advantage .card [class*=header-] .author a:hover, .eds_news_Advantage .card [class*=header-] .author a:focus, .eds_news_Advantage .card [class*=header-] .author a:active, .eds_news_Advantage .card[class*=bg-] .author a:hover, .eds_news_Advantage .card[class*=bg-] .author a:focus, .eds_news_Advantage .card[class*=bg-] .author a:active {
  color: #fff;
}
.eds_news_Advantage .card .author .avatar {
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 5px;
}
.eds_news_Advantage .card .author a {
  color: #3C4858;
  text-decoration: none;
}
.eds_news_Advantage .card .author a .ripple-container {
  display: none;
}
.eds_news_Advantage .card .card-category-social .fa {
  font-size: 24px;
  position: relative;
  margin-top: -4px;
  top: 2px;
  margin-right: 5px;
}
.eds_news_Advantage .card .card-category-social .material-icons {
  position: relative;
  top: 5px;
}
.eds_news_Advantage .card[class*=bg-], .eds_news_Advantage .card[class*=bg-] .card-body {
  border-radius: 6px;
}
.eds_news_Advantage .card[class*=bg-] h1 small,
.eds_news_Advantage .card[class*=bg-] h2 small,
.eds_news_Advantage .card[class*=bg-] h3 small, .eds_news_Advantage .card[class*=bg-] .card-body h1 small,
.eds_news_Advantage .card[class*=bg-] .card-body h2 small,
.eds_news_Advantage .card[class*=bg-] .card-body h3 small {
  color: rgba(255, 255, 255, 0.8);
}
.eds_news_Advantage .card .card-stats {
  background: transparent;
  display: flex;
}
.eds_news_Advantage .card .card-stats .author,
.eds_news_Advantage .card .card-stats .stats {
  display: inline-flex;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card {
    display: inline-block;
  }
}
.eds_news_Advantage .card-plain {
  background: transparent;
  box-shadow: none;
}
.eds_news_Advantage .card-plain .card-header:not(.card-avatar) {
  margin-left: 0;
  margin-right: 0;
}
.eds_news_Advantage .card-plain .card-body {
  padding-left: 5px;
  padding-right: 5px;
}
.eds_news_Advantage .card-plain .card-header-image {
  margin: 0 !important;
  border-radius: 6px;
}
.eds_news_Advantage .card-plain .card-header-image img {
  border-radius: 6px;
}
.eds_news_Advantage .card-plain .card-footer {
  padding-left: 5px;
  padding-right: 5px;
  background-color: transparent;
}

.eds_news_Advantage .card-background {
  background-position: center center;
  background-size: cover;
  text-align: center;
}
.eds_news_Advantage .card-background .card-body {
  position: relative;
  z-index: 2;
  min-height: 280px;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 440px;
  margin: 0 auto;
}
.eds_news_Advantage .card-background .card-category,
.eds_news_Advantage .card-background .card-description,
.eds_news_Advantage .card-background small {
  color: rgba(255, 255, 255, 0.7) !important;
}
.eds_news_Advantage .card-background .card-title {
  color: #fff;
  margin-top: 10px;
}
.eds_news_Advantage .card-background .card-title a {
  color: inherit;
}
.eds_news_Advantage .card-background:not(.card-pricing) .btn {
  margin-bottom: 0;
}
.eds_news_Advantage .card-background:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.56);
  border-radius: 6px;
}
.eds_news_Advantage .card-background .author a {
  color: #fff;
}
.eds_news_Advantage .card-profile .card-header-image {
  max-height: none;
}
.eds_news_Advantage .card-profile .card-header:not([class*=card-header-]) {
  background: transparent;
}
.eds_news_Advantage .card-profile .card-avatar {
  width: 130px;
  max-width: 130px;
  max-height: 130px;
}
.eds_news_Advantage .card-profile [class*=col-] .card-avatar {
  width: auto;
}

.eds_news_Advantage .card-testimonial, .eds_news_Advantage .card-profile {
  margin-top: 30px;
  text-align: center;
}
.eds_news_Advantage .card-testimonial .card-avatar, .eds_news_Advantage .card-profile .card-avatar {
  margin: -50px auto 0;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .card-testimonial .card-avatar + .card-body, .eds_news_Advantage .card-profile .card-avatar + .card-body {
  margin-top: 15px;
}
.eds_news_Advantage .card-testimonial .card-avatar img, .eds_news_Advantage .card-profile .card-avatar img {
  width: 100%;
  height: auto;
}
.eds_news_Advantage .card-testimonial .card-body + .card-footer, .eds_news_Advantage .card-profile .card-body + .card-footer {
  margin-top: -15px;
}
.eds_news_Advantage .card-testimonial .card-footer .btn.btn-just-icon, .eds_news_Advantage .card-profile .card-footer .btn.btn-just-icon {
  font-size: 20px;
  padding: 12px 12px;
  line-height: 1em;
}
.eds_news_Advantage .card-plain.card-testimonial .card-avatar, .eds_news_Advantage .card-plain.card-profile .card-avatar {
  margin-top: 0;
}
.eds_news_Advantage .card-testimonial .card-avatar {
  max-width: 100px;
  max-height: 100px;
}
.eds_news_Advantage .card-testimonial .card-footer {
  margin-top: 0;
  display: block;
}
.eds_news_Advantage .card-testimonial .card-footer .card-avatar {
  margin-top: 10px;
  margin-bottom: -60px;
}
.eds_news_Advantage .card-testimonial .card-description {
  font-style: italic;
}
.eds_news_Advantage .card-testimonial .card-description + .card-title {
  margin-top: 30px;
}
.eds_news_Advantage .card-testimonial .icon {
  margin-top: 30px;
}
.eds_news_Advantage .card-testimonial .icon .material-icons {
  font-size: 40px;
}

/*!
 * Bootstrap-select v1.13.12 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2019 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */
@-webkit-keyframes bs-notify-fadeOut {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bs-notify-fadeOut {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.eds_news_Advantage select.bs-select-hidden,
.eds_news_Advantage .bootstrap-select > select.bs-select-hidden,
.eds_news_Advantage select.selectpicker {
  display: none !important;
}
.eds_news_Advantage .bootstrap-select {
  /*IE9 and below*/
  vertical-align: middle;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle {
  position: relative;
  width: 100%;
  text-align: right;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 25px;
  padding-left: 20px;
  z-index: 1;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn, .eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn:hover {
  color: #fff;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle:after {
  margin-top: -1px;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
.eds_news_Advantage .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active {
  color: rgba(255, 255, 255, 0.5);
}
.eds_news_Advantage .bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
  z-index: 0 !important;
}
.eds_news_Advantage .bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2 !important;
}
.eds_news_Advantage .has-error .bootstrap-select .dropdown-toggle,
.eds_news_Advantage .error .bootstrap-select .dropdown-toggle,
.eds_news_Advantage .bootstrap-select.is-invalid .dropdown-toggle,
.eds_news_Advantage .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  border-color: #b94a48;
}
.eds_news_Advantage .bootstrap-select.is-valid .dropdown-toggle,
.eds_news_Advantage .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  border-color: #28a745;
}
.eds_news_Advantage .bootstrap-select.fit-width {
  width: auto !important;
}
.eds_news_Advantage .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: auto;
}
.eds_news_Advantage .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.eds_news_Advantage .bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.eds_news_Advantage .bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
  height: auto;
}
.eds_news_Advantage :not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}
.eds_news_Advantage .bootstrap-select.form-control.input-group-btn {
  float: none;
  z-index: auto;
}
.eds_news_Advantage .form-inline .bootstrap-select,
.eds_news_Advantage .form-inline .bootstrap-select.form-control:not([class*=col-]) {
  width: auto;
}
.eds_news_Advantage .bootstrap-select:not(.input-group-btn),
.eds_news_Advantage .bootstrap-select[class*=col-] {
  float: none;
  display: block;
  margin-left: 0;
}
.eds_news_Advantage .bootstrap-select.dropdown-menu-right,
.eds_news_Advantage .bootstrap-select[class*=col-].dropdown-menu-right,
.eds_news_Advantage .row .bootstrap-select[class*=col-].dropdown-menu-right {
  float: right;
}
.eds_news_Advantage .form-inline .bootstrap-select,
.eds_news_Advantage .form-horizontal .bootstrap-select,
.eds_news_Advantage .form-group .bootstrap-select {
  margin-bottom: 0;
}
.eds_news_Advantage .form-group-lg .bootstrap-select.form-control,
.eds_news_Advantage .form-group-sm .bootstrap-select.form-control {
  padding: 0;
}
.eds_news_Advantage .form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.eds_news_Advantage .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.eds_news_Advantage .bootstrap-select.form-control-sm .dropdown-toggle,
.eds_news_Advantage .bootstrap-select.form-control-lg .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.eds_news_Advantage .bootstrap-select.form-control-sm .dropdown-toggle {
  padding: 0.25rem 0.5rem;
}
.eds_news_Advantage .bootstrap-select.form-control-lg .dropdown-toggle {
  padding: 0.5rem 1rem;
}
.eds_news_Advantage .form-inline .bootstrap-select .form-control {
  width: 100%;
}
.eds_news_Advantage .bootstrap-select.disabled,
.eds_news_Advantage .bootstrap-select > .disabled {
  cursor: not-allowed;
}
.eds_news_Advantage .bootstrap-select.disabled:focus,
.eds_news_Advantage .bootstrap-select > .disabled:focus {
  outline: none !important;
}
.eds_news_Advantage .bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0 !important;
  padding: 0 !important;
}
.eds_news_Advantage .bootstrap-select.bs-container .dropdown-menu {
  z-index: 1060;
}
.eds_news_Advantage .bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  flex: 0 1 auto;
}
.eds_news_Advantage .bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: inherit;
}
.eds_news_Advantage .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  position: absolute;
  padding-top: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  float: none;
}
.eds_news_Advantage .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right: inherit;
}
.eds_news_Advantage .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}
.eds_news_Advantage .bootstrap-select .dropdown-toggle .filter-expand {
  width: 0 !important;
  float: left;
  opacity: 0 !important;
  overflow: hidden;
}
.eds_news_Advantage .bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.eds_news_Advantage .input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}
.eds_news_Advantage .bootstrap-select[class*=col-] .dropdown-toggle {
  width: 100%;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu {
  min-width: 100%;
  box-sizing: border-box;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu > .inner:focus {
  outline: none !important;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li {
  position: relative;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li.active small {
  color: #ffffff !important;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li.disabled a {
  pointer-events: none;
  cursor: not-allowed;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu li small {
  padding-left: 0.5em;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.eds_news_Advantage .bootstrap-select .dropdown-menu .notify.fadeOut {
  -webkit-animation: 300ms linear 750ms forwards bs-notify-fadeOut;
  animation: 300ms linear 750ms forwards bs-notify-fadeOut;
}
.eds_news_Advantage .bootstrap-select .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.eds_news_Advantage .bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
  display: inline;
  padding: 0;
}
.eds_news_Advantage .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.eds_news_Advantage .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display: inline;
}
.eds_news_Advantage .bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content: " ";
}
.eds_news_Advantage .bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.eds_news_Advantage .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 10px;
  font-size: 16px;
}
.eds_news_Advantage .bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.eds_news_Advantage .bootstrap-select .bs-ok-default:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
  border-style: solid;
  border-width: 0 0.26em 0.26em 0;
  transform: rotate(45deg);
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
.eds_news_Advantage .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index: 1061;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom: auto;
  top: -4px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom: auto;
  top: -4px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right: 12px;
  left: auto;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right: 13px;
  left: auto;
}
.eds_news_Advantage .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
.eds_news_Advantage .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before,
.eds_news_Advantage .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
.eds_news_Advantage .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after {
  display: block;
}
.eds_news_Advantage .bs-searchbox,
.eds_news_Advantage .bs-actionsbox,
.eds_news_Advantage .bs-donebutton {
  padding: 4px 8px;
}
.eds_news_Advantage .bs-actionsbox {
  width: 100%;
  box-sizing: border-box;
}
.eds_news_Advantage .bs-actionsbox .btn-group button {
  width: 50%;
}
.eds_news_Advantage .bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.eds_news_Advantage .bs-donebutton .btn-group button {
  width: 100%;
}
.eds_news_Advantage .bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.eds_news_Advantage .bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
.eds_news_Advantage .bootstrap-select .select-with-transition {
  background: no-repeat center bottom, center calc(100% - 1px);
  transition: background 0s ease-out !important;
  background-size: 0 100%, 100% 100%;
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}
.eds_news_Advantage .bootstrap-select .select-with-transition,
.eds_news_Advantage .bootstrap-select .btn:active,
.eds_news_Advantage .bootstrap-select .btn.active {
  background-image: linear-gradient(to top, #9c27b0 2px, rgba(156, 39, 176, 0) 2px), linear-gradient(to top, rgba(0, 0, 0, 0.26) 1px, transparent 1px);
}
.eds_news_Advantage .bootstrap-select.show .select-with-transition:focus {
  background-size: 100% 100%, 100% 100%;
  transition-duration: 0.3s !important;
}
.eds_news_Advantage .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.eds_news_Advantage .bootstrap-select.show > .dropdown-menu > .dropdown-menu {
  display: block;
}
.eds_news_Advantage .bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
  display: none;
}
.eds_news_Advantage .bootstrap-select > .dropdown-toggle::after {
  transform: rotate(180deg);
}
.eds_news_Advantage .edNews__commentscollapsed .bootstrap-select > .dropdown-toggle::after {
  transform: rotate(0deg);
}

.eds_news_Advantage .eds_openModal {
  cursor: pointer;
}
.eds_news_Advantage .edNews_clearFix::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Advantage .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Advantage.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions {
  line-height: 1;
  font-size: 13px;
  position: relative;
  z-index: 999;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions > a,
.eds_news_Advantage.eds_subCollection_news .admin_action {
  display: inline-block;
  margin: 10px 5px 10px 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  background-color: #fff;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions > a:hover,
.eds_news_Advantage.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  box-shadow: 0 0 2px 0 #fff inset;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions > a:hover:before,
.eds_news_Advantage.eds_subCollection_news .admin_action:hover:before {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions > a.edit,
.eds_news_Advantage.eds_subCollection_news .admin_action.edit {
  color: #f89e00;
  border-color: #e78d00;
}
.eds_news_Advantage.eds_subCollection_news .edn_adminActions > a.publish_article,
.eds_news_Advantage.eds_subCollection_news .admin_action.publish_article {
  color: #619c1c;
  border-color: #4c771d;
}
.eds_news_Advantage.eds_subCollection_news .fb-comments, .eds_news_Advantage.eds_subCollection_news .fb-comments iframe[style], .eds_news_Advantage.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Advantage.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Advantage.eds_subCollection_news .edNews_article_map {
  margin: 2rem 0;
}
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton,
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons ~ .edn_printButton {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton,
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons ~ .edn_printButton {
    margin-left: 0;
  }
}
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after,
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons ~ .edn_printButton::after {
  display: inline-block;
}
@media (max-width: 768px) {
  .eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after,
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons ~ .edn_printButton::after {
    display: none;
  }
}
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .sharethis-inline-share-buttons {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.eds_news_Advantage.eds_subCollection_news .edNews_socialPrintWrapper .edNews_votingRating {
  margin: 0.6rem 0 0.6rem auto;
}
.eds_news_Advantage.eds_subCollection_news .edn_printButton {
  background-color: #B9B9B9;
  cursor: pointer;
  padding: 6px 15px 5px 10px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  margin: 5px 2px;
  position: relative;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_news .edn_printButton {
    padding: 6px 8px;
  }
}
.eds_news_Advantage.eds_subCollection_news .edn_printButton::after {
  content: "";
  border-left: dotted 1px #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  display: none;
}
.eds_news_Advantage.eds_subCollection_news .edn_printButton::before {
  font: 900 14px/1 Font Awesome\ 5 Free;
  color: #fff;
  content: "\f02f";
  vertical-align: middle;
  padding-right: 10px;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_news .edn_printButton::before {
    padding-right: 0;
  }
}
.eds_news_Advantage.eds_subCollection_news .edn_printButton > span {
  color: #fff;
  line-height: 1.4;
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-top: 1px;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_news .edn_printButton > span {
    display: none;
  }
}
.eds_news_Advantage.eds_subCollection_news .edn_printButton:hover {
  background-color: #a5a5a5;
}
.eds_news_Advantage .edNews_additionalCards,
.eds_news_Advantage .EDN_cf_all_fields_container,
.eds_news_Advantage .search_input,
.eds_news_Advantage .edncf_AdvancedSearch,
.eds_news_Advantage .archive_list.events {
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.11);
  padding: 2.5rem 1.5rem 1.5rem;
  background-color: #fff;
  margin: 4rem 0 3rem;
  border-radius: 0.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_additionalCards,
.eds_news_Advantage .EDN_cf_all_fields_container,
.eds_news_Advantage .search_input,
.eds_news_Advantage .edncf_AdvancedSearch,
.eds_news_Advantage .archive_list.events {
    margin: 1.5rem 0;
  }
}
.eds_news_Advantage .EDN_cf_all_fields_container::before,
.eds_news_Advantage .search_input::before,
.eds_news_Advantage .edncf_AdvancedSearch::before,
.eds_news_Advantage .archive_list.events::before {
  position: absolute;
  background-color: #10d7bf;
  font: 900 1.2rem/3.5rem Font Awesome\ 5 Free;
  top: -0.5rem;
  left: -0.5rem;
  background-color: #10d7bf;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.2rem;
  box-shadow: 1px 1px 2px rgba(16, 215, 191, 0.2);
  text-align: center;
  color: #fff;
  display: inline-block;
}
.eds_news_Advantage .EDN_cf_all_fields_container::before {
  content: "\f03a";
}
.eds_news_Advantage .edncf_AdvancedSearch::before {
  content: "\f00e";
}
.eds_news_Advantage .archive_list.events::before {
  content: "\f783";
}
.eds_news_Advantage .edNews_cardList,
.eds_news_Advantage .archive_list.events ul {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .edNews_cardList li,
.eds_news_Advantage .archive_list.events ul li {
  list-style-type: none;
  margin: 0;
  padding: 1rem 1rem 1rem 2.5rem;
  background-color: #f7f7f7;
  position: relative;
  transition: all 300ms;
  border-radius: 0.5rem;
}
.eds_news_Advantage .edNews_cardList li:hover,
.eds_news_Advantage .archive_list.events ul li:hover {
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
}
.eds_news_Advantage .edNews_cardList li:before,
.eds_news_Advantage .archive_list.events ul li:before {
  font: 900 1rem/1.1 Font Awesome\ 5 Free;
  content: "\f054";
  color: #170d49;
  display: inline-block;
  position: absolute;
  top: 1.1rem;
  left: 1rem;
}
.eds_news_Advantage .edNews_cardList li + li,
.eds_news_Advantage .archive_list.events ul li + li {
  margin-top: 1rem;
}
.eds_news_Advantage .edNews_cardList .edNews_linkDescription,
.eds_news_Advantage .archive_list.events ul .edNews_linkDescription {
  font-size: 0.9rem;
  font-style: italic;
  color: #808080;
}
.eds_news_Advantage .edNews_additionalCardsImage {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.eds_news_Advantage .edNews_boxBadge {
  position: relative;
  top: -0.5rem;
  left: -0.5rem;
  background-color: #10d7bf;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.2rem;
  box-shadow: 1px 1px 2px rgba(16, 215, 191, 0.2);
  text-align: center;
  color: #fff;
  line-height: 3.5rem;
  margin-right: 1rem;
  font-size: 1.2rem;
}
.eds_news_Advantage .edNews_cardHeader {
  margin: -2.5rem -1.5rem 1.5rem -1.5rem;
  display: flex;
  align-items: center;
}
.eds_news_Advantage .edNews_additionalCardTitle {
  margin: 0;
}
.eds_news_Advantage .edNews_additionalCardTitle,
.eds_news_Advantage .edn_module_title {
  text-transform: uppercase;
  padding: 0;
  color: #170d49;
}
.eds_news_Advantage .edn_module_title {
  margin: -1.5rem -1.5rem 1.5rem 2.5rem;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li:before {
  content: "\f15b";
  font-size: 1.5rem;
  top: 0.9rem;
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_doc:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_docx:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_odt:before {
  content: "\f1c2";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_xls:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_xlsx:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_ods:before {
  content: "\f1c3";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_zip:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_rar:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_7z:before {
  content: "\f1c6";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_wav:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_wma:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_ogg:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_flac:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mp3:before {
  content: "\f1c7";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_png:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_gif:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_jpg:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_jpeg:before {
  content: "\f1c5";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mpg:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mpeg:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mp4:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_xvid:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_wmv:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_ogv:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mov:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_avi:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_mkv:before {
  content: "\f1c8";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_pdf:before {
  content: "\f1c1";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_ppt:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_pptx:before, .eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_odp:before {
  content: "\f1c4";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li.edn_docType_txt:before {
  content: "\f15c";
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li .edn_docDetails {
  font-style: normal;
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Advantage .edNews_articleDocuments .edNews_cardList li .edn_documentDescription {
  color: #999;
}
.eds_news_Advantage .edNews_relatedWithImages .edNews_cardList li {
  padding: 0;
  margin-left: 1rem;
}
.eds_news_Advantage .edNews_relatedWithImages .edNews_cardList li::before {
  display: none;
}
.eds_news_Advantage .edNews_relatedWithImages .edNews_cardList li a {
  display: flex;
  align-items: center;
}
.eds_news_Advantage .edNews_relatedWithImages .edNews_cardList li:hover {
  background-color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage .edNews_relatedWithImages .edNews_cardList li:hover a {
  color: #fff;
}
.eds_news_Advantage .edNews_smallCardArticle {
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
  margin-left: 1rem;
  border-radius: 0.5rem;
  display: flex;
}
.eds_news_Advantage .edNews_smallCardArticle a {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.5rem 0 0.5rem;
  color: #170d49;
  font-weight: 400;
}
.eds_news_Advantage .edNews_smallCardArticle a img {
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.29);
  margin-left: -1rem;
}
.eds_news_Advantage .edNews_smallCardArticle a .edNews_smallTitle {
  margin: 0;
  line-height: 1.1;
  min-height: auto;
}
.eds_news_Advantage .edNews_smallCardArticle:hover {
  background-color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage .edNews_smallCardArticle:hover a:link,
.eds_news_Advantage .edNews_smallCardArticle:hover a:active,
.eds_news_Advantage .edNews_smallCardArticle:hover a:visited,
.eds_news_Advantage .edNews_smallCardArticle:hover a:link:hover,
.eds_news_Advantage .edNews_smallCardArticle:hover a:active:hover,
.eds_news_Advantage .edNews_smallCardArticle:hover a:visited:hover {
  color: #fff;
}
.eds_news_Advantage .edNews_smallCardArticle:hover a:link .edNews_smallTitle,
.eds_news_Advantage .edNews_smallCardArticle:hover a:active .edNews_smallTitle,
.eds_news_Advantage .edNews_smallCardArticle:hover a:visited .edNews_smallTitle,
.eds_news_Advantage .edNews_smallCardArticle:hover a:link:hover .edNews_smallTitle,
.eds_news_Advantage .edNews_smallCardArticle:hover a:active:hover .edNews_smallTitle,
.eds_news_Advantage .edNews_smallCardArticle:hover a:visited:hover .edNews_smallTitle {
  color: #fff;
}
.eds_news_Advantage .EDN_cf_all_fields_container::after {
  position: absolute;
  content: "";
  top: 2rem;
  bottom: 2rem;
  left: 48%;
  border-left: solid 1px #10d7bf;
}
@media (max-width: 992px) {
  .eds_news_Advantage .EDN_cf_all_fields_container::after {
    display: none;
  }
}
.eds_news_Advantage .EDN_cf_all_fields_container > table {
  width: 100%;
  display: block;
  margin-top: 1rem;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tbody {
  display: block;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr {
  display: inline-block;
  width: 46%;
  vertical-align: top;
  border-bottom: solid 1px #f6f6f6;
}
@media (max-width: 992px) {
  .eds_news_Advantage .EDN_cf_all_fields_container > table tr {
    width: 100%;
  }
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr td {
  padding: 0.2rem 0.4rem;
  display: inline-block;
  vertical-align: top;
  font-size: 0.9rem;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  font-weight: 900;
  color: #3C4858;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr td:nth-child(1) {
  width: 40%;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr td:nth-child(2) {
  width: 60%;
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr:nth-child(2n+1) {
  margin-right: 2%;
}
@media (max-width: 992px) {
  .eds_news_Advantage .EDN_cf_all_fields_container > table tr:nth-child(2n+1) {
    margin-right: 0;
  }
}
.eds_news_Advantage .EDN_cf_all_fields_container > table tr:nth-child(2n) {
  margin-left: 2%;
}
@media (max-width: 992px) {
  .eds_news_Advantage .EDN_cf_all_fields_container > table tr:nth-child(2n) {
    margin-left: 0;
  }
}
.eds_news_Advantage .EDN_cf_checkbox .EDN_cf_checkbox_icon:before {
  content: "\f00d";
  margin-right: 5px;
  font: 900 1.1em/1 Font Awesome\ 5 Free;
  color: #10d7bf;
}
.eds_news_Advantage .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:before {
  content: "\f00c";
}
.eds_news_Advantage .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Advantage .edn_toolTip {
  position: relative;
}
.eds_news_Advantage .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity linear 400ms;
  line-height: 0;
  font-size: 0;
  z-index: 9999;
  margin-bottom: 3px;
  overflow: hidden;
}
.eds_news_Advantage .edn_toolTip:hover .edn_toolTipContent {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 1px transparent;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  max-width: 400px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Advantage .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
  left: 0;
}
.eds_news_Advantage .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
  right: 0;
}
.eds_news_Advantage .edNews_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Advantage .fa {
  font-family: FontAwesome !important;
}
.eds_news_Advantage .EDNcategorycolor-red,
.eds_news_Advantage .EDNcategorycolor-red:link,
.eds_news_Advantage .EDNcategorycolor-red:active,
.eds_news_Advantage .EDNcategorycolor-red:visited {
  color: #fc4c3b;
}
.eds_news_Advantage .EDNcategorycolor-blue,
.eds_news_Advantage .EDNcategorycolor-blue:link,
.eds_news_Advantage .EDNcategorycolor-blue:active,
.eds_news_Advantage .EDNcategorycolor-blue:visited {
  color: #2e7de0;
}
.eds_news_Advantage .EDNcategorycolor-black,
.eds_news_Advantage .EDNcategorycolor-black:link,
.eds_news_Advantage .EDNcategorycolor-black:active,
.eds_news_Advantage .EDNcategorycolor-black:visited {
  color: #000000;
}
.eds_news_Advantage .EDNcategorycolor-green,
.eds_news_Advantage .EDNcategorycolor-green:link,
.eds_news_Advantage .EDNcategorycolor-green:active,
.eds_news_Advantage .EDNcategorycolor-green:visited {
  color: #64ce66;
}
.eds_news_Advantage .EDNcategorycolor-yellow,
.eds_news_Advantage .EDNcategorycolor-yellow:link,
.eds_news_Advantage .EDNcategorycolor-yellow:active,
.eds_news_Advantage .EDNcategorycolor-yellow:visited {
  color: #f6c606;
}
.eds_news_Advantage .EDNcategorycolor-pink,
.eds_news_Advantage .EDNcategorycolor-pink:link,
.eds_news_Advantage .EDNcategorycolor-pink:active,
.eds_news_Advantage .EDNcategorycolor-pink:visited {
  color: #ffc0cb;
}
.eds_news_Advantage .EDNcategorycolor-gray,
.eds_news_Advantage .EDNcategorycolor-gray:link,
.eds_news_Advantage .EDNcategorycolor-gray:active,
.eds_news_Advantage .EDNcategorycolor-gray:visited {
  color: #808080;
}
.eds_news_Advantage .EDNcategorycolor-orange,
.eds_news_Advantage .EDNcategorycolor-orange:link,
.eds_news_Advantage .EDNcategorycolor-orange:active,
.eds_news_Advantage .EDNcategorycolor-orange:visited {
  color: #ff6a00;
}
.eds_news_Advantage .EDNcategorycolor-brown,
.eds_news_Advantage .EDNcategorycolor-brown:link,
.eds_news_Advantage .EDNcategorycolor-brown:active,
.eds_news_Advantage .EDNcategorycolor-brown:visited {
  color: #e49908;
}
.eds_news_Advantage .edNews_mediaContainer {
  position: relative;
  overflow: visible;
  margin-bottom: 2rem;
}
.eds_news_Advantage .edNews_mediaContainer img {
  max-width: 100%;
  height: auto;
}
.eds_news_Advantage .edNews_mediaContainer .badge {
  position: absolute;
  top: 0.8rem;
  left: -0.8rem;
  z-index: 1;
  margin: 0;
}
.eds_news_Advantage .edNews_mediaContainer.card-header-image .badge {
  left: 1rem;
}
.eds_news_Advantage .edNews_mediaContainer.card-header-image .badge.edNews_risedImageBadge {
  top: 1rem;
  left: -0.5rem;
}
.eds_news_Advantage .edNews_mediaContainer.card-header-image .badge.edNews_categoryBadge {
  padding: 0;
  top: auto;
  bottom: 1rem;
  overflow: hidden;
}
.eds_news_Advantage .edNews_mediaContainer.card-header-image .badge.edNews_categoryBadge.edNews_smallImageBadge {
  bottom: 0.5rem;
  left: 0.5rem;
}
.eds_news_Advantage .badge i {
  color: rgba(255, 255, 255, 0.5);
}
.eds_news_Advantage .edNews_categoryBadge a {
  display: block;
  text-decoration: none;
  color: #fff !important;
  padding: 0.3rem 0.5rem;
  background-color: #f38a01;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-red {
  background-color: #fc4c3b;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-blue {
  background-color: #2e7de0;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-black {
  background-color: #000000;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-green {
  background-color: #64ce66;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Advantage .edNews_categoryBadge .EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Advantage h1 a, .eds_news_Advantage h2 a, .eds_news_Advantage h3 a, .eds_news_Advantage h4 a, .eds_news_Advantage h5 a, .eds_news_Advantage h6 a {
  display: inherit;
}
.eds_news_Advantage h1 a:not(.export, .rss):link, .eds_news_Advantage h1 a:not(.export, .rss):active, .eds_news_Advantage h1 a:not(.export, .rss):visited, .eds_news_Advantage h2 a:not(.export, .rss):link, .eds_news_Advantage h2 a:not(.export, .rss):active, .eds_news_Advantage h2 a:not(.export, .rss):visited, .eds_news_Advantage h3 a:not(.export, .rss):link, .eds_news_Advantage h3 a:not(.export, .rss):active, .eds_news_Advantage h3 a:not(.export, .rss):visited, .eds_news_Advantage h4 a:not(.export, .rss):link, .eds_news_Advantage h4 a:not(.export, .rss):active, .eds_news_Advantage h4 a:not(.export, .rss):visited, .eds_news_Advantage h5 a:not(.export, .rss):link, .eds_news_Advantage h5 a:not(.export, .rss):active, .eds_news_Advantage h5 a:not(.export, .rss):visited, .eds_news_Advantage h6 a:not(.export, .rss):link, .eds_news_Advantage h6 a:not(.export, .rss):active, .eds_news_Advantage h6 a:not(.export, .rss):visited {
  color: inherit !important;
  font: inherit;
}
.eds_news_Advantage h1 a:not(.export, .rss):hover, .eds_news_Advantage h2 a:not(.export, .rss):hover, .eds_news_Advantage h3 a:not(.export, .rss):hover, .eds_news_Advantage h4 a:not(.export, .rss):hover, .eds_news_Advantage h5 a:not(.export, .rss):hover, .eds_news_Advantage h6 a:not(.export, .rss):hover {
  color: #10d7bf !important;
}
.eds_news_Advantage .edNews_thumbnailBadge {
  position: absolute;
  border-radius: 0 0.35rem 0.35rem 0;
  background-color: #fff;
  color: #3e4a59;
  left: 0;
  bottom: 10%;
  font-size: 1rem;
  text-transform: none;
  padding: 0.5rem 1.25rem;
}
.eds_news_Advantage .row .child_categories {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.eds_news_Advantage .edNews_tags a {
  margin: 5px 3px 5px 0;
  padding: 3px 10px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.75em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.5em;
  transition: all 150ms ease 0s;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #10d7bf;
  text-decoration: none;
  vertical-align: middle;
}
.eds_news_Advantage .edNews_tags a:link,
.eds_news_Advantage .edNews_tags a:active,
.eds_news_Advantage .edNews_tags a:visited {
  color: #fff;
}
.eds_news_Advantage .edNews_tags a:hover {
  background-color: #0ebfaa;
}
.eds_news_Advantage .edNews_tagCount {
  display: inline-block;
  margin: 0.2rem;
  padding: 0.2rem;
  border-radius: 0.7rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.5rem;
}
.eds_news_Advantage .edNews_overlayCardHeader {
  overflow: hidden;
}
.eds_news_Advantage .edNews_overlayCardHeaderContent {
  position: absolute;
  background-color: rgba(16, 215, 191, 0.7);
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem;
}
.eds_news_Advantage .edNews_cardHeaderDetails > i {
  margin-right: 0.5rem;
  color: rgba(0, 0, 0, 0.3);
}
.eds_news_Advantage .card-header-image .edNews_overlayCardHeaderContent {
  top: -30px;
}
.eds_news_Advantage time.small > i {
  font-size: 1rem;
}
.eds_news_Advantage .edNews_galleryBackLinkWrapper {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 1rem;
}
.eds_news_Advantage .edNews_detailsList {
  overflow: hidden;
  margin: 0.5rem 0;
}
.eds_news_Advantage .edNews_detailsList li {
  list-style-type: none;
  width: 50%;
  float: left;
  padding: 0.2rem;
  overflow: hidden;
}
.eds_news_Advantage .edNews_detailsList li > i,
.eds_news_Advantage .edNews_detailsList li > span {
  padding: 0.5rem 0;
}
.eds_news_Advantage .edNews_detailsList li > i {
  float: left;
  margin-top: 0.2rem;
}
.eds_news_Advantage .edNews_detailsList li > span {
  border-bottom: solid 1px #e2e2e2;
  display: block;
  overflow: hidden;
}
.eds_news_Advantage .edNews_detailsList li > span > strong {
  font-weight: 900;
  color: #3C4858;
}
.eds_news_Advantage .edNews_detailsList li:nth-child(2n+1) {
  padding-right: 2rem;
}
.eds_news_Advantage .edNews_detailsList li:nth-child(2n) {
  border-left: 1px solid #10d7bf;
  padding-left: 2rem;
}
.eds_news_Advantage .edNews_articleFlag {
  float: left;
  margin: -0.25rem 2rem 0 -1.5rem;
}
.eds_news_Advantage .edNews_articleFlag ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox {
  padding: 0;
  margin: 0;
  height: 3rem;
  list-style-type: none;
  display: none;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font: 600 1.2rem/3rem "Roboto Slab", "Times New Roman", serif;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox .EDN_cf_checkbox_icon {
  display: none;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox .EDN_cf_checkbox_label {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  display: inline-block;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox::before, .eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox::after {
  content: "";
  position: absolute;
  display: inline-block;
  border: solid;
  z-index: 0;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox::before {
  top: -0.5rem;
  left: -0.5rem;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-width: 0.5rem;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox::after {
  height: 3rem;
  top: 0;
  right: -0.75rem;
  bottom: 0;
  border-width: 1.5rem 0.75rem;
  border-right-color: transparent !important;
  border-left-color: transparent !important;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked {
  display: block;
  margin: 0.5rem 0;
  background-color: #10d7bf;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked .EDN_cf_checkbox_label {
  background-color: #10d7bf;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked::before {
  border-color: #0ebfaa;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked::after {
  border-color: #10d7bf;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(2) {
  background-color: #ff9800;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(2) .EDN_cf_checkbox_label {
  background-color: #ff9800;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(2)::before {
  border-color: #d77000;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(2)::after {
  border-color: #ff9800;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(3) {
  background-color: #4caf50;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(3) .EDN_cf_checkbox_label {
  background-color: #4caf50;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(3)::before {
  border-color: #248728;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(3)::after {
  border-color: #4caf50;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(4) {
  background-color: #f44336;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(4) .EDN_cf_checkbox_label {
  background-color: #f44336;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(4)::before {
  border-color: #cc1b0e;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(4)::after {
  border-color: #f44336;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(5) {
  background-color: #00bcd4;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(5) .EDN_cf_checkbox_label {
  background-color: #00bcd4;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(5)::before {
  border-color: #0094ac;
}
.eds_news_Advantage .edNews_articleFlag .EDN_cf_checkbox_checked:nth-child(5)::after {
  border-color: #00bcd4;
}
.eds_news_Advantage .edNews_cfTable {
  border: solid 3px #10d7bf;
  display: flex;
  align-items: stretch;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_cfTable {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_cfTable {
    font-size: 0.8rem;
  }
}
.eds_news_Advantage .edNews_cfTable > div {
  align-items: center;
  display: flex;
  padding: 3rem 1rem;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_cfTable > div {
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 992px) {
  .eds_news_Advantage .edNews_cfTable > div {
    padding: 1.5rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_cfTable > div {
    padding: 1rem 0.5rem;
  }
}
.eds_news_Advantage .edNews_cfTable > div + div {
  border-left: solid 3px #10d7bf;
}
.eds_news_Advantage .edNews_cfTable .edNews_prominentCell {
  background-color: #10d7bf;
  flex-grow: 2;
  font-size: 2rem;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_cfTable .edNews_prominentCell {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_cfTable .edNews_prominentCell {
    font-size: 1rem;
  }
}
.eds_news_Advantage .edNews_cfTable .edNews_prominentCell,
.eds_news_Advantage .edNews_cfTable .edNews_prominentCell .title {
  color: #fff;
}
.eds_news_Advantage .edNews_cfTable .edNews_prominentCell .edNews_cfIcon,
.eds_news_Advantage .edNews_cfTable .edNews_prominentCell .title .edNews_cfIcon {
  color: rgba(0, 0, 0, 0.4);
}
.eds_news_Advantage .edNews_cfTable .edNews_cfIcon {
  margin-right: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_cfTable .edNews_cfIcon {
    display: block;
    margin-right: 0;
  }
}

.eds_news_Advantage .edNews_oddEven .edNews_articleImage {
  margin-bottom: 1rem;
}
.eds_news_Advantage .edNews_oddEven > article:nth-child(odd) .edNews_articleImage {
  float: left;
  margin-right: 2rem;
}
.eds_news_Advantage .edNews_oddEven > article:nth-child(even) .edNews_articleImage {
  float: right;
  margin-left: 2rem;
}
.eds_news_Advantage .edNews_defaultList .edNews_summary p {
  display: inline;
}
.eds_news_Advantage .edNews_timeLineArticle .edNews_article:first-child .edNews_timeLine::after {
  top: 50%;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineArticle .edNews_article:first-child .edNews_timeLine::after {
    top: 3rem;
  }
}
.eds_news_Advantage .edNews_timeLineArticle .edNews_article:last-child .edNews_timeLine::after {
  bottom: 50%;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineArticle .edNews_article:last-child .edNews_timeLine::after {
    bottom: calc(100% - 3rem);
  }
}
.eds_news_Advantage .edNews_timeLineArticle .edNews_startTime {
  white-space: nowrap;
  font-size: 2.8rem;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_timeLineArticle .edNews_startTime {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineArticle .edNews_startTime {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineRow {
    position: relative;
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineRow .edNews_additionalCardsArticleContent {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLineRow .edNews_additionalCardsArticleContent .h3 {
    font-size: 1.1rem;
  }
}
.eds_news_Advantage .edNews_timeLine {
  position: relative;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLine {
    position: static;
  }
}
.eds_news_Advantage .edNews_timeLine::before, .eds_news_Advantage .edNews_timeLine::after {
  position: absolute;
  content: "";
  background-color: #d7d7d7;
  display: block;
}
.eds_news_Advantage .edNews_timeLine::before {
  width: 1.6rem;
  height: 3px;
  top: 50%;
  right: 1rem;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLine::before {
    right: auto;
    left: 0;
    top: 3rem;
  }
}
.eds_news_Advantage .edNews_timeLine::after {
  width: 3px;
  top: 0;
  right: 1.75rem;
  bottom: 0;
}
@media (max-width: 768px) {
  .eds_news_Advantage .edNews_timeLine::after {
    right: auto;
    left: 0.75rem;
    top: 0;
  }
}
.eds_news_Advantage .edNews_additionalCardsArticleContent .edNews_summary p {
  display: inline;
}
.eds_news_Advantage .edNews_additionalCardsArticleContent .edNews_summary p + p {
  display: block;
}
.eds_news_Advantage .edNews_additionalCardsLeftImage {
  margin-left: 5rem;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_additionalCardsLeftImage {
    margin-left: 2rem;
  }
}
.eds_news_Advantage .edNews_additionalCardsLeftImage .edNews_additionalCardsImage {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
  margin-left: -6rem;
  float: left;
}
@media (max-width: 1200px) {
  .eds_news_Advantage .edNews_additionalCardsLeftImage .edNews_additionalCardsImage {
    max-width: 40%;
    margin-left: -3rem;
    margin-right: 1rem;
  }
}
@media (max-width: 992px) {
  .eds_news_Advantage .edNews_additionalCardsLeftImage .edNews_additionalCardsImage {
    max-width: 30%;
  }
}

.eds_news_Advantage.eds_subCollection_news .article_pager,
.eds_news_Advantage.eds_subCollection_news .article_pagination table {
  padding: 2rem 0;
}
.eds_news_Advantage.eds_subCollection_news .article_pager a,
.eds_news_Advantage.eds_subCollection_news .article_pagination a,
.eds_news_Advantage.eds_subCollection_news .article_pagination span {
  border: none;
  border-radius: 30px;
  transition: all 0.3s;
  padding: 0px 11px;
  margin: 0 3px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  color: #999999;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  background: transparent;
  text-align: center;
}
.eds_news_Advantage.eds_subCollection_news .article_pager a,
.eds_news_Advantage.eds_subCollection_news .article_pagination a {
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_news .article_pager a:hover,
.eds_news_Advantage.eds_subCollection_news .article_pagination a:hover {
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_news .article_pagination {
  overflow: hidden;
}
.eds_news_Advantage.eds_subCollection_news .article_pager {
  display: flex;
  justify-content: center;
}
.eds_news_Advantage.eds_subCollection_news .article_pager a.active,
.eds_news_Advantage.eds_subCollection_news .article_pagination span {
  background-color: #10d7bf;
  color: #fff;
  box-shadow: 0 4px 5px 0 rgba(16, 215, 191, 0.14), 0 1px 10px 0 rgba(16, 215, 191, 0.12), 0 2px 4px -1px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper,
.eds_news_Advantage .edsgg__loadMediaWrapper {
  text-align: center;
  padding: 1rem 0;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger {
  position: relative;
  padding: 0;
  background: none #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-appearance: none;
  overflow: hidden;
  width: 100%;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger > span,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span {
  color: #999;
  font-size: 0.75rem;
  line-height: 1.42857;
  font-weight: 400;
  display: block;
  padding: 12px 30px;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger:hover,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover {
  box-shadow: 0 14px 26px -12px rgba(16, 215, 191, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .actionTextContainer,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTriggerText {
  background-color: #fff;
  transition: all 200ms linear;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .loadingOverlay,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTriggerOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  opacity: 0;
  transition: opacity 200ms linear;
  background-color: rgba(255, 255, 255, 0.8);
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .loadingOverlay::before,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTriggerOverlay::before {
  content: "\f021";
  display: inline-block;
  margin-right: 1rem;
  font-family: Font Awesome\ 5 Free;
  line-height: 0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger:hover .actionTextContainer,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText {
  color: #fff;
  background-color: #10d7bf;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper.loading .edNews_loadMoreTrigger .loadingOverlay,
.eds_news_Advantage .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger.loading .edsgg__loadMediaTriggerOverlay {
  opacity: 1;
  top: 0;
}
.eds_news_Advantage .edNews_loadMoreTriggerWrapper.hide,
.eds_news_Advantage .edsgg__loadMediaWrapper.hide {
  display: none;
}
.eds_news_Advantage .edNews_prevNextPagination {
  width: 4.8rem;
  font-size: 1.1rem;
  display: flex;
}
.eds_news_Advantage .edNews_prevNextPagination > span {
  display: inline-block;
  color: #10d7bf;
  background-color: #f0f0f0;
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
  text-align: center;
  line-height: 2.4rem;
}
.eds_news_Advantage .edNews_prevNextPagination > span:hover {
  background-color: #10d7bf;
  color: #fff;
}
.eds_news_Advantage .edNews_prevNextPagination > span > i + span {
  display: none;
}
.eds_news_Advantage .edNews_prevNextPagination > span:first-child {
  border-radius: 1.2rem 0 0 1.2rem;
}
.eds_news_Advantage .edNews_prevNextPagination > span:last-child {
  border-radius: 0 1.2rem 1.2rem 0;
}

.eds_news_Advantage .edn_article_gallery ul {
  margin: 1rem -0.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.eds_news_Advantage .edn_article_gallery ul li {
  list-style-type: none;
  margin: 0.5rem;
}
.eds_news_Advantage .edn_article_gallery ul li img {
  border-radius: 6px;
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.eds_news_Advantage .in_article_image {
  position: relative;
  margin: 1rem 0 2rem;
  margin-right: 2rem;
}
.eds_news_Advantage .in_article_image img {
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
}
.eds_news_Advantage .in_article_image .image_wrapper > a {
  display: block;
  position: relative;
  text-align: center;
}
.eds_news_Advantage .in_article_image .image_wrapper > a::after {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3rem;
  right: -1rem;
  width: 2.5rem;
  height: 6rem;
  background-color: #10d7bf;
  content: "+";
  color: #fff;
  line-height: 6rem;
  font-size: 2rem;
  border-radius: 2px;
}
.eds_news_Advantage .in_article_image .image_wrapper > a:hover::after {
  background-color: #0ebfaa;
}
.eds_news_Advantage .in_article_image.left, .eds_news_Advantage .in_article_image.right {
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}
.eds_news_Advantage .in_article_image.left {
  margin: 0.3rem 2rem 1rem 0;
}
.eds_news_Advantage .in_article_image.right {
  float: right;
  margin: 0.3rem 0 1rem 2rem;
}
.eds_news_Advantage .in_article_image.right .image_wrapper > a::after {
  right: auto;
  left: -1rem;
}
.eds_news_Advantage .image_title,
.eds_news_Advantage .image_description {
  padding: 1rem;
  margin: 0;
}
.eds_news_Advantage .image_title {
  font-size: 1rem;
}
.eds_news_Advantage .image_title + .image_description {
  padding-top: 0;
  margin-top: -0.5rem;
}
.eds_news_Advantage .image_description {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.2;
}
.eds_news_Advantage .button {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 10px 0 0 5px;
  font-size: 0;
  text-decoration: none;
  transition: color 300ms;
  color: #3f3f3f;
}
.eds_news_Advantage .button::before {
  font: 900 1.2rem/1 Font Awesome\ 5 Free;
  transition: color 300ms;
}
.eds_news_Advantage .button,
.eds_news_Advantage a.button:link,
.eds_news_Advantage a.button:active,
.eds_news_Advantage a.button:visited {
  color: #3f3f3f;
  text-decoration: none;
}
.eds_news_Advantage .button:hover,
.eds_news_Advantage a.button:link:hover,
.eds_news_Advantage a.button:active:hover,
.eds_news_Advantage a.button:visited:hover {
  text-decoration: none;
  color: #10d7bf;
}
.eds_news_Advantage .button ~ .button,
.eds_news_Advantage a.button:link ~ .button,
.eds_news_Advantage a.button:active ~ .button,
.eds_news_Advantage a.button:visited ~ .button {
  margin-left: 1rem;
}
.eds_news_Advantage .button.author_rss::before {
  content: "\f09e";
}
.eds_news_Advantage .button.contact::before {
  content: "\f0e0";
}
.eds_news_Advantage .button.full_bio::before {
  content: "\f007";
}
.eds_news_Advantage .button.social::before {
  font-weight: 400;
  font-family: "Font Awesome 5 Brands";
}
.eds_news_Advantage .button.social.facebook::before {
  content: "\f39e";
}
.eds_news_Advantage .button.social.twitter::before {
  content: "\f099";
}
.eds_news_Advantage .button.social.linked_in::before {
  content: "\f0e1";
}
.eds_news_Advantage .button.social.google_plus::before {
  content: "\f0d5";
}
.eds_news_Advantage .button.social.youtube::before {
  content: "\f167";
}
.eds_news_Advantage .button.social.instagram::before {
  content: "\f16d";
}
.eds_news_Advantage .button.social.website::before {
  content: "\f0c1";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
}
.eds_news_Advantage .button.author_rss,
.eds_news_Advantage .button.edsgg_buttonLink,
.eds_news_Advantage .edsgg_addThisButton > a {
  background-color: #efefef;
  width: 30px;
  height: 30px;
  border-radius: 15px;
}
.eds_news_Advantage .button.author_rss:link, .eds_news_Advantage .button.author_rss:active, .eds_news_Advantage .button.author_rss:visited,
.eds_news_Advantage .button.edsgg_buttonLink:link,
.eds_news_Advantage .button.edsgg_buttonLink:active,
.eds_news_Advantage .button.edsgg_buttonLink:visited,
.eds_news_Advantage .edsgg_addThisButton > a:link,
.eds_news_Advantage .edsgg_addThisButton > a:active,
.eds_news_Advantage .edsgg_addThisButton > a:visited {
  color: #10d7bf;
  text-decoration: none;
}
.eds_news_Advantage .button.author_rss:link:hover, .eds_news_Advantage .button.author_rss:active:hover, .eds_news_Advantage .button.author_rss:visited:hover,
.eds_news_Advantage .button.edsgg_buttonLink:link:hover,
.eds_news_Advantage .button.edsgg_buttonLink:active:hover,
.eds_news_Advantage .button.edsgg_buttonLink:visited:hover,
.eds_news_Advantage .edsgg_addThisButton > a:link:hover,
.eds_news_Advantage .edsgg_addThisButton > a:active:hover,
.eds_news_Advantage .edsgg_addThisButton > a:visited:hover {
  text-decoration: none;
  color: #3f3f3f;
}
.eds_news_Advantage .button.author_rss::before,
.eds_news_Advantage .button.edsgg_buttonLink::before,
.eds_news_Advantage .edsgg_addThisButton > a::before {
  line-height: 30px;
  font-size: 1rem;
}
.eds_news_Advantage .button.edsgg_buttonLink i {
  line-height: 30px;
  font-size: 1rem;
}
.eds_news_Advantage .button.edsgg_buttonLink i::before {
  font-size: inherit;
  line-height: inherit;
}
.eds_news_Advantage .edsgg_addThisButton > a {
  font-size: 0;
  text-align: center;
  display: inline-block;
}
.eds_news_Advantage .edsgg_addThisButton > a::before {
  font: 900 1rem/30px Font Awesome\ 5 Free;
  content: "\f1e0";
}

.eds_news_Advantage .edNews__itemCommentsWrapper {
  margin: 0 auto;
}
.eds_news_Advantage .edNews__itemCommentsWrapper.edNews__showComments .edNews__itemCommentContainer {
  display: block;
}
.eds_news_Advantage .edNews__itemCommentContainer:first-child, .eds_news_Advantage .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Advantage .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_adminEdit .edNews__commentContent {
  display: none;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_adminEdit .edNews_commentActions.main {
  display: none;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__editingComment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_adminEdit {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Advantage .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
  border: dashed 1px #ddd;
  background-color: #fff3ec;
  padding: 1rem;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_commentActions {
  margin: 1rem 0 0;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews__editCommentContent {
  width: 100%;
  padding: 1rem;
  outline: none;
  box-shadow: none;
  border: solid 1px #ddd;
  font: 0.9rem/1.3 Arial;
  resize: vertical;
  color: #3C4858;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews__editCommentContent:hover, .eds_news_Advantage .edNews__editCommentContainer .edNews__editCommentContent:focus {
  border-color: #333;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Advantage .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Advantage .edNews_commentText {
  color: #999999;
}
.eds_news_Advantage .edNews__childCommentsContainer {
  margin-left: 8%;
}
.eds_news_Advantage .edNews__childCommentsContainer .edNews__childCommentsContainer {
  margin-left: 0;
}
.eds_news_Advantage .edNews__childCommentsContainer .media {
  font-size: 0.9em;
}
.eds_news_Advantage .edNews__childCommentsContainer .media .avatar {
  width: 40px;
  height: 40px;
}
.eds_news_Advantage .edNews__childCommentsContainer .media .media-heading {
  font-size: 1em;
}
.eds_news_Advantage .edNews__itemCommentContainer {
  margin-bottom: 1rem;
}
.eds_news_Advantage .edNews__itemCommentContainer .edNews__childCommentsContainer {
  margin-bottom: 1rem;
}
.eds_news_Advantage .edNews__itemCommentContainer.edNews__noChildComments .edNews__childCommentsContainer {
  display: none;
}
.eds_news_Advantage .edNews__commentsListContainer > .edNews__itemCommentContainer > .edNews__childCommentsContainer > .edNews__itemCommentContainer > .edNews__childCommentsContainer > .edNews__itemCommentContainer .edNews__childCommentsContainer {
  padding-left: 0;
  margin-left: 4%;
}
.eds_news_Advantage .edNews_userAvatar > a {
  display: block;
}
.eds_news_Advantage .edNews_userAvatar img {
  width: 100%;
  height: auto;
  max-width: none;
}
.eds_news_Advantage .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Advantage .edNews_commentDetails .edNews_commentersName {
  color: #3f3f3f;
  margin: 0 0 0.5rem;
}
.eds_news_Advantage .edNews_commentDetails .edNews_commentDateAdded {
  color: #10d7bf;
}
.eds_news_Advantage .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Advantage .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Advantage .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Advantage .edNews_errorMessage {
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  color: #ac171e;
}
.eds_news_Advantage .edNews_errorMessage.show {
  display: block;
}
.eds_news_Advantage .edNews__replyingToMessage,
.eds_news_Advantage .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;
  color: #3C4858;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #10d7bf;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Advantage .edNews__replyingToMessage > a,
.eds_news_Advantage .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Advantage .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Advantage .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 1.2rem;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Advantage/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  vertical-align: top;
  font-size: 1rem;
  font-weight: normal;
  color: #7b7b7b;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
@media (max-width: 576px) {
  .eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  background: none #fdfdfd;
  border: 2px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
    width: 100%;
  }
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus,
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  background-color: #10d7bf;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 16px;
  overflow: hidden;
  padding: 1rem 2rem;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: Font Awesome\ 5 Free;
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "\f007";
  position: absolute;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div {
  position: relative;
  z-index: 2;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div img {
  width: 65px;
  height: 65px;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper textarea {
  float: left;
  height: 65px;
  margin-top: -65px;
  padding-left: 75px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper.edNews__replyingToComment .edNews__replyingToMessage {
  display: block;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper.edNews__addingComment,
.eds_news_Advantage .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_adminEdit,
.eds_news_Advantage .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_adminEdit {
  position: relative;
}
.eds_news_Advantage .edNews__commentsCommentFormWrapper.edNews__addingComment::after,
.eds_news_Advantage .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_adminEdit::after,
.eds_news_Advantage .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_adminEdit::after {
  position: absolute;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Advantage/assets/images/common/comments/loadingBigger.gif") center center no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
}
.eds_news_Advantage .edNews_votes {
  text-align: right;
  display: inline-block;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger {
  color: #bababa;
  font-size: 1rem;
  margin-right: 1rem;
  transition: color 300ms;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger .edNews_numberVotes {
  font-size: 0.9rem;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger {
  display: inline-block;
  cursor: pointer;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger > * {
  vertical-align: middle;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger + .edNews__commentVoting_trigger {
  margin-left: 2rem;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger:hover .edNews_actionIcon {
  color: #64ce66;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_voted .edNews_actionIcon {
  color: #64ce66;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_downvote:hover .edNews_actionIcon {
  color: #f44336;
}
.eds_news_Advantage .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_downvote.edNews__commentVoting_voted .edNews_actionIcon {
  color: #f44336;
}
.eds_news_Advantage .edNews_commentActions {
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Advantage .edNews_commentActions > span {
  padding: 0.40625rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #10d7bf;
  text-transform: uppercase;
  letter-spacing: 0;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  margin: 0.5rem;
}
.eds_news_Advantage .edNews_commentActions > span:hover {
  color: #0ebfaa;
}
.eds_news_Advantage .edNews_commentActions > span::before {
  font-weight: 900;
  font-family: Font Awesome\ 5 Free;
  font-size: 0.6875rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.eds_news_Advantage .edNews_commentActions .edNews__replyComment:before {
  content: "\f3e5";
}
.eds_news_Advantage .edNews_commentActions .edNews__editComment {
  color: #ff9800;
}
.eds_news_Advantage .edNews_commentActions .edNews__editComment:hover {
  color: #eb8400;
}
.eds_news_Advantage .edNews_commentActions .edNews__editComment::before {
  content: "\f044";
}
.eds_news_Advantage .edNews_commentActions .edNews__deleteComment {
  color: #f44336;
}
.eds_news_Advantage .edNews_commentActions .edNews__deleteComment:hover {
  color: #e02f22;
}
.eds_news_Advantage .edNews_commentActions .edNews__deleteComment::before {
  content: "\f2ed";
}
.eds_news_Advantage .edNews_commentActions .edNews__editComment,
.eds_news_Advantage .edNews_commentActions .edNews__deleteComment {
  font-size: 0;
}
.eds_news_Advantage .edNews_commentActions .edNews__editCommentSaveTrigger {
  color: #00bcd4;
}
.eds_news_Advantage .edNews_commentActions .edNews__editCommentSaveTrigger:hover {
  color: #00a8c0;
}
.eds_news_Advantage .edNews_commentActions .edNews__editCommentCancelTrigger {
  color: #f44336;
}
.eds_news_Advantage .edNews_commentActions .edNews__editCommentCancelTrigger:hover {
  color: #f44336;
}
.eds_news_Advantage .edNews__showCommentsTrigger .edNews_commentCollapsed {
  display: none;
}
.eds_news_Advantage .edNews__commentscollapsed .edNews_commentCollapsed {
  display: inline;
}
.eds_news_Advantage .edNews__commentscollapsed .edNews_commentExpanded {
  display: none;
}
.eds_news_Advantage .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Advantage .edn__recentCommentsListContainer::before, .eds_news_Advantage .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Advantage .edn__recentCommentsListContainer::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Advantage .edn__recentCommentsListContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: Font Awesome\ 5 Free;
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #10d7bf;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Advantage .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  transition: opacity 500ms;
}
.eds_news_Advantage .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto", "Helvetica", "Arial", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #10d7bf;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #10d7bf;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 Font Awesome\ 5 Free;
  color: #2c2c2c;
  content: "\f0da";
  margin-right: 5px;
}
.eds_news_Advantage .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  display: none;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  display: none;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_prevNextPagination, .eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_contentError .edn_prevNextPagination, .eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_noContent .edn_prevNextPagination {
  display: none;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Advantage.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Advantage .article_comments > .num_of_comment {
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.11);
  padding: 1rem;
  background-color: #fff;
  margin: 4rem 0 3rem;
  border-radius: 0.5rem;
}
.eds_news_Advantage .article_comments > .num_of_comment > a {
  display: inline;
  text-decoration: underline;
}

.eds_news_Advantage .edNews_votingRating {
  font-size: 0;
}
.eds_news_Advantage .article_rating {
  margin-left: 1rem;
  float: left;
}
.eds_news_Advantage .current_rating {
  font-size: 0.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  color: #808080;
}
.eds_news_Advantage .rateit .rateit-range,
.eds_news_Advantage .rateit .rateit-selected,
.eds_news_Advantage .rateit .rateit-hover {
  background: none transparent;
  vertical-align: middle;
  overflow: hidden;
}
.eds_news_Advantage .rateit .rateit-range::before,
.eds_news_Advantage .rateit .rateit-selected::before,
.eds_news_Advantage .rateit .rateit-hover::before {
  display: block;
  font: 900 14px/1 Font Awesome\ 5 Free;
  content: "\f005\f005\f005\f005\f005";
  position: absolute;
  letter-spacing: 0;
  transition: color 300ms;
}
.eds_news_Advantage .rateit .rateit-range::before {
  color: #eee;
}
.eds_news_Advantage .rateit .rateit-hover::before {
  font-weight: 400;
  color: #10d7bf;
}
.eds_news_Advantage .rateit .rateit-selected::before {
  color: #10d7bf;
}
.eds_news_Advantage .edn_ArticleVoting {
  margin-left: 1rem;
  float: right;
}
.eds_news_Advantage .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}
.eds_news_Advantage .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_Advantage .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: 0.8rem;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_Advantage .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_Advantage .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_Advantage .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_Advantage .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_Advantage .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_Advantage .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_Advantage .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_Advantage .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_Advantage .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_Advantage .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_Advantage .edn_ArticleVoting > span:hover > i {
  color: #10d7bf;
}

.eds_news_Advantage .edNews_eventDetails .edNews_eventPrice {
  top: 0;
  right: 0;
}
.eds_news_Advantage .edNews_eventDetails .edNews_eventHeader {
  background: none #fff;
  position: relative;
}
.eds_news_Advantage .edNews_eventDetails .edNews_eventHeader .pro-badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
}
.eds_news_Advantage .edNews_eventDetails .edNews_eventLocation {
  padding: 5px 0 0;
  margin: 0;
}
.eds_news_Advantage .edNews_eventDetails .edNews_eventLocation:before {
  content: "\f041";
  font-family: Font Awesome\ 5 Free;
  color: #10d7bf;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  font-style: normal;
}
.eds_news_Advantage .edNews_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .edNews_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Advantage .edNews_eventDetails .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_Advantage .edNews_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Advantage .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Advantage .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Advantage .edn_listEventDetails > span:before {
  font-family: Font Awesome\ 5 Free;
  color: #10d7bf;
  margin-right: 5px;
}
.eds_news_Advantage .edn_listEventDetails > span.edNews_eventLocation:before {
  content: "\f041";
}
.eds_news_Advantage .edn_listEventDetails > span.edn_eventDate:before {
  content: "\f017";
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger {
  display: inline-block;
  padding: 12px 30px;
  margin: 0.3125rem 1px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.42857143;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 0.2rem;
  outline: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
  border-color: currentColor;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger.focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger:active, .eds_news_Advantage .edn_eventRegistrationModalTrigger.active, .open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle, .show > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger:active:hover, .eds_news_Advantage .edn_eventRegistrationModalTrigger:active:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger:active.focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger.active:hover, .eds_news_Advantage .edn_eventRegistrationModalTrigger.active:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger.active.focus, .open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle:hover, .open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle:focus, .open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle.focus, .show > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle:hover, .show > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle:focus, .show > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle.focus {
  color: #fff;
  background-color: #f08f00;
  border-color: #804c00;
}
.open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #ff9800;
}
.open > .eds_news_Advantage .edn_eventRegistrationModalTrigger.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f08f00;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger.disabled:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger.disabled.focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger:disabled:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger:disabled.focus {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger.disabled:hover, .eds_news_Advantage .edn_eventRegistrationModalTrigger:disabled:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger:active, .eds_news_Advantage .edn_eventRegistrationModalTrigger:hover {
  box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2);
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger.btn-link {
  background-color: transparent;
  color: #ff9800;
  box-shadow: none;
}
.eds_news_Advantage .edn_eventRegistrationModalTrigger.btn-link:hover, .eds_news_Advantage .edn_eventRegistrationModalTrigger.btn-link:focus, .eds_news_Advantage .edn_eventRegistrationModalTrigger.btn-link:active {
  background-color: transparent;
  color: #ff9800;
}
.eds_news_Advantage .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Advantage .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Advantage .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Advantage .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Advantage .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding-left: 40px;
}
.eds_news_Advantage .eds_signUpActionBar > div > span > input[type=radio]:checked + label:before {
  transform: scale(1);
  opacity: 1;
}
.eds_news_Advantage .eds_signUpActionBar > div > span > label {
  display: inline-block;
  padding: 12px 30px;
  margin: 0.3125rem 1px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.42857143;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 30px;
  outline: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
  border-color: currentColor;
  border-style: solid;
  border-width: 1px;
  position: relative;
}
.eds_news_Advantage .eds_signUpActionBar > div > span > label:before {
  position: absolute;
  top: 25%;
  left: 10px;
  font: 900 1.2rem/1 Font Awesome\ 5 Free;
  font-family: Font Awesome\ 5 Free;
  text-align: center;
  opacity: 0;
  display: inline-block;
  transform: scale(0);
  transition: all 300ms;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle.focus {
  color: #fff;
  background-color: #47a44b;
  border-color: #255627;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #4caf50;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #47a44b;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:disabled.focus {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:disabled:hover {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover:hover {
  box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.btn-link {
  background-color: transparent;
  color: #4caf50;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover.btn-link:active {
  background-color: transparent;
  color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover {
  color: #fff;
  background-color: #f44336;
  border-color: #f44336;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle.focus {
  color: #fff;
  background-color: #f33527;
  border-color: #a21309;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #f44336;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f33527;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:disabled.focus {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:disabled:hover {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover:hover {
  box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.btn-link {
  background-color: transparent;
  color: #f44336;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover.btn-link:active {
  background-color: transparent;
  color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:hover {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle {
  color: #fff;
  background-color: #f08f00;
  border-color: #c27400;
  box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle.focus {
  color: #fff;
  background-color: #f08f00;
  border-color: #804c00;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #ff9800;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f08f00;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:disabled.focus {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:disabled:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover:hover {
  box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.btn-link {
  background-color: transparent;
  color: #ff9800;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover.btn-link:active {
  background-color: transparent;
  color: #ff9800;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle {
  color: #fff;
  background-color: #47a44b;
  border-color: #39843c;
  box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle.focus {
  color: #fff;
  background-color: #47a44b;
  border-color: #255627;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #4caf50;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #47a44b;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:disabled.focus {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:disabled:hover {
  background-color: #4caf50;
  border-color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:hover {
  box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.btn-link {
  background-color: transparent;
  color: #4caf50;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label.btn-link:active {
  background-color: transparent;
  color: #4caf50;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:before {
  content: "\f00c";
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label {
  color: #fff;
  background-color: #f44336;
  border-color: #f44336;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle {
  color: #fff;
  background-color: #f33527;
  border-color: #e11b0c;
  box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle.focus {
  color: #fff;
  background-color: #f33527;
  border-color: #a21309;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #f44336;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #f33527;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:disabled.focus {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:disabled:hover {
  background-color: #f44336;
  border-color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:hover {
  box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.btn-link {
  background-color: transparent;
  color: #f44336;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label.btn-link:active {
  background-color: transparent;
  color: #f44336;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:before {
  content: "\f00d";
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label {
  color: #fff;
  background-color: #10d7bf;
  border-color: #10d7bf;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.active, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:active.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.active:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.active:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.active.focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle:hover, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle:focus, .open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle.focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle:hover, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle:focus, .show > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle.focus {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #076056;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #10d7bf;
}
.open > .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #0fc9b2;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.disabled.focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:disabled:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:disabled.focus {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.disabled:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:disabled:hover {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:active, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:hover {
  box-shadow: 0 14px 26px -12px rgba(16, 215, 191, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.btn-link {
  background-color: transparent;
  color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.btn-link:hover, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.btn-link:focus, .eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label.btn-link:active {
  background-color: transparent;
  color: #10d7bf;
}
.eds_news_Advantage .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:before {
  content: "\f128";
}

.eds_news_Advantage .search_input::before {
  content: "\f002";
}
.eds_news_Advantage.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
}
.eds_news_Advantage.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Advantage/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 10% !important;
}
.eds_news_Advantage.eds_subCollection_search .search_input {
  padding: 1rem 1rem 1rem 4rem;
}
.eds_news_Advantage.eds_subCollection_search .search_input::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input {
  float: left;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text] {
  border: none;
  border-bottom: solid 1px #d2d2d2;
  outline: none;
  background: none transparent;
  box-shadow: none;
  line-height: 2rem;
  height: 2rem;
  font-size: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #aaa;
  transition: all 300ms;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text]::-moz-placeholder {
  color: inherit;
  font: inherit;
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text]::placeholder {
  color: inherit;
  font: inherit;
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text]:hover, .eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text]:focus {
  color: #3C4858;
  border-bottom-color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_search .search_input .input input[type=text]:focus {
  border-bottom-color: #10d7bf;
  box-shadow: 0 -1px 0 #10d7bf inset;
}
.eds_news_Advantage.eds_subCollection_search .search_input .do_search {
  line-height: 2rem;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  color: #a4a4a4;
  transition: all 300ms;
}
.eds_news_Advantage.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Advantage.eds_subCollection_search .search_input .do_search::before {
  content: "\f002";
  display: inline-block;
  vertical-align: middle;
  font: normal 900 1.2rem/2rem Font Awesome\ 5 Free;
}
.eds_news_Advantage.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
}
.eds_news_Advantage.eds_subCollection_search .search_input.button_outside .do_search {
  float: right;
  width: auto;
  min-width: auto;
}
.eds_news_Advantage.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline;
  vertical-align: middle;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container > span {
  display: block;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container > span,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 2rem;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container label {
  font: inherit;
  color: #10d7bf;
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  border-bottom: solid 1px #170d49;
  background-color: #fff;
  line-height: 2.5rem;
  padding-right: 35px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  color: #3f3f3f;
  width: 35px;
  z-index: 1;
  text-align: center;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:after {
  font: 900 1rem/2.5rem Font Awesome\ 5 Free;
  content: "\f0d7";
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  font-size: 0.9rem;
  line-height: 2.5rem;
  font-family: inherit;
  text-transform: uppercase;
  padding: 0 0.5rem;
  color: #170d49;
  height: 2.5rem;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  position: relative;
  overflow: hidden;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  outline: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  margin: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: none;
  outline: none;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open::after {
  content: "\f0d8";
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  margin-top: 1px;
  background-color: #fff;
  margin: 0.125rem 0 0;
  border-radius: 0.25rem;
  padding: 0.3125rem 0.6rem;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 0;
  overflow: auto;
}
.eds_news_Advantage .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_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Advantage .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: 25px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #aaa;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before, .eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::after {
  display: inline-block;
  position: absolute;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  content: "";
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.54);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  top: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::after {
  font-weight: 900;
  line-height: 1;
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  color: #10d7bf;
  transition: all 150ms;
  font-size: 0.8rem;
  top: 0;
  left: 6px;
  content: "\f00c";
  opacity: 0;
  transform: scale(0.5);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:hover::before {
  border-color: rgba(0, 0, 0, 0.9);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  border-color: rgba(0, 0, 0, 0.9);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::after {
  top: 4px;
  left: 4px;
  opacity: 1;
  transform: scale(1);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #170d49;
  padding: 0 0.5rem;
  line-height: 2rem;
  height: 2rem;
  color: rgb(73, 80, 87);
  width: 100%;
  background: none #fff;
  margin: 0;
  box-shadow: none;
  outline: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_MultiselectGroup .ms-parent > label,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  background-color: #c8c8c8;
  height: 2px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 0;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #10d7bf;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #10d7bf;
  background-color: #fff;
  height: 15px;
  width: 15px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -6px;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  transition: transform 150ms;
  cursor: pointer;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:hover {
  transform: scale(1.2);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  position: absolute;
  top: 20px;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #170d49;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  color: #eee;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input {
  display: none;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #aaa;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before, .eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::after,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::after {
  display: inline-block;
  position: absolute;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  content: "";
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.54);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::after,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::after {
  font-weight: 900;
  line-height: 1;
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  color: #10d7bf;
  transition: all 150ms;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:hover::before,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label:hover::before {
  border-color: rgba(0, 0, 0, 0.9);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  top: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::after {
  font-size: 0.8rem;
  top: 0;
  left: 6px;
  content: "\f00c";
  opacity: 0;
  transform: scale(0.5);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label::before {
  border-color: rgba(0, 0, 0, 0.9);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label::after {
  top: 4px;
  left: 4px;
  opacity: 1;
  transform: scale(1);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: 3px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::after {
  content: "\f111";
  top: 7px;
  left: 4px;
  opacity: 0;
  transform: scale(0.3);
  font-size: 9px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type=radio]:checked + label::before {
  border-color: #10d7bf;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type=radio]:checked + label::after {
  opacity: 1;
  transform: scale(1);
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #d2d2d2;
  padding: 0.4375rem 0;
  line-height: 30px;
  height: 30px;
  color: rgb(73, 80, 87);
  width: 100%;
  background: none #fff;
  margin: 0;
  box-shadow: none;
  outline: none;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #d2d2d2;
  background-color: #fff;
  height: 30px;
  padding: 0 11px;
  color: #10d7bf;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Advantage/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Advantage .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Advantage .edncf_submitContainer > a,
.eds_news_Advantage .search_input.button_outside .do_search {
  padding: 0.40625rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  border-color: #10d7bf;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  margin: 0.5rem;
  margin-top: 1rem;
  color: #fff;
  background-color: #10d7bf;
  border-color: #10d7bf;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .edncf_submitContainer > a:hover,
.eds_news_Advantage .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .edncf_submitContainer > a:focus, .eds_news_Advantage .edncf_submitContainer > a.focus, .eds_news_Advantage .edncf_submitContainer > a:hover,
.eds_news_Advantage .search_input.button_outside .do_search:focus,
.eds_news_Advantage .search_input.button_outside .do_search.focus,
.eds_news_Advantage .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
}
.eds_news_Advantage .edncf_submitContainer > a:active, .eds_news_Advantage .edncf_submitContainer > a.active, .open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle, .show > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle,
.eds_news_Advantage .search_input.button_outside .do_search:active,
.eds_news_Advantage .search_input.button_outside .do_search.active,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle,
.show > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #0c9e8c;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
}
.eds_news_Advantage .edncf_submitContainer > a:active:hover, .eds_news_Advantage .edncf_submitContainer > a:active:focus, .eds_news_Advantage .edncf_submitContainer > a:active.focus, .eds_news_Advantage .edncf_submitContainer > a.active:hover, .eds_news_Advantage .edncf_submitContainer > a.active:focus, .eds_news_Advantage .edncf_submitContainer > a.active.focus, .open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle:hover, .open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle:focus, .open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle.focus, .show > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle:hover, .show > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle:focus, .show > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle.focus,
.eds_news_Advantage .search_input.button_outside .do_search:active:hover,
.eds_news_Advantage .search_input.button_outside .do_search:active:focus,
.eds_news_Advantage .search_input.button_outside .do_search:active.focus,
.eds_news_Advantage .search_input.button_outside .do_search.active:hover,
.eds_news_Advantage .search_input.button_outside .do_search.active:focus,
.eds_news_Advantage .search_input.button_outside .do_search.active.focus,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle:hover,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle:focus,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle.focus,
.show > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle:hover,
.show > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle:focus,
.show > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle.focus {
  color: #fff;
  background-color: #0fc9b2;
  border-color: #076056;
}
.open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle.bmd-btn-icon,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #10d7bf;
}
.open > .eds_news_Advantage .edncf_submitContainer > a.dropdown-toggle.bmd-btn-icon:hover,
.open > .eds_news_Advantage .search_input.button_outside .do_search.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #0fc9b2;
}
.eds_news_Advantage .edncf_submitContainer > a.disabled:focus, .eds_news_Advantage .edncf_submitContainer > a.disabled.focus, .eds_news_Advantage .edncf_submitContainer > a:disabled:focus, .eds_news_Advantage .edncf_submitContainer > a:disabled.focus,
.eds_news_Advantage .search_input.button_outside .do_search.disabled:focus,
.eds_news_Advantage .search_input.button_outside .do_search.disabled.focus,
.eds_news_Advantage .search_input.button_outside .do_search:disabled:focus,
.eds_news_Advantage .search_input.button_outside .do_search:disabled.focus {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .edncf_submitContainer > a.disabled:hover, .eds_news_Advantage .edncf_submitContainer > a:disabled:hover,
.eds_news_Advantage .search_input.button_outside .do_search.disabled:hover,
.eds_news_Advantage .search_input.button_outside .do_search:disabled:hover {
  background-color: #10d7bf;
  border-color: #10d7bf;
}
.eds_news_Advantage .edncf_submitContainer > a:focus, .eds_news_Advantage .edncf_submitContainer > a:active, .eds_news_Advantage .edncf_submitContainer > a:hover,
.eds_news_Advantage .search_input.button_outside .do_search:focus,
.eds_news_Advantage .search_input.button_outside .do_search:active,
.eds_news_Advantage .search_input.button_outside .do_search:hover {
  box-shadow: 0 14px 26px -12px rgba(16, 215, 191, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .edncf_submitContainer > a.btn-link,
.eds_news_Advantage .search_input.button_outside .do_search.btn-link {
  background-color: transparent;
  color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage .edncf_submitContainer > a.btn-link:hover, .eds_news_Advantage .edncf_submitContainer > a.btn-link:focus, .eds_news_Advantage .edncf_submitContainer > a.btn-link:active,
.eds_news_Advantage .search_input.button_outside .do_search.btn-link:hover,
.eds_news_Advantage .search_input.button_outside .do_search.btn-link:focus,
.eds_news_Advantage .search_input.button_outside .do_search.btn-link:active {
  background-color: transparent;
  color: #10d7bf;
}
.eds_news_Advantage .edncf_submitContainer > a:link, .eds_news_Advantage .edncf_submitContainer > a:active, .eds_news_Advantage .edncf_submitContainer > a:visited,
.eds_news_Advantage .search_input.button_outside .do_search:link,
.eds_news_Advantage .search_input.button_outside .do_search:active,
.eds_news_Advantage .search_input.button_outside .do_search:visited {
  color: #fff;
}
.eds_news_Advantage .edncf_submitContainer > a::before,
.eds_news_Advantage .search_input.button_outside .do_search::before {
  padding-right: 0.40625rem;
  content: "\f002";
  display: inline-block;
  vertical-align: middle;
  font: normal 900 1.2rem/2rem Font Awesome\ 5 Free;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset {
  color: #fff;
  background-color: #999999;
  border-color: #999999;
  box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset:hover {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:hover {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset:active, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.active, .open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle, .show > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle {
  color: #fff;
  background-color: #919191;
  border-color: #7a7a7a;
  box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset:active:hover, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:active:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:active.focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.active:hover, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.active:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.active.focus, .open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle:hover, .open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle:focus, .open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle.focus, .show > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle:hover, .show > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle:focus, .show > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle.focus {
  color: #fff;
  background-color: #919191;
  border-color: #595959;
}
.open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle.bmd-btn-icon {
  color: inherit;
  background-color: #999999;
}
.open > .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.dropdown-toggle.bmd-btn-icon:hover {
  background-color: #919191;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset.disabled:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.disabled.focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:disabled:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:disabled.focus {
  background-color: #999999;
  border-color: #999999;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset.disabled:hover, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:disabled:hover {
  background-color: #999999;
  border-color: #999999;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:active, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset:hover {
  box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2);
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset.btn-link {
  background-color: transparent;
  color: #999999;
  box-shadow: none;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset.btn-link:hover, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.btn-link:focus, .eds_news_Advantage .edncf_submitContainer > a.edncf_reset.btn-link:active {
  background-color: transparent;
  color: #999999;
}
.eds_news_Advantage .edncf_submitContainer > a.edncf_reset::before {
  content: "\f01e";
  font-size: inherit;
}
.eds_news_Advantage .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Advantage .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Advantage .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item {
  background-color: #10d7bf;
  border-color: #10d7bf;
  color: #fff;
  box-shadow: 0 4px 5px 0 rgba(16, 215, 191, 0.14), 0 1px 10px 0 rgba(16, 215, 191, 0.12), 0 2px 4px -1px rgba(16, 215, 191, 0.2);
}
.eds_news_Advantage .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  visibility: visible;
  opacity: 1;
  top: auto;
  bottom: 100%;
}
.eds_news_Advantage .ednSbl_search span.ednSbl_item {
  color: #ddd;
}
.eds_news_Advantage .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Advantage .ednSbl_search .ednSbl_item {
  border: 0;
  border-radius: 30px;
  transition: all 0.3s;
  padding: 0px 11px;
  margin: 0 3px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  color: #999999;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  background: transparent;
  text-align: center;
  position: relative;
  display: block;
}
.eds_news_Advantage .ednSbl_search .ednSbl_item .ednSbl_count {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: #10d7bf;
  color: #fff;
  padding: 0.3rem 0.9rem;
  transition: all 300ms;
  left: 50%;
  bottom: 50%;
  transform: translateX(-50%);
  line-height: 1;
  border-radius: 0.2rem;
}
.eds_news_Advantage .ednSbl_search .ednSbl_item .ednSbl_count::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: solid 4px transparent;
  border-top-color: #10d7bf;
  margin-left: -4px;
}
.eds_news_Advantage .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_Advantage .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Advantage {
  padding: 0px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.11);
  border-radius: 0.3rem;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Advantage ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Advantage ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Advantage ul li + li {
  border-top: solid 1px rgba(0, 0, 0, 0.5);
}
.EDN_search.theme_Advantage ul li span a {
  padding: 0.2rem 1rem;
  display: block;
  font-size: 0.8rem;
  color: #3C4858;
  text-decoration: none;
  transition: all 300ms linear;
}
.EDN_search.theme_Advantage ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Advantage ul li.acSelect a {
  color: #10d7bf;
}

.eds_news_Advantage .edn_moduleList {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Advantage .edn_moduleList li {
  list-style-type: none !important;
  margin: 0.3rem 0;
  padding: 0.2rem 0;
}
.eds_news_Advantage .edn_moduleList li.hasChild {
  cursor: pointer;
}
.eds_news_Advantage .edn_moduleList li ul {
  margin-left: 0.5rem;
}
.eds_news_Advantage .edn_moduleList li > div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.eds_news_Advantage .edn_moduleList li > div a {
  display: none;
  outline: none;
  text-decoration: none;
}
.eds_news_Advantage .edn_moduleList li > div.edn_hasCount {
  padding-right: 3rem;
}
.eds_news_Advantage .edn_moduleList > li {
  background-color: rgba(0, 0, 0, 0.025);
}
.eds_news_Advantage .edn_moduleList .edn_link {
  font: 0.9rem/1.1 "Roboto", "Helvetica", "Arial", sans-serif;
  transition: color 300ms;
  display: inline;
  padding: 0.5rem;
  text-decoration: none;
}
.eds_news_Advantage .edn_moduleList .edn_link:link, .eds_news_Advantage .edn_moduleList .edn_link:active, .eds_news_Advantage .edn_moduleList .edn_link:visited {
  color: #3f3f3f;
}
.eds_news_Advantage .edn_moduleList .edn_link:hover {
  color: #10d7bf;
  text-decoration: none;
}
.eds_news_Advantage .edn_moduleList .opened > div > .edn_link,
.eds_news_Advantage .edn_moduleList .active > div > .edn_link {
  color: #10d7bf;
}
.eds_news_Advantage .edn_moduleList .opened > div > .edn_link .edn_articleCount,
.eds_news_Advantage .edn_moduleList .active > div > .edn_link .edn_articleCount {
  background-color: #10d7bf;
}
.eds_news_Advantage .edn_moduleList .edn_articleCount {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  background-color: #c8c8c8;
  border-radius: 0.1rem;
  text-align: center;
  padding: 0.3rem 0;
  font: 0.8rem/1 "Roboto", "Helvetica", "Arial", sans-serif;
  color: #fff;
  display: inline-block;
  min-width: 2rem;
}
.eds_news_Advantage .edn_moduleList .expand_collapse,
.eds_news_Advantage .edn_moduleList .edn_rss {
  font-size: 0;
  line-height: 0;
}
.eds_news_Advantage .edn_moduleList .expand_collapse::before,
.eds_news_Advantage .edn_moduleList .edn_rss::before {
  font: 900 1rem/1 Font Awesome\ 5 Free;
}
.eds_news_Advantage .edn_moduleList .expand_collapse {
  cursor: pointer;
  height: auto !important;
  visibility: visible !important;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  margin-right: 0.1rem;
}
.eds_news_Advantage .edn_moduleList .expand_collapse > span {
  display: none;
}
.eds_news_Advantage .edn_moduleList .expand_collapse::before {
  content: "\f07b";
  padding: 0 0.5rem;
  display: inline-block;
  color: #10d7bf;
  transition: color 300ms;
}
.eds_news_Advantage .edn_moduleList .expand_collapse:hover::before {
  color: #0ebfaa;
}
.eds_news_Advantage .edn_moduleList .expand_collapse.collapse::before {
  content: "\f07c";
}
.eds_news_Advantage .edn_moduleList .edn_rss {
  display: inline;
  margin-left: 0.3rem;
}
.eds_news_Advantage .edn_moduleList .edn_rss:link, .eds_news_Advantage .edn_moduleList .edn_rss:active, .eds_news_Advantage .edn_moduleList .edn_rss:visited {
  color: #d7d7d7;
}
.eds_news_Advantage .edn_moduleList .edn_rss:hover {
  color: #10d7bf;
}
.eds_news_Advantage .edn_moduleList .edn_rss::before {
  font-size: 0.8rem;
  content: "\f09e";
  display: inline-block;
}
.eds_news_Advantage .edn_moduleList .edn_rss > span {
  display: none;
}
.eds_news_Advantage .edn_moduleList .edn_image {
  display: inline-block;
  float: left;
  margin-left: 0.5rem;
}
.eds_news_Advantage .edn_moduleList .edn_image > img {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.29);
  margin-right: 5px;
  border-radius: 50%;
}

.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 7px;
}
.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  width: 50%;
}
.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "\f107";
  color: #10d7bf;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: Font Awesome\ 5 Free;
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Advantage.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table,
.eds_news_Advantage.eds_subCollection_calendar .fc {
  border: none !important;
  background-color: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.11);
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection,
.eds_news_Advantage.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: none !important;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td,
.eds_news_Advantage.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td,
.eds_news_Advantage.eds_subCollection_calendar .fc-toolbar h2 {
  font: 300 1.4rem/1.1 "Roboto", "Helvetica", "Arial", sans-serif;
  text-transform: uppercase;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Advantage.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a,
.eds_news_Advantage.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #10d7bf;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-button:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Advantage.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #3C4858;
  border-color: #10d7bf;
  box-shadow: none;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a::before,
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a::before {
  font-family: Font Awesome\ 5 Free;
  margin-right: 5px;
  font-weight: 900;
  font-style: normal;
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month::before {
  content: "\f03a";
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export::before,
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a.export::before {
  content: "\f133";
}
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a.articles_rss::before,
.eds_news_Advantage.eds_subCollection_calendar .top_calendar_actions > a.events_rss::before,
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a.rss::before {
  content: "\f09e";
}
.eds_news_Advantage.eds_subCollection_calendar .archive_list.events .edn_module_title a {
  float: right;
  margin: 0 0.5rem;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #10d7bf;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  transition: all 200ms linear;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #10d7bf;
  content: "\f105";
  font: 900 30px/1 Font Awesome\ 5 Free;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Advantage.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a::before,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group .fc-prev-button::before {
  content: "\f104";
}
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Advantage.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "Roboto", "Helvetica", "Arial", sans-serif;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Advantage.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_subCollection_calendar .fc-widget-header {
  background-color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #10d7bf;
  padding: 14px 8px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc,
.eds_news_Advantage.eds_subCollection_calendar .fc th,
.eds_news_Advantage.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #3C4858;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  transition: all 150ms linear;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > a:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  color: #fff !important;
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Advantage.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Advantage.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Advantage.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Advantage.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Advantage.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #10d7bf;
  font-size: 11px;
  color: #3C4858;
  background: none transparent;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event:hover {
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Advantage.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #3C4858;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item td a {
  color: #3C4858;
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #10d7bf;
  text-decoration: none;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Advantage.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font: normal 900 35px/0 Font Awesome\ 5 Free;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Advantage.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #10d7bf;
  border: solid 1px #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #fc4c3b;
  border: solid 1px #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #2e7de0;
  border: solid 1px #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000000;
  border: solid 1px #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #64ce66;
  border: solid 1px #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #fc4c3b;
  border: solid 1px #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #fc4c3b;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #2e7de0;
  border: solid 1px #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #2e7de0;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000000;
  border: solid 1px #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000000;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #64ce66;
  border: solid 1px #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #64ce66;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Advantage.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  transform: scale(1.2);
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day {
    display: none;
  }
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day.selected > a,
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > a:hover {
    transform: none;
  }
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Advantage.eds_subCollection_calendar .advanced .calendar_table td.day.today::after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}

.eds_news_Advantage.eds_subCollection_contentBlock .edn_widgetHeaderWrapper {
  padding-top: 2rem;
  position: relative;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_widgetHeaderWrapper .edNews_prevNextPagination {
  position: absolute;
  top: 0;
  right: 0;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_widgetHeaderWrapper.card-header {
  box-shadow: none;
  border-radius: 0;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_widgetHeaderWrapper.card-header .edNews_prevNextPagination {
  top: 0.6rem;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_widgetHeaderWrapper.card-header .edn__contentBlock_header .edn_widgetTitle {
  position: relative;
  top: -1.5rem;
  left: 0;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_header {
    width: auto !important;
  }
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_header .edn_widgetTitle {
  float: left;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 0 1rem;
  margin: 0;
  border: 0;
  transition: color 0.1s;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: left;
  padding-left: 2rem;
  margin-top: 0.5rem;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10000;
  border-radius: 6px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
    right: 0 !important;
  }
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  margin: 0;
  padding: 1rem 1.5rem;
  list-style: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
    white-space: normal;
    line-height: 1.2rem !important;
  }
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  display: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 1px 2px #10d7bf;
  border-radius: 50%;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger::after {
  margin: 0;
  padding: 0;
  width: 100%;
  content: "+";
  color: #3f3f3f;
  font: 900 1rem/2rem Font Awesome\ 5 Free;
  content: "\f067";
  display: block;
  text-align: center;
  position: absolute;
  transition: color 0.1s ease;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  right: 0;
  bottom: 0;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: inline-block !important;
}
@media (max-width: 576px) {
  .eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
    display: block !important;
  }
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after {
  color: #10d7bf;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  transition: opacity 500ms ease 300ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper::after {
  display: table;
  clear: both;
  content: "";
  width: 100%;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper::before, .eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Advantage.eds_subCollection_contentBlock .edn_mainWrapper::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: Font Awesome\ 5 Free;
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  z-index: 2;
  color: #10d7bf;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Advantage.eds_subCollection_contentBlock .eds_noContent,
.eds_news_Advantage.eds_subCollection_contentBlock .eds_contentError {
  font: 16px/1.3 "Roboto", "Helvetica", "Arial", sans-serif, sans-serif;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle {
  opacity: 0;
  transition: opacity 200ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle * {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_1 * {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_2 * {
  opacity: 0.8;
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 150ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_3 * {
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_4 * {
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 250ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_5 * {
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock .ednCB_animatedArticle.ednCB_6 * {
  transition: opacity 0.2s cubic-bezier(0.05, 0.3, 0.9, 0.5) 3500ms;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage {
  pointer-events: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage * {
  opacity: 0.4;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage {
  pointer-events: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage * {
  opacity: 0.4;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn_prevNextPagination, .eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_prevNextPagination, .eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_prevNextPagination {
  display: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn__contentBlock_header, .eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn__contentBlock_header, .eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn__contentBlock_header {
  width: auto;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper .ednCB_animatedArticle {
  opacity: 0;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__contentBlock_itemList {
  visibility: visible;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__articleListWrapper {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .ednCB_animatedArticle {
  opacity: 1;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .ednCB_animatedArticle * {
  opacity: 1 !important;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_pageReady.edn__contentBlock_loading .ednCB_animatedArticle {
  opacity: 0;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_triggeredNextPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_triggeredPreviousPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .eds_noContent {
  display: block;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Advantage.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .eds_contentError {
  display: block;
}

.qtip.edn_calendarbox_Advantage {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: none;
  width: 500px;
  max-width: 95%;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #3C4858;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  color: #3C4858;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.11);
  border-radius: 0.2rem;
}
.qtip.edn_calendarbox_Advantage * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Advantage p, .qtip.edn_calendarbox_Advantage span, .qtip.edn_calendarbox_Advantage li, .qtip.edn_calendarbox_Advantage a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Advantage .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Advantage .qtip-content div.title {
  display: block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 0.9rem;
  color: #10d7bf;
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Advantage .qtip-content div.title a {
  color: #10d7bf;
  text-decoration: none;
}
.qtip.edn_calendarbox_Advantage .qtip-content div.title a:hover {
  color: #3C4858;
  text-decoration: none;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > img {
  float: left;
  margin: 0.5rem;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.29);
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "Roboto Slab", "Times New Roman", serif;
  color: #3C4858;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > p.title a {
  font: inherit;
  color: #3C4858;
  text-decoration: none;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > p.title a:hover {
  color: #10d7bf;
  text-decoration: none;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > p.location::before {
  content: "\f041";
  display: inline-block;
  margin-right: 2px;
  color: #10d7bf;
  font: 900 1.3rem/1 Font Awesome\ 5 Free;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  text-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 10px;
  box-shadow: none;
  color: #10d7bf;
  border-radius: 0.4rem;
  color: #fff;
  background-color: #10d7bf;
  box-shadow: 0 2px 2px 0 rgba(16, 215, 191, 0.14), 0 3px 1px -2px rgba(16, 215, 191, 0.2), 0 1px 5px 0 rgba(16, 215, 191, 0.12);
  text-transform: uppercase;
  letter-spacing: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
  display: inline-block;
  font-weight: 400;
  font: 400 0.9rem/1.1 "Roboto", "Helvetica", "Arial", sans-serif;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  margin: 0.5rem;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper > .article > a:hover {
  box-shadow: 0 7px 7px -6px rgba(16, 215, 191, 0.42), 0 2px 6px 0px rgba(0, 0, 0, 0.12), 0 4px 5px -3px rgba(16, 215, 191, 0.2);
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #3C4858;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper .article_list li > a {
  color: #3C4858;
  text-decoration: none;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper .article_list li > a:hover {
  color: #10d7bf;
}
.qtip.edn_calendarbox_Advantage .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-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_news_Advantage.eds_style_predefined_atlantic h1 a:not(.export, .rss):hover,
.eds_news_Advantage.eds_style_predefined_atlantic h2 a:not(.export, .rss):hover,
.eds_news_Advantage.eds_style_predefined_atlantic h3 a:not(.export, .rss):hover,
.eds_news_Advantage.eds_style_predefined_atlantic h4 a:not(.export, .rss):hover,
.eds_news_Advantage.eds_style_predefined_atlantic h5 a:not(.export, .rss):hover,
.eds_news_Advantage.eds_style_predefined_atlantic h6 a:not(.export, .rss):hover
{
	color: #857dff !important;
}

.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):link,
.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):active,
.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):visited,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_commentActions .edNews__replyComment
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic a:not(.btn):visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_commentActions .edNews__replyComment
{
	color: #6d64ff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:link,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:active,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:visited
{
	color: #3f3f3f;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault a.button:visited:hover
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:link,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:active,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:visited,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:link,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:active,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:visited,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:link,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:active,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:visited
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.author_rss:visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .button.edsgg_buttonLink:visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edsgg_addThisButton > a:visited:hover
{
	color: #3f3f3f;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .rateit .rateit-range::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span > i,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__voted > i,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__voted:hover > i
{
	color: #eeeeee;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .rateit .rateit-hover::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span:hover > i
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .rateit .rateit-selected::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__votedUp > i,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__votedDown > i,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__votedUp:hover > i,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_detailsArticleDefault .edn_ArticleVoting > span.edn__votedDown:hover > i
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_listArticleDefault .card .author a
{
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic .text-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .EDN_cf_checkbox .EDN_cf_checkbox_icon::before
{
	color: #857dff !important;
}

.eds_news_Advantage.eds_style_predefined_atlantic .bg-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .badge-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_cfTable .edNews_prominentCell
{
	background-color: #857dff !important;
}

.eds_news_Advantage.eds_style_predefined_atlantic .border-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .EDN_cf_all_fields_container::after,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_cfTable,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_cfTable > div + div
{
	border-color: #857dff !important;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_listArticleTimeline .edNews_timeLine::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_templateGroup_listArticleTimeline .edNews_timeLine::after
{
	background-color: #d7d7d7;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search,
.eds_news_Advantage.eds_style_predefined_atlantic .in_article_image .image_wrapper > a::after
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .in_article_image .image_wrapper > a:hover::after
{
	background-color: #9892fd;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a
{
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 3px 1px -2px rgba(208, 60, 164, 0.2),0px 1px 5px 0px rgba(208, 60, 164, 0.12);
	border-color: #857dff;
	border-radius: 0.2rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:hover
{
	box-shadow: 0px 14px 26px -12px rgba(208, 60, 164, 0.42),0px 4px 23px 0px rgba(0, 0, 0, 0.12),0px 8px 10px -5px rgba(208, 60, 164, 0.2);
	border-color: #0ab09d;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary.btn-round
{
	border-radius: 30px;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:link,
.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:active,
.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:visited,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:link,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:active,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:visited,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:link,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:active,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:visited,
.eds_news_Advantage.eds_style_predefined_atlantic .in_article_image .image_wrapper > a::after
{
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .btn.btn-primary:visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_submitContainer > a:visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input.button_outside .do_search:visited:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .in_article_image .image_wrapper > a:hover::after
{
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pager a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pagination a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pagination span
{
	border-radius: 30px;
	color: #3f3f3f;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pager a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pagination a:hover
{
	border-radius: 30px;
	color: #3f3f3f;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pager a.active,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .article_pagination span
{
	box-shadow: 0 4px 5px 0 rgba(133, 125, 255, 0.14),0 1px 10px 0 rgba(133, 125, 255, 0.12),0 2px 4px -1px rgba(133, 125, 255, 0.2);
	border-radius: 30px;
	background-color: #857dff;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-radius: 0.25rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover
{
	box-shadow: none;
	border-radius: 0.25rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger:hover .actionTextContainer,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger > span,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #999999;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger:hover > span,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .loadingOverlay,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTriggerOverlay
{
	background-color: rgba(255, 255, 255, .8);
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .edNews_loadMoreTrigger .loadingOverlay,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	color: #999999;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_loadMoreTriggerWrapper .loadingOverlay::before,
.eds_news_Advantage.eds_style_predefined_atlantic .edsgg__loadMediaWrapper .edsgg__loadMediaTriggerOverlay::before
{
	color: #999999;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_boxBadge,
.eds_news_Advantage.eds_style_predefined_atlantic .EDN_cf_all_fields_container::before,
.eds_news_Advantage.eds_style_predefined_atlantic .search_input::before,
.eds_news_Advantage.eds_style_predefined_atlantic .edncf_AdvancedSearch::before,
.eds_news_Advantage.eds_style_predefined_atlantic .archive_list.events::before
{
	box-shadow: 1px 1px 2px 0 rgba(133, 125, 255, 0.2);
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_smallCardArticle:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_cardList .edNews_smallCardArticle:hover
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:link,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:active,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:visited
{
	background-color: #857dff;
	border-radius: 30px;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:link:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:active:hover,
.eds_news_Advantage.eds_style_predefined_atlantic .edNews_tags a:visited:hover
{
	background-color: #6d64ff;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_articleFlag .EDN_cf_checkbox_checked .EDN_cf_checkbox_label
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_articleFlag .EDN_cf_checkbox_checked::after
{
	border-top-color: #857dff;
	border-bottom-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_articleFlag .EDN_cf_checkbox_checked::before
{
	border-right-color: #6d64ff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edNews_articleFlag .EDN_cf_checkbox
{
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList > li
{
	background-color: rgba(0, 0, 0, 0.025);
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_link:link,
.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_link:active,
.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_link:visited
{
	color: #3f3f3f;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_link:hover
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .opened > div > .edn_link
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .active > div > .edn_link
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .expand_collapse::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .expand_collapse:hover::before
{
	color: #6d64ff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .expand_collapse.collapse::before
{
	color: #6d64ff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_rss::before
{
	color: #d7d7d7;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_rss:hover::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_articleCount
{
	background-color: #c8c8c8;
	border-radius: 0.1rem;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .opened > div > .edn_link .edn_articleCount
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .active > div > .edn_link .edn_articleCount
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic .edn_moduleList .edn_image > img
{
	border-radius: 50%;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc
{
	background-color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .edn_styledSelect > span
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .edn_styledSelect > span::after
{
	border-color: #d4d4d4;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .edn_styledSelect > span select
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .edn_styledSelect > span::after 
{
	color: #857dff;
	font-size: 20px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection td,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-toolbar h2
{
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-next-button
{
	border-color: #857dff;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-next-button:hover
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-next-button::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before
{
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-widget-header
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc .fc-week-number a
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc td.fc-week-number
{
	border-right-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #857dff;
	font-size: 12px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts > a
{
	color: #857dff;
	border-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #fc4c3b;
	border-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #2e7de0;
	border-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #64ce66;
	border-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events > a
{
	color: #FFA100;
	border-color: #FFA100;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover
{
	background-color: #FFA100;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #fc4c3b;
	border-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #2e7de0;
	border-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #64ce66;
	border-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after
{
	border-top-width: 3px;
	border-top-color: #dddddd;
	border-right-width: 1px;
	border-right-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	border-left-width: 1px;
	border-left-color: #dddddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc td.fc-day-top a:hover
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .archive_list.events .edn_module_title a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button
{
	border-color: #dddddd !important;
	border-radius: 4px;
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .archive_list.events .edn_module_title a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-button.fc-state-active
{
	border-color: #857dff !important;
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event
{
	background-color: transparent;
	border-color: #857dff;
	color: #3C4858;
	font-size: 11px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event:hover
{
	background-color: transparent;
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{
	border-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{
	border-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover
{
	border-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{
	border-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events
{
	background-color: transparent;
	border-color: #FFA100;
	color: #3C4858;
	font-size: 11px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: transparent;
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{
	border-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{
	border-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{
	border-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-unthemed .fc-divider
{
	background-color: transparent;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-heading .fc-widget-header
{
	background-color: transparent;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item td a
{
	color: #3C4858;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_calendar .fc-list-item td a:hover
{
	color: #857dff;
}

.qtip.edn_calendarbox_Advantage.atlantic
{
	background-color: #ffffff;
	border-radius: 0.2rem;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content div.title span,
.qtip.edn_calendarbox_Advantage.atlantic .qtip-content div.title span a
{
	color: #857dff;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content div.title span a:hover
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > p.title a
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > p.title a:hover
{
	color: #857dff;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > p.title
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article_list > li > a
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article_list > li > a:hover
{
	color: #857dff;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article_list > li
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article_list > li > p
{
	color: #999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > .content
{
	color: #3C4858;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article img
{
	border-radius: 0px;
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > a
{
	border-radius: 0.4rem;
	background-color: #857dff;
	box-shadow: 0 2px 2px 0 rgba(133, 125, 255, 0.14),0 3px 1px -2px rgba(133, 125, 255, 0.14),0 2px 5px 0 rgba(133, 125, 255, 0.12);
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > a:hover
{
	box-shadow: 0 7px 7px -6px rgba(133, 125, 255, 0.42),0 2px 6px 0 rgba(0, 0, 0, 0.12),0 4px 5px -3px rgba(133, 125, 255, 0.2);
}

.qtip.edn_calendarbox_Advantage.atlantic .qtip-content .wrapper > .article > p.location::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li
{
	color: rgba(0, 0, 0, 0.87);
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red
{
	color: #fc4c3b;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue
{
	color: #2e7de0;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black
{
	color: #000000;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green
{
	color: #64ce66;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow
{
	color: #f6c606;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink
{
	color: #ffc0cb;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray
{
	color: #808080;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange
{
	color: #ff6a00;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown
{
	color: #e49908;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger
{
	box-shadow: 0 0 1px 2px #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger
{
	border-radius: 50px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger:hover
{
	border-radius: 50%;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edNews_prevNextPagination > span
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edNews_prevNextPagination > span:hover
{
	background-color: #857dff;;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_contentBlock .edn_mainWrapper::after
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .search_input .input input[type="text"]
{
	border-bottom-color: #d2d2d2;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .search_input .input input[type="text"]:hover
{
	border-bottom-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	border-bottom-color: #857dff;
	box-shadow: inset 0 -1px 0px 0 #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .search_input .do_search
{
	color: #a4a4a4;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .search_input .do_search:hover
{
	color: #857dff;
}

.EDN_search.theme_Advantage.atlantic
{
	background-color: #ffffff;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.11);
}

.EDN_search.theme_Advantage.atlantic ul li span a
{
	color: #3C4858;
	font-size: 0.8rem;
}

.EDN_search.theme_Advantage.atlantic ul li span a:hover
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label
{
	color: #aaaaaa;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice
{
	border-bottom-color: #170d49;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #170d49;
	font-size: 0.9rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after ,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before
{
	color: #3f3f3f;
	font-size: 1rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input
{
	color: #495057;
	font-size: 1rem;
	border-bottom-color: #170d49;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #170d49;
	font-size: 0.8rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	font-size: 0.8rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	border-color: #857dff;
	border-radius: 50%;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),0 3px 1px -2px rgba(0, 0, 0, 0.12),0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before
{
	border-radius: 3px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before
{
	border-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::after,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::after
{
	text-shadow: none;
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label::before
{
	border-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label::after
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .8);
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search .ednSbl_item
{
	color: #999999;
	border-radius: 30px;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item
{
	color: #999999;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item
{
	color: #ffffff;
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search span.ednSbl_item
{
	color: #dddddd;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count::before
{
	border-top-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage::before
{
	border-radius: 0.5rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .loading_slider_overlay .indicator::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 0.2rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .thumb_wrapper .thumb_window .thumb_container ul li::after
{
	background-color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .thumb_wrapper .navigation::after
{
	box-shadow: none;
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .thumb_wrapper .navigation:hover::after
{
	background-color: #857dff;
	text-shadow: none;
	color: #ffffff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .navigation_button
{
	box-shadow: none;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .navigation_button::before
{
	color: #857dff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .navigation_button:hover::before
{
	text-shadow: none;
	color: #6d64ff;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .title_box
{
	font-size: 1rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .scrollable_box .viewport .overview,
.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .scrollable_box .viewport p
{
	font-size: 0.9rem;
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .scrollable_box
{
	background-color: rgba(0, 0, 0, .7);
}

.eds_news_Advantage.eds_style_predefined_atlantic.eds_subCollection_news .chameleon_slider.Advantage .scrollable_box .scrollbar .track .thumb
{
	background-color: #857dff;
}



.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}


.chameleon_slider {
  position: relative;
  overflow: hidden;
  margin: auto;
  max-width: 100%;
}
.chameleon_slider * {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
.chameleon_slider a {
  color: #fff;
}
.chameleon_slider a img {
  border: none;
}
.chameleon_slider .loading_slider_overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  display: none;
}
.chameleon_slider .loading_slider_overlay p {
  display: block;
  color: #000;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 0 0 10px;
  position: relative;
  top: 50%;
}
.chameleon_slider .loading_slider_overlay .indicator {
  position: relative;
}
.chameleon_slider .exit_fullscreen {
  background: #f00;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 20px;
  height: 20px;
}
.chameleon_slider .main_panel {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .main_panel .media_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(data:image/png;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==) no-repeat;
}
.chameleon_slider .main_panel .preloading_item {
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  opacity: 0;
}
.chameleon_slider .main_panel.show_preload .preloading_item {
  opacity: 1;
  left: 0;
}
.chameleon_slider .main_panel.loading_effect .preloading_item {
  transition: opacity 0.4s ease-in-out;
  left: 0;
}
.chameleon_slider .main_panel .items_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.chameleon_slider .main_panel .items_wrapper .item_container {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-engine,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-message {
  z-index: 0;
}
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui > .fp-embed,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui > .fp-embed-code {
  display: none;
}
.chameleon_slider .main_panel .items_wrapper .item_container > img {
  max-width: none;
  max-height: none;
}
.chameleon_slider .main_panel .items_wrapper .item_container .fancy_effect_element {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .autoplay_toggle {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-indent: -9999px;
}
.chameleon_slider a.navigation_button {
  display: block;
  text-indent: -9999px;
  outline: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .pagination {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 0 2px 2px;
  padding: 0;
}
.chameleon_slider .pagination .pages_container {
  overflow: hidden;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
}
.chameleon_slider .pagination .pages_container li {
  list-style-type: none;
  float: left;
  display: block;
  margin: 2px 2px 0 0;
  padding: 0;
  width: 10px;
  height: 10px;
  background: #fff;
}
.chameleon_slider .pagination .pages_container li:hover {
  background: #000;
  cursor: pointer;
}
.chameleon_slider .pagination .pages_container li.current {
  background: #f00;
}
.chameleon_slider .scrollable_box {
  text-align: left;
  background: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .scrollable_box .scrollbar {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  background: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  background: #F2F2F2;
}
.chameleon_slider .scrollable_box .scrollbar .track {
  height: 100%;
  width: 5px;
  position: relative;
}
.chameleon_slider .scrollable_box .scrollbar .track .thumb {
  background: #f00;
  position: absolute;
  top: 0;
  height: 20px;
  width: 100%;
}
.chameleon_slider .scrollable_box .viewport {
  overflow: hidden;
  padding: 0;
  margin: 10px;
}
.chameleon_slider .scrollable_box .viewport.scrollable {
  margin-right: 15px;
}
.chameleon_slider .scrollable_box .viewport .overview {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.chameleon_slider .scrollable_box .viewport .overview h2 {
  font-size: 25px;
  margin: 0 0 10px;
  padding: 0;
  color: #484848;
  font-weight: bold;
}
.chameleon_slider .scrollable_box .viewport .overview p {
  padding: 0;
  margin: 0 0 10px;
  line-height: 18px;
}
.chameleon_slider .thumb_wrapper,
.chameleon_slider .categories_wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .thumb_wrapper a.navigation,
.chameleon_slider .categories_wrapper a.navigation {
  position: absolute;
  top: 0;
  text-indent: -9000px;
  display: block;
  background: #f00;
  outline: none;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal,
.chameleon_slider .categories_wrapper a.navigation.horizontal {
  width: 15px;
  height: 100%;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal.next,
.chameleon_slider .categories_wrapper a.navigation.horizontal.next {
  right: 0;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal.prev,
.chameleon_slider .categories_wrapper a.navigation.horizontal.prev {
  left: 0;
}
.chameleon_slider .thumb_wrapper a.navigation.vertical,
.chameleon_slider .categories_wrapper a.navigation.vertical {
  height: 15px;
  width: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window,
.chameleon_slider .thumb_wrapper .categories_window,
.chameleon_slider .categories_wrapper .thumb_window,
.chameleon_slider .categories_wrapper .categories_window {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container,
.chameleon_slider .thumb_wrapper .categories_window .categories_container,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container,
.chameleon_slider .categories_wrapper .thumb_window .categories_container,
.chameleon_slider .categories_wrapper .categories_window .thumb_container,
.chameleon_slider .categories_wrapper .categories_window .categories_container {
  overflow: hidden;
  background: #000;
  position: relative;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container ul,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container ul,
.chameleon_slider .thumb_wrapper .categories_window .categories_container ul,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container ul,
.chameleon_slider .categories_wrapper .thumb_window .categories_container ul,
.chameleon_slider .categories_wrapper .categories_window .thumb_container ul,
.chameleon_slider .categories_wrapper .categories_window .categories_container ul {
  padding: 5px 5px 0 0;
  margin: 0 auto;
  list-style: none;
  list-style-position: inside;
  overflow: hidden;
  border: 0;
  float: left;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container ul li,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container ul li,
.chameleon_slider .thumb_wrapper .categories_window .categories_container ul li,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container ul li,
.chameleon_slider .categories_wrapper .thumb_window .categories_container ul li,
.chameleon_slider .categories_wrapper .categories_window .thumb_container ul li,
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li {
  float: left;
  margin: 0 0 5px 5px;
  position: relative;
  list-style: none;
  padding: 0;
  border: 0;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li {
  border: 1px solid #ccc;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: 0;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .thumb_preloading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon {
  padding: 0;
  margin: 0;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li img {
  display: block;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  background: none;
  font-size: 12px;
  width: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper .caption {
  padding: 3px;
  color: #fff;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li:hover {
  border: 1px solid #f00;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 1px solid #f00;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li {
  overflow: hidden;
  display: block;
  font-size: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li a.category {
  position: relative;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li a.category span {
  position: relative;
  top: 0;
  left: 0;
}
.chameleon_slider .autoplay_container {
  background: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .autoplay_container .indicator {
  background: #f00;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.chameleon_slider .social_buttons {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: none;
}
.chameleon_slider .social_buttons .social_button {
  padding: 0;
  margin: 0;
}
.chameleon_slider .social_buttons.horizontal .social_button {
  float: left;
}
.chameleon_slider .social_buttons_toggle {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .standalone_button {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: block;
}
.chameleon_slider .title_box {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: none;
  font-size: 12px;
  display: inline-block;
}
.chameleon_slider .title_box span {
  position: relative;
}

.slider_shadows_wrapper {
  position: relative;
  float: left;
}
.slider_shadows_wrapper .shadow {
  position: absolute;
  display: block;
  float: none;
}

@media handheld, only screen and (max-width: 640px), only screen and (max-device-width: 640px) {
  .eds_galleryWrapper .chameleon_slider .thumb_wrapper {
    display: none !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.horizontal {
    bottom: 0 !important;
    top: auto !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.vertical ~ a.navigation_button.prev {
    left: 100px !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.vertical ~ a.navigation_button.next {
    right: 100px !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper {
    bottom: 0;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper .item_container > img {
    top: auto !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper .item_container {
    height: 100% !important;
    width: 100% !important;
  }
  .eds_galleryWrapper .title_box {
    top: 10px !important;
    left: 10px !important;
    height: auto !important;
    max-width: calc(100% - 20px);
    bottom: auto !important;
  }
  .eds_galleryWrapper .title_box > span{
    top: 0 !important;
  }
  .eds_galleryWrapper .scrollable_box {
    display: none !important;
  }
  .eds_galleryWrapper a.navigation_button {
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto !important;
    margin-top: 0 !important;
  }
  .eds_galleryWrapper .media_link {
    background-position: center center !important;
  }
  .eds_galleryWrapper .media_link::after {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    background-position: center center !important;
  }
}



/*!
 *  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 {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.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 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 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 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";
}
@import url("http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700|PT+Sans:400,700&subset=latin,latin-ext");

/*!
 *  Font Awesome 4.3.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/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0");src:url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0") format('woff2'),url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0") format('woff'),url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0") format('truetype'),url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.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;transform:translate(0, 0)}.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}.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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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-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: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-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.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-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-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"}
@charset "UTF-8";
@import url("http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700|PT+Sans:400,700&subset=latin,latin-ext");
@import url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/font-awesome/css/font-awesome.min.css");
.chameleon_slider.Ozone {
  font-family: "PT Sans", sans-serif;
  background: transparent;
  border: solid 1px #c81704;
  border-radius: 6px;
}
.chameleon_slider.Ozone .loading_slider_overlay {
  background: #e8e8e8;
}
.chameleon_slider.Ozone .loading_slider_overlay p {
  color: #222222;
  font-size: 16px;
}
.chameleon_slider.Ozone .loading_slider_overlay .indicator {
  top: 50%;
  left: 50%;
  height: 38px;
  width: 38px;
  margin: -19px 0 0 -19px;
  padding: 0;
  background: none transparent;
}
.chameleon_slider.Ozone .loading_slider_overlay .indicator:before {
  content: "";
  display: inline-block;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 38px;
  line-height: 38px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.chameleon_slider.Ozone .navigation_button {
  background: none #9e1808;
  box-shadow: 0 48px 48px -48px #ec1601 inset;
  height: 48px;
  width: 35px;
  text-align: center;
  border-radius: 3px;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}
.chameleon_slider.Ozone .navigation_button:before {
  line-height: 48px;
  font-family: "FontAwesome";
  color: #fff;
  font-size: 35px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  text-decoration: none;
}
.chameleon_slider.Ozone .navigation_button:hover {
  text-decoration: none;
}
.chameleon_slider.Ozone .navigation_button:hover:before {
  color: #7f1b10;
  text-shadow: 1px 1px 1px rgba(255, 75, 57, 0.6);
  text-decoration: none;
}
.chameleon_slider.Ozone .navigation_button.prev:before {
  content: "";
}
.chameleon_slider.Ozone .navigation_button.next:before {
  content: "";
}
.chameleon_slider.Ozone .main_panel {
  background: white;
}
.chameleon_slider.Ozone .main_panel .media_link {
  background: none transparent;
}
.chameleon_slider.Ozone .main_panel .media_link:before {
  width: 60px;
  height: 60px;
  content: "";
  font-family: "FontAwesome";
  font-size: 35px;
  line-height: 64px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: none;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  position: absolute;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}
.chameleon_slider.Ozone .main_panel .media_link:hover:before {
  display: block;
}
.chameleon_slider.Ozone .main_panel .preloading_item {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/images/loading_white_bg.gif") no-repeat center center #e8e8e8;
}
.chameleon_slider.Ozone .main_panel.loading_item .preloading_item {
  background-color: rgba(232, 232, 232, 0.75);
}
.chameleon_slider.Ozone .scrollable_box {
  background: none rgba(54, 54, 54, 0.5);
}
.chameleon_slider.Ozone .scrollable_box .scrollbar {
  background: none transparent;
  right: 10px;
  width: 5px;
  padding: 4px 0 0;
  margin: 6px 0 10px;
}
.chameleon_slider.Ozone .scrollable_box .scrollbar .track {
  padding: 0;
  background: none transparent;
}
.chameleon_slider.Ozone .scrollable_box .scrollbar .track:before, .chameleon_slider.Ozone .scrollable_box .scrollbar .track:after {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "FontAwesome";
  display: inline-block;
  color: #fff;
  font-size: 8px;
  line-height: 0;
}
.chameleon_slider.Ozone .scrollable_box .scrollbar .track:before {
  top: -3px;
  content: "";
}
.chameleon_slider.Ozone .scrollable_box .scrollbar .track:after {
  bottom: -2px;
  content: "";
}
.chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb {
  background: none #fff;
  width: 5px;
  border: 1px solid #c81704;
  border-radius: 1px;
  margin: 0;
  box-sizing: border-box;
}
.chameleon_slider.Ozone .scrollable_box .viewport {
  margin: 10px 15px;
}
.chameleon_slider.Ozone .scrollable_box .viewport.scrollable {
  margin-right: 20px;
}
.chameleon_slider.Ozone .scrollable_box .viewport .overview, .chameleon_slider.Ozone .scrollable_box .viewport p {
  font-size: 12px;
  line-height: 1.2;
  color: white;
  font-family: "PT Sans", sans-serif;
}
.chameleon_slider.Ozone .scrollable_box .viewport .overview p {
  margin: 0;
  padding: 0;
}
.chameleon_slider.Ozone .scrollable_box .viewport .overview p + p {
  margin-top: 8px;
}
.chameleon_slider.Ozone .scrollable_box .viewport a {
  color: white;
}
.chameleon_slider.Ozone .scrollable_box .viewport a:hover {
  color: white;
}
.chameleon_slider.Ozone .scrollable_box .viewport h2 {
  font-size: 18px;
  color: white;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
}
.chameleon_slider.Ozone .scrollable_box.gallery_info {
  background: none rgba(91, 91, 91, 0.5);
}
.chameleon_slider.Ozone .thumb_wrapper {
  background: none rgba(255, 255, 255, 0.7);
  border: solid 1px #c81704;
  margin: -1px;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation {
  background: none transparent;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation:after {
  font-family: "FontAwesome";
  color: #c7c7c7;
  font-size: 35px;
  line-height: 1;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transition: color 200ms linear;
  -moz-transition: color 200ms linear;
  -ms-transition: color 200ms linear;
  -o-transition: color 200ms linear;
  transition: color 200ms linear;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation:hover:after {
  color: #c81704;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.horizontal {
  width: 20px;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.horizontal:after {
  margin-top: -18px;
  top: 50%;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.horizontal.next:after {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.horizontal.prev:after {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.vertical {
  height: 20px;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.vertical:after {
  margin-top: -8px;
  top: 0;
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.vertical.next:after {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .navigation.vertical.prev:after {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window {
  background: none;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container {
  background: none;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul {
  padding: 10px 10px 0 0;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li {
  margin: 0 0 10px 10px;
  border-radius: 5px;
  border: solid 1px transparent;
  -webkit-transition: border 200ms ease-in-out;
  -moz-transition: border 200ms ease-in-out;
  -ms-transition: border 200ms ease-in-out;
  -o-transition: border 200ms ease-in-out;
  transition: border 200ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 2px transparent;
  z-index: 1;
  border-radius: 4px;
  -webkit-transition: border 200ms linear;
  -moz-transition: border 200ms linear;
  -ms-transition: border 200ms linear;
  -o-transition: border 200ms linear;
  transition: border 200ms linear;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .thumb_preloading {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/Ozone/images/preloader_thumb.gif") no-repeat center center #f8f8f8;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon {
  background: none rgba(200, 23, 4, 0.7);
  display: none;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  text-align: center;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon:before {
  line-height: 28px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: "FontAwesome";
  font-size: 13px;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.video {
  display: block;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.video:before {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.audio {
  display: block;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.audio:before {
  content: "";
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper .caption {
  padding: 3px;
  color: white;
  font-size: 10px;
  background: none rgba(0, 0, 0, 0.7);
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover {
  border-color: #c81704;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border-color: #c81704;
}
.chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on:after {
  border-color: #fff;
}
.chameleon_slider.Ozone .thumb_wrapper.not_transparent .thumb_window {
  background: #fff;
}
.chameleon_slider.Ozone .categories_wrapper .navigation {
  background: none transparent;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
}
.chameleon_slider.Ozone .categories_wrapper .navigation:after {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "FontAwesome";
  background-color: #fff;
  border: solid 1px #c81704;
  border-radius: 2px;
  width: 15px;
  height: 12px;
  color: #c81704;
  line-height: 0.8;
  font-size: 13px;
  display: inline-block;
  margin-top: -6px;
  margin-left: -6px;
  text-align: center;
}
.chameleon_slider.Ozone .categories_wrapper .navigation:hover:after {
  background-color: #c81704;
  color: #fff;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.horizontal {
  top: 0;
  bottom: 0;
  width: 60px;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.horizontal.next {
  border-left: solid 1px #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.horizontal.next:after {
  content: "";
}
.chameleon_slider.Ozone .categories_wrapper .navigation.horizontal.prev {
  border-right: solid 1px #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.horizontal.prev:after {
  content: "";
}
.chameleon_slider.Ozone .categories_wrapper .navigation.vertical {
  left: 0;
  right: 0;
  height: 45px;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.vertical.next {
  border-top: solid 1px #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.vertical.next:after {
  content: "";
}
.chameleon_slider.Ozone .categories_wrapper .navigation.vertical.prev {
  border-bottom: solid 1px #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .navigation.vertical.prev:after {
  content: "";
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container {
  background: none;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul {
  padding: 0;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li {
  margin: 0;
  border: 0;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li .category {
  font-family: "PT Sans", sans-serif;
  display: block;
  padding: 5px;
  margin: auto;
  font-size: 11px;
  line-height: 1.2;
  color: #363636;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid #c81704;
  -webkit-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li .category:hover {
  text-decoration: none;
  color: #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li .open_children {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  overflow: hidden;
  background: #333333;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li .open_children:hover {
  background: #950000;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li.has_children .category {
  padding-right: 15px;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li.on {
  background: none #c81704;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li.on .category {
  color: #fff;
}
.chameleon_slider.Ozone .categories_wrapper .categories_window .categories_container ul li:last-child .category {
  border: none !important;
}
.chameleon_slider.Ozone .categories_wrapper.not_transparent {
  background: #fff none;
}
.chameleon_slider.Ozone .categories_wrapper.horizontal {
  border-bottom: solid 1px #c81704;
  border-top: solid 1px #c81704;
  margin-bottom: -1px;
  margin-top: -1px;
}
.chameleon_slider.Ozone .categories_wrapper.vertical {
  border-left: solid 1px #c81704;
  border-right: solid 1px #c81704;
  margin-left: -1px;
  margin-right: -1px;
}
.chameleon_slider.Ozone .categories_wrapper.vertical .categories_container ul li .category {
  border-right: none;
  border-bottom: 1px solid #c81704;
}
.chameleon_slider.Ozone .title_box {
  padding: 0 15px;
  color: white;
  font-size: 18px;
  line-height: 1.4;
}
.chameleon_slider.Ozone .title_box.current_item {
  background: none rgba(149, 149, 149, 0.5);
}
.chameleon_slider.Ozone .title_box.current_gallery {
  background: none rgba(91, 91, 91, 0.5);
}
.chameleon_slider.Ozone .social_buttons {
  padding: 10px;
  background: none rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}
.chameleon_slider.Ozone .social_buttons.vertical .social_button {
  margin: 0 0 5px;
}
.chameleon_slider.Ozone .standalone_button,
.chameleon_slider.Ozone .social_buttons_toggle {
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  background: none transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  text-decoration: none;
}
.chameleon_slider.Ozone .standalone_button:after,
.chameleon_slider.Ozone .social_buttons_toggle:after {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 30px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
  display: inline-block;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  text-decoration: none;
}
.chameleon_slider.Ozone .standalone_button:hover,
.chameleon_slider.Ozone .social_buttons_toggle:hover {
  background-color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.chameleon_slider.Ozone .standalone_button:hover:after,
.chameleon_slider.Ozone .social_buttons_toggle:hover:after {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}
.chameleon_slider.Ozone .standalone_button.email:after {
  content: "";
}
.chameleon_slider.Ozone .standalone_button.download:after {
  content: "";
}
.chameleon_slider.Ozone .standalone_button.fullscreen:after {
  content: "";
}
.chameleon_slider.Ozone .standalone_button.exit_fullscreen {
  width: 40px;
  height: 40px;
}
.chameleon_slider.Ozone .standalone_button.exit_fullscreen:after {
  content: "";
  line-height: 40px;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.chameleon_slider.Ozone .standalone_button.exit_fullscreen:hover:after {
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.chameleon_slider.Ozone .standalone_button.exit_fullscreen:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 36px;
  color: red;
  position: absolute;
  top: 20px;
  left: 5px;
  display: inline-block;
  opacity: 0.5;
  z-index: 1;
}
.chameleon_slider.Ozone .social_buttons_toggle {
  cursor: pointer;
}
.chameleon_slider.Ozone .social_buttons_toggle:after {
  content: "";
}
.chameleon_slider.Ozone .social_buttons_toggle.active {
  border-radius: 0 50% 50% 50%;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.chameleon_slider.Ozone .social_buttons_toggle.active:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.chameleon_slider.Ozone .pagination {
  border: solid 1px #9e9e9e;
  border-radius: 6px;
  background: none #fff;
  padding: 4px 7px;
  opacity: 0.5;
  -webkit-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.chameleon_slider.Ozone .pagination .pages_container li {
  list-style-type: none;
  margin: 3px;
  width: 9px;
  height: 9px;
  background: none #e7e7e7;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3) inset;
  border-radius: 50%;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.chameleon_slider.Ozone .pagination .pages_container li:hover {
  background-color: #FFBCBC;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3) inset;
}
.chameleon_slider.Ozone .pagination .pages_container li.current {
  background-color: #c22212;
  width: 11px;
  height: 11px;
  margin: 2px;
}
.chameleon_slider.Ozone .pagination:hover {
  opacity: 1;
}
.chameleon_slider.Ozone .autoplay_container {
  background: none rgba(255, 255, 255, 0.5);
}
.chameleon_slider.Ozone .autoplay_container .indicator {
  background: none #c81704;
}
.chameleon_slider.Ozone .autoplay_toggle {
  background: none transparent;
  text-indent: 0;
  font-size: 0;
  line-height: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}
.chameleon_slider.Ozone .autoplay_toggle:before {
  display: inline-block;
  content: "";
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 64px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-decoration: none;
}
.chameleon_slider.Ozone .autoplay_toggle:hover {
  text-decoration: none;
}
.chameleon_slider.Ozone .autoplay_toggle:hover:before {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}
.chameleon_slider.Ozone .autoplay_toggle.pause:before {
  content: "";
}

/*# sourceMappingURL=Ozone.css.map */


@charset "UTF-8";
body.smbLightFixed {
  overflow: hidden;
}

.smbLightOverlayWrapper.modern {
  display: block;
  position: fixed;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  z-index: 99999;
  transition: opacity linear 0.2s;
}
.smbLightOverlayWrapper.modern.show {
  opacity: 1;
}
.smbLightOverlayWrapper.modern > .contentWrapper {
  display: block;
  position: absolute;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  opacity: 1;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper {
  position: absolute;
  display: none;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 0 3px 10px;
  border: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px 0 0 0;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper > div {
  display: block;
  margin: 0 0 1px;
  padding: 0;
  border: 0;
  height: 25px;
  width: 135px;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper.show {
  display: block;
}
.smbLightOverlayWrapper.modern .mainWrapper {
  display: block;
  background: #2F2F2F;
  border: 1px solid #fff;
  border-radius: 1px;
  margin: 52px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
  height: 50px;
  width: 50px;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper {
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div {
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.activeElement {
  left: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.audioVideo iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images img,
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images p {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  height: auto !important;
  max-height: none !important;
  width: auto !important;
  max-width: none !important;
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images img.activeElement {
  left: 0;
  height: 100% !important;
  width: 100% !important;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images p {
  text-align: center;
  font: 16px/20px Arial, sans-serif;
  top: 50%;
  margin: -10px 0 0;
  padding: 0 30px;
  height: auto;
  color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images.imageNotLoaded > p {
  left: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .loadingOverlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/loader.gif") 500% 0 #2F2F2F no-repeat;
  z-index: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .loadingOverlay.inProgress {
  background-position: center center;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle {
  display: block;
  font: 17px/0.9 Arial, sans-serif;
  margin: 0 70px 10px 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  text-shadow: 1px 1px 0 #333;
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 0;
  right: 0;
  opacity: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span {
  display: block;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span.eds__SmbLight_lightboxTitle + .eds__SmbLight_lightboxDescription {
  margin-top: 7px;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span.eds__SmbLight_lightboxDescription {
  font-size: 12px;
  line-height: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation,
.smbLightOverlayWrapper.modern .mainWrapper .close,
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: absolute;
  bottom: auto;
  left: auto;
  right: auto;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation {
  top: 50%;
  width: 34px;
  height: 70px;
  background: #fff;
  margin-top: -35px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 12px;
  height: 20px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat -28px 0;
  margin: -10px 0 0 -6px;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.prev {
  right: 100%;
  border-radius: 4px 0 0 4px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.prev > span {
  background-position: -28px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.next {
  left: 100%;
  border-radius: 0 4px 4px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.next > span {
  background-position: -28px -20px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation:hover.prev > span {
  background-position: -40px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation:hover.next > span {
  background-position: -40px -20px;
}
.smbLightOverlayWrapper.modern .mainWrapper .close {
  top: auto;
  bottom: 100%;
  right: 20px;
  width: 42px;
  height: 31px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  margin-bottom: 1px;
  opacity: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .close > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 14px;
  height: 15px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat 0 0;
  margin: -7px 0 0 -7px;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .close:hover {
  background: #ce0000;
}
.smbLightOverlayWrapper.modern .mainWrapper .close:hover > span {
  background-position: -14px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger {
  top: 100%;
  width: 40px;
  height: 31px;
  right: 20px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 13px;
  height: 15px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat 0 -15px;
  margin: -7px 0 0 -8px;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger:hover > span {
  background-position: -13px -15px;
}
.smbLightOverlayWrapper.modern .mainWrapper.audioItem .navigation {
  height: 30px;
  margin-top: -15px;
}
.smbLightOverlayWrapper.modern.smbPlus {
  top: auto;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  bottom: -1px;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper {
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper.positionAnimation {
  transition: transform ease-in-out 0.5s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper.swipeAnimation {
  transition: transform cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div {
  display: inline-block;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: relative;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.imageItem > img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.imageItem::before {
  content: "";
  font: 200px/1 FontAwesome;
  position: absolute;
  color: #6F6F6F;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  margin: -100px 0 0;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem {
  position: relative;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem > div, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem > div > iframe, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div > iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div {
  padding: 0 40px;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div > .audiojs .play-pause p {
  width: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.loading.imageItem > img {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.loading.imageItem::before {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .mobileOverlay {
  background: none;
  height: 100%;
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: 0 -160px 110px -135px #000 inset, -115px 0 120px -100px #000 inset, 115px 0 120px -100px #000 inset;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  z-index: 1;
  transition: box-shadow ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation {
  margin: -27px 0 0;
  height: 54px;
  width: 30px;
  background: none;
  display: block;
  border: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  font-size: 0;
  line-height: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation > span {
  position: relative;
  top: 15px;
  left: 7px;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation > span::after {
  font-size: 20px;
  line-height: 1.3;
  font-family: FontAwesome;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation:hover > span::after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.prev {
  left: 0;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.prev > span::after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.next {
  right: 0;
  left: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.next > span::after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .close {
  margin: 0;
  height: 45px;
  width: 40px;
  background: none;
  display: block;
  border: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  font-size: 0;
  line-height: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .close > span {
  position: relative;
  top: 9px;
  left: 14px;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .close > span::after {
  font-size: 20px;
  line-height: 1.3;
  font-family: FontAwesome;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  content: "";
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .close:hover > span::after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .itemTitle {
  margin: 0;
  top: auto;
  bottom: 35px;
  font: 16px/1.3 Arial, sans-serif;
  color: #fff;
  text-align: left;
  position: absolute;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions {
  position: absolute;
  top: auto;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  padding: 5px 15px 10px;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span {
  font: 16px/1.3 Arial, sans-serif;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span::before, .smbLightOverlayWrapper.modern.smbPlus > .actions > span::after {
  font: 18px/1.3 FontAwesome;
  color: #fff;
  position: relative;
  left: -3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span::after {
  left: auto;
  right: -3px;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span::before, .smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span::after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.commentsTrigger {
  left: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.commentsTrigger > span::before {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger {
  right: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger > span {
  padding: 0 3px 0 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger > span::after {
  transition: color ease-in-out 0.2s;
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger.liked > span::after {
  color: #ff3939;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger.liked:hover > span::after {
  color: #bb1919;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger {
  left: 50%;
  margin-left: -24px;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger > span {
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger > span::before {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper {
  width: 150px;
  right: auto;
  left: 50%;
  margin-left: -75px;
  bottom: 45px;
  z-index: 3;
  border-radius: 5px;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper > div {
  margin-bottom: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent;
  border-style: solid;
  border-width: 10px 20px 0;
  left: 50%;
  margin: 0 0 0 -20px;
}
.smbLightOverlayWrapper.modern.smbPlus > .modalOverlay {
  background: rgba(0, 0, 0, 0.9);
  display: block;
  width: 100%;
  height: 100%;
  top: 100%;
  bottom: auto;
  left: auto;
  right: auto;
  position: absolute;
  opacity: 0;
  z-index: 3;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  height: 100%;
  border: 14px solid transparent;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 100%, 0);
  transition: transform ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > p.loading {
  margin: -15px 0 0;
  padding: 0;
  border: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  color: #666;
  position: absolute;
  top: 200%;
  left: auto;
  right: auto;
  bottom: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 20px 20px 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px 5px 0 0;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper {
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  padding-top: 40px;
  overflow-y: scroll;
  z-index: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper input,
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper textarea {
  margin: 0 0 20px;
  padding: 5px 10px;
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  line-height: 1.3;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper textarea {
  resize: vertical;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.error input,
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.error textarea {
  border-color: #e97f7f;
  color: #f00;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions {
  text-align: right;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions button {
  text-transform: uppercase;
  background: #a7a7a7;
  border: 0;
  padding: 5px 10px 4px;
  margin: 0 0 0 20px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  transition: opacity ease-in-out 0.2s, background ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions button:hover {
  background: #7B7B7B;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.captchaContainer > .captchaError {
  display: none;
  font-size: 14px;
  line-height: 1.3;
  color: #f00;
  padding: 10px 5px;
  margin: 0 0 5px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.captchaContainer.error > .captchaError {
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper.addingAnonComment > div.actions .post {
  opacity: 0.4;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top {
  border: 0;
  border-bottom: 1px solid #dbdbdb;
  height: 25px;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span {
  font: 14px/1.3 Arial, sans-serif;
  color: #949494;
  position: relative;
  margin: 0;
  padding: 0 30px 0 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span::after {
  color: #c4c4c4;
  font: 18px/1.3 FontAwesome;
  position: absolute;
  display: block;
  top: -4px;
  left: auto;
  right: 10px;
  bottom: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.comments::after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.likes::after {
  transition: color ease-in-out 0.2s;
  content: "";
  top: -3px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.likes.liked::after {
  color: #FF6D6D;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort {
  position: absolute;
  right: 10px;
  left: auto;
  top: auto;
  bottom: auto;
  cursor: pointer;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort::after {
  content: "";
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort.desc::after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort:hover {
  color: #5b5b5b;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort:hover::after {
  color: #8f8f8f;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 20px;
  right: 20px;
  border: 0;
  border-top: 1px solid #dbdbdb;
  padding: 0 65px 0 0;
  background: #fff;
  z-index: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper::before {
  color: #c4c4c4;
  font: 33px/1 FontAwesome;
  position: absolute;
  display: block;
  top: 50%;
  left: auto;
  right: auto;
  bottom: auto;
  margin: -17px 0 0;
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > button {
  background: #a7a7a7;
  border: 0;
  border-radius: 2px;
  margin: -14px 0 0;
  padding: 5px 10px 4px;
  font: 14px/1.3 Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transition: background ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > button:hover {
  background: #7B7B7B;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > textarea {
  color: #878787;
  font: 16px/1.3 Arial, sans-serif;
  margin: 0;
  padding: 10px 0 0 40px;
  border: 0;
  background: none;
  resize: none;
  width: 100%;
  height: 40px;
  box-shadow: none;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper.filledIn > button {
  background: #1287bd;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .noComments {
  display: none;
  margin: -10px 0 0;
  padding: 0;
  border: 0;
  font: 16px/1.3 Arial, sans-serif;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  color: #747474;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow-y: scroll;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li {
  display: block;
  margin: 0;
  padding: 10px 0 12px 60px;
  border: 0;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
  font: 0/0 Arial;
  min-height: 44px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .authorAvatar {
  position: absolute;
  top: 12px;
  left: 0;
  right: auto;
  bottom: auto;
  border: 1px solid #adadad;
  display: block;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .authorAvatar > img {
  border: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .author {
  color: #1287bd;
  font: 12px/1.3 Arial, sans-serif;
  text-decoration: none;
  display: inline;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div > p {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  display: block;
  font: 12px/1.3 Arial, sans-serif;
  font-weight: normal;
  color: #000;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div > p:first-child {
  margin: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .datetime {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: block;
  font: 11px/1.3 Arial, sans-serif;
  font-weight: normal;
  color: #949494;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li:last-child {
  border: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: auto;
  background: #dadada;
  padding: 0 10px 10px;
  margin: 0 0 0 -40px;
  border: 0;
  border-radius: 0 0 4px 4px;
  width: 60px;
  height: 25px;
  z-index: 2;
  transition: background ease-in-out 0.2s;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments::after {
  content: "";
  font: 18px/1 FontAwesome;
  color: #767676;
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  padding: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments:hover {
  background: #cbcbcb;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments:hover::after {
  color: #3c3c3c;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.noComments > div.main > .noComments {
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.showAnonymWindow > div.anonymCommentWrapper {
  left: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > p.loading {
  top: 50%;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > .top > span.sort {
  right: -100%;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > ul {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > .newCommentWrapper {
  bottom: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus.modalActive > .modalOverlay {
  top: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.modalActive > .commentsModalWrapper {
  transform: translate3d(0, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.firstItem > .navigation.prev {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.lastItem > .navigation.next {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.videoActive > .contentWrapper, .smbLightOverlayWrapper.modern.smbPlus.audioActive > .contentWrapper {
  z-index: 2;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .mobileOverlay {
  box-shadow: 0 160px 110px -135px #000 inset, -115px 0 120px -100px #000 inset, 115px 0 120px -100px #000 inset, 0 -160px 110px -135px #000 inset;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation {
  width: 46px;
  height: 72px;
  margin-top: -36px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation > span {
  top: 9px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation > span::after {
  font-size: 45px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation:hover > span::after {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.lastItem > .navigation.next {
  transform: translate3d(100%, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.firstItem > .navigation.prev {
  transform: translate3d(-100%, 0, 0px);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper {
  border-width: 0;
  border-radius: 0;
  width: 400px;
  transform: translate3d(0, 0, 0);
  transition: none;
  right: auto;
  left: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div {
  border-radius: 0;
  padding: 20px 10px 0;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.main > .top > span.sort {
  left: 50%;
  margin: 0 0 0 -21px;
  position: absolute;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.main > .newCommentWrapper {
  left: 10px;
  right: 10px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.anonymCommentWrapper {
  border-top: 37px solid #ffffff;
  padding: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments {
  padding: 0;
  margin: 0;
  left: auto;
  right: 10px;
  background: transparent !important;
  width: auto;
  height: auto;
  top: 9px;
  padding: 3px 21px 3px 5px;
  border-radius: 0;
  font: 17px/1.3 Arial, sans-serif;
  color: #c4c4c4;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments::after {
  font: 20px/1.3 FontAwesome;
  color: #c4c4c4;
  text-shadow: none;
  content: "";
  transition: color ease-in-out 0.2s;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  width: auto;
  display: inline;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments:hover {
  color: #9F9F9F;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments:hover::after {
  color: #9F9F9F;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.animateComments > .commentsModalWrapper {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.moveComments > .commentsModalWrapper {
  transform: translate3d(-100%, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .modalOverlay {
  display: none;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close {
  height: 45px;
  width: 45px;
  opacity: 0.5;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close > span {
  left: 10px;
  top: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close > span::after {
  font-size: 29px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close:hover > span::after {
  color: #fa3222;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions {
  padding: 8px 10px;
  top: 0;
  bottom: auto;
  opacity: 0.5;
  left: 50%;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions > span::after, .smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions > span::before {
  font-size: 26px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span::after, .smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span::before {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.likeTrigger {
  margin: 0 0 0 50px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.commentsTrigger {
  margin: 0 0 0 -108px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.socialButtonsTrigger > span {
  position: relative;
  top: 2px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.socialButtonsTrigger > span::before {
  left: -1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent .socialButtonsWrapper {
  bottom: auto;
  top: 55px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent .socialButtonsWrapper::after {
  top: auto;
  bottom: 100%;
  border-color: transparent transparent rgba(0, 0, 0, 0.8);
  border-width: 0 20px 10px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .itemTitle {
  bottom: 10px;
  font-size: 26px;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .mobileOverlay {
  box-shadow: none;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .navigation,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .close,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .actions,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .socialButtonsWrapper,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .itemTitle {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .itemTitle {
  bottom: -100px;
}
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .navigation,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .close,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .actions,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .socialButtonsWrapper,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .itemTitle {
  display: none;
}
.smbLightOverlayWrapper.modern.initializing .mainWrapper .navigation,
.smbLightOverlayWrapper.modern.initializing .mainWrapper .close,
.smbLightOverlayWrapper.modern.initializing .mainWrapper .socialButtonsTrigger {
  display: none;
}
.smbLightOverlayWrapper.modern.initializing > .actions,
.smbLightOverlayWrapper.modern.initializing > .navigation,
.smbLightOverlayWrapper.modern.initializing > .itemTitle {
  opacity: 0 !important;
}


@font-face{font-family:'Open Sans';src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/OpenSans-Regular.woff") format('woff');font-weight:400;font-style:normal}@font-face{font-family:'Open Sans';src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/OpenSans-Bold.woff") format('woff');font-weight:700;font-style:normal}@font-face{font-family:SpecialFont;src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/Exan-Regular.woff") format('woff');font-weight:400;font-style:normal}@font-face{font-family:Orbitron;font-style:normal;font-weight:400;font-display:swap;src:url("https://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpg.ttf") format('truetype')}@font-face{font-family:Orbitron;font-style:normal;font-weight:700;font-display:swap;src:url("https://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_Cmxpg.ttf") format('truetype')}.BaseFont{font-family:Orbitron,sans-serif}.SpecialFont{font-family:Orbitron,sans-serif}.container .container{padding-left:0;padding-right:0}body a[type=button]{-webkit-appearance:none}.form-control{color:inherit;font-size:1em}.dropdown-menu li{padding:0 .5em}.dropdown-menu li a[data-jplist-selected=true]{color:#363636}body .show>.btn.dropdown-toggle:active,body .show>.btn.dropdown-toggle:focus,body .show>.btn.dropdown-toggle[aria-expanded=true]{background:#57ddff;color:#fff;border:none;box-shadow:none}body.modal-open,body.modal-open-noscroll{overflow-y:scroll;padding-right:0}body.vertical-scrollbar.modal-open,body.vertical-scrollbar.modal-open-noscroll{overflow-y:scroll;padding-right:0}.CP-View .row.Empty{display:none}#block-inner-marg{margin:2em 0;margin:clamp(2em,1vw,3em) 0}#block-inner-marg-t{margin-top:2em;margin-top:clamp(2em,1vw,3em)}#block-inner-marg-b{margin-bottom:2em;margin-bottom:clamp(2em,1vw,3em)}#block-inner-marg-fixed{margin:1em 0 1em}@keyframes content-fade-in{0%{opacity:0}50%{opacity:0}100%{opacity:1}}.font-scaling{font-size:calc(.8em + .3vw)}.clear-fix:after{content:"";display:table;clear:both}.dnnCPHeader li{line-height:normal}#dnnCPWrap .dnnCPHMode,#dnnCPWrap .dnnCPHNav{height:30px}#RibbonBar_adminMenus>ul>li>a,#dnn_cp_RibbonBar_adminMenus>ul>li>a{padding:10px 16px}.dnnCPHMessage{line-height:35px}#RibbonBar_adminMenus .dnnadminmega .megaborder,#dnn_cp_RibbonBar_adminMenus .dnnadminmega .megaborder{top:35px}a.dnnPrimaryAction:link,a.dnnPrimaryAction:visited{color:#fff}a.dnnSecondaryAction:link,a.dnnSecondaryAction:visited{color:#f3f3f3}.LoginPanel{width:100%;padding-right:0;float:none}.LoginPanel .dnnFormItem .dnnFormLabel,.LoginPanel .dnnFormItem .dnnLabel{width:12em;padding:0 1em 0 0;margin-right:0;float:none;display:block;text-align:left}@media only screen and (min-width:768px){.LoginPanel .dnnFormItem .dnnFormLabel,.LoginPanel .dnnFormItem .dnnLabel{float:left;text-align:right}}.LoginPanel .dnnFormItem .dnnCheckbox{margin-left:0}.LoginPanel .dnnFormItem .dnnCheckbox .mark{margin:0}body{letter-spacing:normal;line-height:normal}.CommandButton,.Head,.Normal,.NormalBold,.NormalDeleted,.NormalDisabled,.NormalRed,.SubHead,.SubSubHead,.blockquote,.blockquote p,a:link,a:visited,h1,h2,h3,h4,h5,h6,input,li,li p,table,td,th,ul{color:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit}ol,ul{margin-bottom:1em;margin-left:1em}body>form #ControlBar_ControlPanel{z-index:100001!important}body>form>.rcbSlide{z-index:100010!important}.DNNEmptyPane{display:block;width:auto;height:0}.CP-Edit .DNNEmptyPane{display:block;min-height:100px}.dnnDropEmptyPanes,.paneOutline{border:0 none}#ControlBar_ControlPanel,#ControlBar_ControlPanel *,#ControlBar_ControlPanel :after,#ControlBar_ControlPanel :before,#ControlBar_ControlPanel:after,#ControlBar_ControlPanel:before,#RibbonBar_ControlPanel,#RibbonBar_ControlPanel *,#RibbonBar_ControlPanel :after,#RibbonBar_ControlPanel :before,#RibbonBar_ControlPanel:after,#RibbonBar_ControlPanel:before,#dnnCPWrap,#dnnCPWrap *,#dnnCPWrap:after,#dnnCPWrap:before,.actionMenu,.actionMenu *,.actionMenu :after,.actionMenu :before,.actionMenu:after,.actionMenu:before,.dnnActionMenu,.dnnActionMenu *,.dnnActionMenu:after,.dnnActionMenu:before,.dnnFormItem,.dnnFormItem *,.dnnFormItem :after,.dnnFormItem :before,.dnnFormItem:after,.dnnFormItem:before,.dnnModalCtrl,.dnnModalCtrl *,.ui-dialog,.ui-dialog *,.ui-dialog:after,.ui-dialog:before,.ui-widget,.ui-widget *,.ui-widget :after,.ui-widget :before{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}.dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close{padding:0}html .dnnModuleManager{padding:0!important}html .actionMenu{display:block!important;opacity:1!important}html .actionMenu>ul{background:#eee}html .actionMenu .dnn_mact{min-width:66px}.DNN07 form .actionMenu ul,.DNN07 form .actionMenu ul:hover{z-index:100000!important}.DNN09 div.actionMenu ul,.DNN09 div.actionMenu ul:hover{z-index:100000!important}div.actionMenu ul.showhover{z-index:1040!important}html .scrolled form .actionMenu ul{z-index:auto!important}html .actionMenu .dnn_mact>li{margin-right:0!important}html .actionMenu .dnn_mact>li:not(:last-child){line-height:0}html .actionMenu .dnn_mact>li.dnn_menu_label,html .actionMenu .dnn_mact>li.dnn_shared{float:right;font-size:.7em;opacity:.8}.mark{background:0 0}.navbar-fixed-bottom,.navbar-fixed-top{z-index:1000}.scrolled .navbar-fixed-bottom,.scrolled .navbar-fixed-top{z-index:1030}.dnnFormItem textarea{max-width:100%}.dnnInstallExtension .dnnInputFileWrapper{margin-bottom:1em}.dnnInstallExtension .dnnBoxLabel{padding-right:.5em}.CP-None .row.Empty,.CP-View .row.Empty{display:none}input,textarea{border-radius:0;box-shadow:none}.DNN07:not(.CP-None) .fixed-top,.DNN08:not(.CP-None) .fixed-top{margin-top:53px}.dnnFormItem input[type=email],.dnnFormItem input[type=password],.dnnFormItem input[type=search],.dnnFormItem input[type=text],.dnnFormItem select,.dnnFormItem textarea{background:none repeat scroll 0 0 #fff;border:1px solid #c9c9c9;border-radius:0;box-shadow:none;margin-bottom:1em;padding:5px 8px;font-size:inherit}.dnnFormItem input[type=email]:active,.dnnFormItem input[type=email]:focus,.dnnFormItem input[type=password]:active,.dnnFormItem input[type=password]:focus,.dnnFormItem input[type=search]:active,.dnnFormItem input[type=search]:focus,.dnnFormItem input[type=text]:active,.dnnFormItem input[type=text]:focus,.dnnFormItem select:active,.dnnFormItem select:focus,.dnnFormItem textarea:active,.dnnFormItem textarea:focus{background:none repeat scroll 0 0 #fff;border:1px solid hsl(192.14285714,50%,50%);box-shadow:0 0 3px 0 hsl(192.14285714,50%,50%);color:#333}.dnnFormItem input[type=submit],.dnnPrimaryAction,a.dnnPrimaryAction{background:hsl(192.14285714,50%,50%);display:inline-block;padding:8px 14px;border-radius:0;color:#fff;text-shadow:none;text-decoration:none;box-shadow:none;border:none}.dnnFormItem input[type=submit]:hover,.dnnPrimaryAction:hover,a.dnnPrimaryAction:hover{background:hsl(192.14285714,50%,70%);border-color:hsl(192.14285714,50%,50%);color:#fff}.dnnFormItem button,.dnnFormItem input[type=button],.dnnFormItem input[type=reset],.dnnLogin .LoginTabGroup span,.dnnSecondaryAction,.dnnTertiaryAction,a.dnnSecondaryAction,a.dnnTertiaryAction,ul.dnnAdminTabNav li a{background:hsl(192.14285714,25%,70%);display:inline-block;padding:8px 14px;border-radius:0;color:#f3f3f3;text-decoration:none;text-shadow:none;box-shadow:none;border:none;font-weight:400}.dnnFormItem button:hover,.dnnFormItem input[type=button]:hover,.dnnFormItem input[type=reset]:hover,.dnnLogin .LoginTabGroup span:hover,.dnnSecondaryAction:hover,.dnnTertiaryAction:hover,a.dnnSecondaryAction:hover,a.dnnTertiaryAction:hover,ul.dnnAdminTabNav li a:hover{background:hsl(192.14285714,25%,50%);color:#f3f3f3}ul.dnnAdminTabNav{height:40px}ul.dnnAdminTabNav li.ui-tabs-active a{background-color:hsl(192.14285714,50%,50%);text-shadow:none;padding:10px 14px 9px}h2.dnnFormSectionHead{margin-top:1em;margin-bottom:.5em;border-bottom:2px solid hsl(192.14285714,50%,50%);font-size:1.7em;line-height:1.5em;letter-spacing:normal}.dnnLogHeader{background:hsl(192.14285714,50%,50%);color:#fff}.dnnFormMessage{border-radius:0;border:none;max-width:100%}.dnnForm .ui-corner-all{border-radius:0}ul.dnnAdminTabNav{border-bottom:solid 2px hsl(192.14285714,50%,50%);margin-top:.5em}ul.dnnAdminTabNav li.ui-tabs-active a{margin-top:0}.LabelEditTextClass,.fffas-select{color:hsl(192.14285714,50%,21%)}.personabar-visible:not(.mobile-menu-open) .pb-offset{margin-left:80px}.ehActions a.aspNetDisabled{border-radius:0;background:#eee;color:#aaa;border:none;padding:8px 14px}div.actionMenu ul.dnn_mact>li>ul>li{border:none;color:#000}div.actionMenu ul.dnn_mact>li>ul>li:nth-child(even){background:#eee}div.actionMenu ul.dnn_mact>li ul a{font-family:inherit;color:#000;font-size:12px}.RadComboBoxDropDown_Default,.RadComboBox_Default,.RadComboBox_Default .rcbInput{font-szie:inherit;color:#000}.RadComboBox_Default{display:inline-block!important}.dnnFormItem>.RadComboBox_Default{width:47%;margin-bottom:18px;max-width:445px}.RadComboBoxDropDown_Default .rcbImage{height:16px;width:16px;display:inline-block;margin-right:8px}.dnnProfileItem>.rcbImage{height:35px;width:35px;display:inline-block;margin:-8px 8px -8px -8px}.RadComboBox_Default .rcbArrowCellLeft,.RadComboBox_Default .rcbArrowCellRight,.RadComboBox_Default .rcbInputCellLeft,.RadComboBox_Default .rcbInputCellRight{background:0 0}.RadComboBox_Default table{border-collapse:separate!important;border-spacing:0}.RadComboBox_Default td.rcbInputCellLeft,.RadComboBox_Default td.rcbInputCellRight{border:1px solid #c9c9c9;-webkit-box-shadow:none;box-shadow:none;padding:0!important;background:#fff;background-image:none;color:#999;text-decoration:none;margin:0!important}.RadComboBox_Default td.rcbInputCellLeft{border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-left-radius:0;-webkit-border-bottom-left-radius:0}.RadComboBox_Default td.rcbInputCellRight{border-left:none;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0}.RadComboBox_Default .rcbFocused td.rcbArrowCellRight,.RadComboBox_Default .rcbFocused td.rcbInputCellLeft,.RadComboBox_Default .rcbFocused td.rcbInputCellRight{border-color:hsl(192.14285714,50%,50%);box-shadow:none}.RadComboBox_Default td.rcbInputCellLeft input[readonly],.RadComboBox_Default td.rcbInputCellRight input[readonly]{cursor:auto}.dnnError td.rcbInputCellLeft,.dnnError td.rcbInputCellRight{border:1px solid red!important;border-right:none!important}.dnnError td.rcbInputCellLeft{border-right:none!important}.dnnError td.rcbInputCellRight{border-left:none!important}.RadComboBox_Default td.rcbArrowCellLeft,.RadComboBox_Default td.rcbArrowCellRight{border:1px solid #c9c9c9;-webkit-box-shadow:none;box-shadow:none;width:12px!important;background:#fff;color:#333;text-decoration:none;vertical-align:middle!important}.RadComboBox_Default td.rcbArrowCellRight{border-left:none;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0}.RadComboBox_Default td.rcbArrowCellLeft{border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-left-radius:0;-webkit-border-bottom-left-radius:0}.dnnError td.rcbArrowCellLeft,.dnnError td.rcbArrowCellRight{border:1px solid red!important}.dnnError td.rcbArrowCellRight{border-left:none!important}.dnnError td.rcbArrowCellLeft{border-right:none!important}.RadComboBox_Default td.rcbArrowCellLeft a,.RadComboBox_Default td.rcbArrowCellRight a{background:transparent url("/images/dnnSpinnerDownArrow.png") no-repeat!important;background-position:bottom center!important;padding-top:8px!important;height:0!important;cursor:pointer}.RadComboBox_Default .rcbInputCell .rcbEmptyMessage{color:#333}.RadComboBox_Default .rcbInput{margin:0!important;background:#fff!important;border:none!important;box-shadow:none!important;-webkit-box-shadow:none!important;padding:9px!important}.RadComboBoxDropDown,div.RadComboBoxDropDown_Default{background:0 0;border:none!important;font-szie:inherit;position:absolute}.RadComboBoxDropDown_Default .rcbFooter{background-color:hsl(192.14285714,50%,87%);background-position:0 -110px;border-top-color:#d5d5d5}div.RadComboBoxDropDown_Default .rcbHeader{font-size:13px;font-weight:700;border-bottom:0;padding:8px 7px 0}.RadComboBoxDropDown_Default .rcbHovered,.RadComboBoxDropDown_Default .rcbItem{line-height:1.5}.RadComboBoxDropDown_Default .rcbItem em{background:#e5e5e5}.RadComboBoxDropDown_Default .rcbHovered{background:hsl(192.14285714,50%,87%);color:#000}.RadComboBoxDropDown_Default .rcbSeparator{color:#444;background:#d9dadc}.RadComboBoxDropDown_Default .rcbDisabled,.RadComboBox_Default .rcbDisabled .rcbInputCell .rcbInput{color:#999;padding:8px}.RadComboBoxDropDown_Default .rcbLoading{background:#f0f0f0}.RadComboBoxDropDown_Default .rcbMoreResults{border-top-color:#c6c7d2;background-position:0 -132px;background-color:#e6e6e6;color:#606060}.RadComboBoxDropDown_Default .rcbMoreResults a{background-position:-157px -94px;color:#606060}.RadComboBoxDropDown_Default .rcbScroll{border:1px solid #c9c9c9!important;-webkit-box-shadow:0 2px 0 0 #f2f2f2;box-shadow:0 2px 0 0 #f2f2f2;background:#fff;margin-left:2px!important;border-bottom-left-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;overflow:auto;position:relative}.RadComboBoxDropDown_Default .rcbList{position:relative;list-style-type:none!important;margin:0!important;padding:0!important}.RadComboBoxDropDown_Default .rcbHovered,.RadComboBoxDropDown_Default .rcbItem{padding:8px;border-top:1px solid #c9c9c9;font-szie:inherit;color:#444;cursor:pointer;text-shadow:none;margin:0}.RadComboBoxDropDown_Default_rtl .jspScrollable .jspContainer .rcbList{margin:0 9px 0 -9px!important}.SkinListHeader,.dnnOptGroupItem{background:0 0!important;color:#000!important;font-weight:700!important;border-bottom:2px solid #000!important}.dnnOptItem{padding-left:20px!important}.RadTreeView{white-space:nowrap;cursor:default}.RadTreeView .rtBot,.RadTreeView .rtMid,.RadTreeView .rtTop,.RadTreeView .rtUL{zoom:1}.RadTreeView .rtChk,.RadTreeView .rtImg,.RadTreeView .rtIn,.RadTreeView .rtSp{vertical-align:middle}.RadTreeView .rtUL{margin:0;padding:0;-moz-user-select:-moz-none}.RadTreeView .rtLI{list-style-image:none;list-style-position:outside;list-style:none}.RadTreeView .rtUL .rtLI .rtUL{padding-left:20px}.RadTreeView .rtBot,.RadTreeView .rtMid,.RadTreeView .rtTop{padding:1px 0 1px 20px}.RadTreeView .rtMinus,.RadTreeView .rtPlus{font-size:0;padding:0;display:-moz-inline-box;display:inline-block;vertical-align:top;cursor:pointer;width:11px;height:11px;background-repeat:no-repeat}* html .RadTreeView .rtMinus,* html .RadTreeView .rtPlus{margin-right:1px}.RadTreeView .rtPlus{background-position:0 0}.RadTreeView .rtPlusHover{background-position:0 -22px}.RadTreeView .rtMinus{background-position:0 -11px}.RadTreeView .rtMinusHover{background-position:0 -33px}.RadTreeView .rtChecked,.RadTreeView .rtIndeterminate,.RadTreeView .rtUnchecked{display:-moz-inline-box;display:inline-block;width:13px;height:13px;vertical-align:middle;margin:0 3px 0 0;line-height:0;font-size:0}.RadTreeView .rtChecked{background-position:0 0}.RadTreeView .rtUnchecked{background-position:0 -13px}.RadTreeView .rtIndeterminate{background-position:0 -26px}.RadTreeView .rtSp{display:-moz-inline-box;display:inline-block;width:1px;margin-left:-1px;height:22px}.RadTreeView .rtChk{margin:0 2px;padding:0;width:12px;height:12px}.RadTreeView .rtIn{margin-left:1px;padding:4px 3px 3px;text-decoration:none}.RadTreeView a.rtIn{cursor:pointer}.RadTreeView div.rtIn{display:-moz-inline-block;display:inline-block;vertical-align:top}* html .RadTreeView_rtl .rtIn{padding:2px 3px}* html .RadTreeView div.rtIn{display:inline-block}* html .RadTreeView div.rtIn{display:inline}.RadTreeView .rtTemplate,.RadTreeView input{-moz-user-select:text}.RadTreeView .rtLoadingIcon{display:-moz-inline-box;display:inline-block;vertical-align:text-top;width:21px;height:16px;margin-top:-1px;overflow:hidden;text-indent:-9999px;font-size:0;background-repeat:no-repeat;background-position:2px 0}* html .RadTreeView .rtLoadingIcon{margin:0}.RadTreeView .rtLoadingBelow{display:block}* html .RadTreeView_rtl .rtLoadingIcon{text-indent:0}.RadTreeView .rtHover .rtIn,.RadTreeView .rtSelected .rtIn{padding:3px 2px 2px;border-width:1px;border-style:solid;background-repeat:repeat-x;background-position:0 0}* html .RadTreeView_rtl .rtHover .rtIn,* html .RadTreeView_rtl .rtSelected .rtIn{padding:1px 2px}.RadTreeView .rtEdit *{white-space:nowrap!important}.RadTreeView .rtEdit .rtIn,.RadTreeView .rtEdit .rtIn input{outline:0;cursor:text}.RadTreeView .rtLI .rtEdit .rtIn{border-width:1px;border-style:solid;padding:2px 1px 1px;height:1.4em;text-decoration:none;vertical-align:middle}* html .RadTreeView .rtLI .rtEdit .rtIn{padding:0 1px}.RadTreeView .rtEdit .rtIn input{height:1.4em;line-height:1.4em;border:0;margin:0;padding:0;background:0 0}.RadTreeView .rtLines .rtFirst .rtUL,.RadTreeView .rtLines .rtLI{background-repeat:repeat-y;background-position:0 0}.RadTreeView_rtl .rtLines .rtFirst .rtUL,.RadTreeView_rtl .rtLines .rtLI{background-repeat:repeat-y;background-position:100% 0}.RadTreeView .rtLines .rtFirst{background-repeat:no-repeat;background-position:0 1.273em}.RadTreeView_rtl .rtLines .rtFirst{background-repeat:no-repeat;background-position:100% 1.273em}.RadTreeView .rtLines .rtFirst .rtUL{background-repeat:repeat-y;background-position:0 1.273em}.RadTreeView_rtl .rtLines .rtFirst .rtUL{background-repeat:repeat-y;background-position:100% 1.273em}.RadTreeView .rtLines .rtLast,.RadTreeView .rtLines .rtLast .rtUL{background:0 0}.RadTreeView .rtLines .rtBot,.RadTreeView .rtLines .rtMid,.RadTreeView .rtLines .rtTop{background-repeat:no-repeat;background-position:0 0}.RadTreeView_rtl .rtLines .rtBot,.RadTreeView_rtl .rtLines .rtMid,.RadTreeView_rtl .rtLines .rtTop{background-repeat:no-repeat;background-position:100% 0}.rtDropAbove,.rtDropBelow{border:1px dotted #000;font-size:3px;line-height:3px;height:3px;margin-top:-1px}.rtDropAbove{border-bottom:0}.rtDropBelow{border-top:0}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus{position:relative}* html .RadTreeView_rtl .rtMinus,* html .RadTreeView_rtl .rtPlus{position:static}* html .RadTreeView_rtl .rtIn,* html .RadTreeView_rtl .rtLI{zoom:1}* html .RadTreeView_rtl .rtIn{margin-top:-1px}.RadTreeView_rtl .rtUL .rtLI .rtUL{padding-right:15px;padding-left:0}.RadTreeView_rtl .rtBot,.RadTreeView_rtl .rtMid,.RadTreeView_rtl .rtTop{padding:1px 20px 1px 0;margin:0}.RadTreeView_rtl .rtPlus{background-position:-11px 0}.RadTreeView_rtl .rtPlusHover{background-position:-11px -22px}.RadTreeView_rtl .rtMinus{background-position:-11px -11px}.RadTreeView_rtl .rtMinusHover{background-position:-11px -33px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus{margin-right:7px;right:-20px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus,x:-moz-any-link{margin-right:-11px;right:-8px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus,x:-moz-any-link,x:default{margin-right:7px;right:-20px}* html .RadTreeView_rtl .rtMinus,* html .RadTreeView_rtl .rtPlus{margin-right:-13px;right:0}@media screen and (min-width:50px){:root .RadTreeView_rtl .rtMinus,:root .RadTreeView_rtl .rtPlus{right:0}}@media all and (-webkit-max-device-pixel-ratio:10000),not all and (-webkit-min-device-pixel-ratio:0){:root .RadTreeView_rtl .rtMinus,:root .RadTreeView_rtl .rtPlus{position:relative;margin-left:2px;margin-right:-13px;right:-15px}}div.RadTreeView_designtime .rtBot,div.RadTreeView_designtime .rtMid,div.RadTreeView_designtime .rtTop{position:relative}div.RadTreeView_designtime .rtMinus,div.RadTreeView_designtime .rtPlus{margin:0;position:absolute;left:3px;top:4px}.RadTreeView{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.rtTouchDragClue{margin-top:-50px}.RadTreeView_Default,.RadTreeView_Default .rtEdit .rtIn input,.RadTreeView_Default a.rtIn{color:#000;font:12px/18px "Segoe UI",Arial,sans-serif}.RadTreeView_Default .rtMinus,.RadTreeView_Default .rtPlus{background-image:url("/Portals/_default/skins/cyberpunk/Images/PlusMinus.png")}.RadTreeView_Default .rtChecked,.RadTreeView_Default .rtIndeterminate,.RadTreeView_Default .rtUnchecked{background-image:url("/Portals/_default/skins/cyberpunk/Images/radFormToggleSprite.png")}.RadTreeView_Default .rtHover .rtIn{color:#000;border-color:#b5b5b5 #b5b5b5 #9e9e9e;background-color:#c5c5c5;background-image:url("/Portals/_default/skins/cyberpunk/Images/ItemHoveredBg.png")}.RadTreeView_Default .rtSelected .rtIn{color:#fff;border-color:#8d8d8d #7e7e7e #6c6c6c;background-color:#828282;background-image:url("/Portals/_default/skins/cyberpunk/Images/ItemSelectedBg.png")}.RadTreeView_Default .rtSelected .rtLoadingAfter,.RadTreeView_Default .rtSelected .rtLoadingBefore,.RadTreeView_Default .rtSelected .rtLoadingBelow{color:#333}.RadTreeView_Default .rtLoadingIcon{background-image:url("/Portals/_default/skins/cyberpunk/Images/LoadingIcon.gif")}.RadTreeView_Default .rtLI .rtEdit .rtIn{border-color:#6c6c6c;background:#fff}.RadTreeView_Default .rtDisabled .rtIn,.RadTreeView_Default_disabled .rtIn{color:#ccc}.RadTreeView_Default .rtLines .rtFirst .rtUL,.RadTreeView_Default .rtLines .rtLI{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default_rtl .rtLines .rtFirst .rtUL,.RadTreeView_Default_rtl .rtLines .rtLI{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan_rtl.png")}.RadTreeView_Default .rtLines .rtFirst,.RadTreeView_Default .rtLines .rtFirst .rtUL{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default_rtl .rtLines .rtFirst,.RadTreeView_Default_rtl .rtLines .rtFirst .rtUL{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default .rtLines .rtLast,.RadTreeView_Default .rtLines .rtLast .rtUL{background-image:none}.RadTreeView_Default .rtLines .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvTopLine.png")}.RadTreeView_Default_rtl .rtLines .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvTopLine_rtl.png")}.RadTreeView_Default .rtLines .rtMid{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvMiddleLine.png")}.RadTreeView_Default_rtl .rtLines .rtMid{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvMiddleLine_rtl.png")}.RadTreeView_Default .rtLines .rtBot{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvBottomLine.png")}.RadTreeView_Default_rtl .rtLines .rtBot{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvBottomLine_rtl.png")}.RadTreeView_Default .rtLines .rtLast .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvSingleLine.png")}.RadTreeView_Default_rtl .rtLines .rtLast .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvSingleLine_rtl.png")}.CP-Edit .DnnModule{opacity:1}.CP-Edit .MainPanes>div>.row{border-bottom:solid 1px hsl(192.14285714,25%,50%);padding-bottom:10px;margin-bottom:30px}.CP-Layout .DnnModule{min-height:50px}.CP-Layout .DnnModule:before{content:"Module"}.CP-Edit .DnnModule,.CP-Layout .DnnModule{background:rgba(255,255,255,.5);border-right:solid 4px grey}.CP-Edit footer .DnnModule,.CP-Edit footer.DnnModule,.CP-Layout footer .DnnModule,.CP-Layout footer.DnnModule{background:rgba(255,255,255,.1)}.CP-Edit .Pane,.CP-Layout .Pane{background:rgba(200,200,200,.2);margin-bottom:1.5em;padding-bottom:1.8em;border-right:solid 4px hsl(192.14285714,25%,70%)}.CP-Edit .Pane:before,.CP-Layout .Pane:before{content:"Pane";color:hsl(192.14285714,25%,70%);text-align:right;font-size:.7rem;font-weight:700;padding:.2em .5em .5em;text-transform:uppercase;position:relative;background:0 0;display:block;left:auto;top:auto;line-height:1.2em;height:auto;opacity:1;padding-bottom:1em;content:"Pane: " attr(data-name)}.DNN07.CP-Edit .Pane:before,.DNN07.CP-Layout .Pane:before,.DNN08.CP-Edit .Pane:before,.DNN08.CP-Layout .Pane:before{content:"Pane"}.dnnDragHint{color:#b3b3b3;background:#fff}.dragZoneStriped .dnnDragHint{background:repeating-linear-gradient(-45deg,#fff,#fff 20px,#f3f3f3 20px,#f3f3f3 40px)}.dnnDragHint:before{content:"Module";display:inline-block;font-size:.7rem;font-weight:700;padding:.2em .5em .5em;text-transform:uppercase;position:relative;background:0 0;display:block;left:auto;top:auto;line-height:1.2em;height:auto;opacity:1}@media screen and (min-width:768px){.Expands{position:relative}.CP-Edit .Expands,.CP-Layout .Expands{min-height:200px}.CP-Edit .Expands:after,.CP-Layout .Expands:after{content:"#";position:absolute;bottom:-20px;left:50%;margin-left:-10px;width:0;height:0;border-left:15px solid transparent;border-right:15px solid transparent;border-top:15px solid rgba(128,128,128,.5);overflow:hidden}}@media screen and (min-width:768px){.col-sm-right{float:right}.CP-Edit .GoesAbove,.CP-Edit .GoesBelow{margin-bottom:30px}}.CP-Edit .GoesAbove:before{content:"Above Siblings on Mobile";display:block;text-align:center;font-size:.8em;padding:.3em;background:rgba(0,0,0,.1)}.CP-Edit .GoesBelow:before{content:"Below Siblings on Mobile";display:block;text-align:center;font-size:.8em;padding:.3em;background:rgba(0,0,0,.1)}.Col1{color:#57ddff}.Col1Bg{background:#57ddff}a.Col1Bg:link,a.Col1Bg:visited{color:#000!important}.Col1BgTxt{color:#000}.Col1BgTxt .h1,.Col1BgTxt .h2,.Col1BgTxt .h3,.Col1BgTxt .h4,.Col1BgTxt .h5,.Col1BgTxt .h6,.Col1BgTxt h1,.Col1BgTxt h2,.Col1BgTxt h3,.Col1BgTxt h4,.Col1BgTxt h5,.Col1BgTxt h6{color:inherit}.Col1BgTxt a:link,.Col1BgTxt a:visited{color:#57ddff}.Col1BgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SuperLight{color:hsl(192.14285714,50%,95%)}.Col1SuperLightBg{background:hsl(192.14285714,50%,95%)}a.Col1SuperLightBg:link,a.Col1SuperLightBg:visited{color:#000!important}.Col1SuperLightBgTxt{color:#000}.Col1SuperLightBgTxt .h1,.Col1SuperLightBgTxt .h2,.Col1SuperLightBgTxt .h3,.Col1SuperLightBgTxt .h4,.Col1SuperLightBgTxt .h5,.Col1SuperLightBgTxt .h6,.Col1SuperLightBgTxt h1,.Col1SuperLightBgTxt h2,.Col1SuperLightBgTxt h3,.Col1SuperLightBgTxt h4,.Col1SuperLightBgTxt h5,.Col1SuperLightBgTxt h6{color:inherit}.Col1SuperLightBgTxt a:link,.Col1SuperLightBgTxt a:visited{color:#57ddff}.Col1SuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1ExtraLight{color:hsl(192.14285714,50%,87%)}.Col1ExtraLightBg{background:hsl(192.14285714,50%,87%)}a.Col1ExtraLightBg:link,a.Col1ExtraLightBg:visited{color:#000!important}.Col1ExtraLightBgTxt{color:#000}.Col1ExtraLightBgTxt .h1,.Col1ExtraLightBgTxt .h2,.Col1ExtraLightBgTxt .h3,.Col1ExtraLightBgTxt .h4,.Col1ExtraLightBgTxt .h5,.Col1ExtraLightBgTxt .h6,.Col1ExtraLightBgTxt h1,.Col1ExtraLightBgTxt h2,.Col1ExtraLightBgTxt h3,.Col1ExtraLightBgTxt h4,.Col1ExtraLightBgTxt h5,.Col1ExtraLightBgTxt h6{color:inherit}.Col1ExtraLightBgTxt a:link,.Col1ExtraLightBgTxt a:visited{color:#57ddff}.Col1ExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1Light{color:hsl(192.14285714,50%,70%)}.Col1LightBg{background:hsl(192.14285714,50%,70%)}a.Col1LightBg:link,a.Col1LightBg:visited{color:#000!important}.Col1LightBgTxt{color:#000}.Col1LightBgTxt .h1,.Col1LightBgTxt .h2,.Col1LightBgTxt .h3,.Col1LightBgTxt .h4,.Col1LightBgTxt .h5,.Col1LightBgTxt .h6,.Col1LightBgTxt h1,.Col1LightBgTxt h2,.Col1LightBgTxt h3,.Col1LightBgTxt h4,.Col1LightBgTxt h5,.Col1LightBgTxt h6{color:inherit}.Col1LightBgTxt a:link,.Col1LightBgTxt a:visited{color:#57ddff}.Col1LightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1Medium{color:hsl(192.14285714,50%,50%)}.Col1MediumBg{background:hsl(192.14285714,50%,50%)}a.Col1MediumBg:link,a.Col1MediumBg:visited{color:#fff!important}.Col1MediumBgTxt{color:#fff}.Col1MediumBgTxt .h1,.Col1MediumBgTxt .h2,.Col1MediumBgTxt .h3,.Col1MediumBgTxt .h4,.Col1MediumBgTxt .h5,.Col1MediumBgTxt .h6,.Col1MediumBgTxt h1,.Col1MediumBgTxt h2,.Col1MediumBgTxt h3,.Col1MediumBgTxt h4,.Col1MediumBgTxt h5,.Col1MediumBgTxt h6{color:inherit}.Col1MediumBgTxt a:link,.Col1MediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1MediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1Dark{color:hsl(192.14285714,50%,30%)}.Col1DarkBg{background:hsl(192.14285714,50%,30%)}a.Col1DarkBg:link,a.Col1DarkBg:visited{color:#fff!important}.Col1DarkBgTxt{color:#fff}.Col1DarkBgTxt .h1,.Col1DarkBgTxt .h2,.Col1DarkBgTxt .h3,.Col1DarkBgTxt .h4,.Col1DarkBgTxt .h5,.Col1DarkBgTxt .h6,.Col1DarkBgTxt h1,.Col1DarkBgTxt h2,.Col1DarkBgTxt h3,.Col1DarkBgTxt h4,.Col1DarkBgTxt h5,.Col1DarkBgTxt h6{color:inherit}.Col1DarkBgTxt a:link,.Col1DarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1ExtraDark{color:hsl(192.14285714,50%,21%)}.Col1ExtraDarkBg{background:hsl(192.14285714,50%,21%)}a.Col1ExtraDarkBg:link,a.Col1ExtraDarkBg:visited{color:#fff!important}.Col1ExtraDarkBgTxt{color:#fff}.Col1ExtraDarkBgTxt .h1,.Col1ExtraDarkBgTxt .h2,.Col1ExtraDarkBgTxt .h3,.Col1ExtraDarkBgTxt .h4,.Col1ExtraDarkBgTxt .h5,.Col1ExtraDarkBgTxt .h6,.Col1ExtraDarkBgTxt h1,.Col1ExtraDarkBgTxt h2,.Col1ExtraDarkBgTxt h3,.Col1ExtraDarkBgTxt h4,.Col1ExtraDarkBgTxt h5,.Col1ExtraDarkBgTxt h6{color:inherit}.Col1ExtraDarkBgTxt a:link,.Col1ExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1ExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SuperDark{color:hsl(192.14285714,50%,15%)}.Col1SuperDarkBg{background:hsl(192.14285714,50%,15%)}a.Col1SuperDarkBg:link,a.Col1SuperDarkBg:visited{color:#fff!important}.Col1SuperDarkBgTxt{color:#fff}.Col1SuperDarkBgTxt .h1,.Col1SuperDarkBgTxt .h2,.Col1SuperDarkBgTxt .h3,.Col1SuperDarkBgTxt .h4,.Col1SuperDarkBgTxt .h5,.Col1SuperDarkBgTxt .h6,.Col1SuperDarkBgTxt h1,.Col1SuperDarkBgTxt h2,.Col1SuperDarkBgTxt h3,.Col1SuperDarkBgTxt h4,.Col1SuperDarkBgTxt h5,.Col1SuperDarkBgTxt h6{color:inherit}.Col1SuperDarkBgTxt a:link,.Col1SuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatSuperLight{color:hsl(192.14285714,75%,95%)}.Col1SatSuperLightBg{background:hsl(192.14285714,75%,95%)}a.Col1SatSuperLightBg:link,a.Col1SatSuperLightBg:visited{color:#000!important}.Col1SatSuperLightBgTxt{color:#000}.Col1SatSuperLightBgTxt .h1,.Col1SatSuperLightBgTxt .h2,.Col1SatSuperLightBgTxt .h3,.Col1SatSuperLightBgTxt .h4,.Col1SatSuperLightBgTxt .h5,.Col1SatSuperLightBgTxt .h6,.Col1SatSuperLightBgTxt h1,.Col1SatSuperLightBgTxt h2,.Col1SatSuperLightBgTxt h3,.Col1SatSuperLightBgTxt h4,.Col1SatSuperLightBgTxt h5,.Col1SatSuperLightBgTxt h6{color:inherit}.Col1SatSuperLightBgTxt a:link,.Col1SatSuperLightBgTxt a:visited{color:#57ddff}.Col1SatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatExtraLight{color:hsl(192.14285714,75%,87%)}.Col1SatExtraLightBg{background:hsl(192.14285714,75%,87%)}a.Col1SatExtraLightBg:link,a.Col1SatExtraLightBg:visited{color:#000!important}.Col1SatExtraLightBgTxt{color:#000}.Col1SatExtraLightBgTxt .h1,.Col1SatExtraLightBgTxt .h2,.Col1SatExtraLightBgTxt .h3,.Col1SatExtraLightBgTxt .h4,.Col1SatExtraLightBgTxt .h5,.Col1SatExtraLightBgTxt .h6,.Col1SatExtraLightBgTxt h1,.Col1SatExtraLightBgTxt h2,.Col1SatExtraLightBgTxt h3,.Col1SatExtraLightBgTxt h4,.Col1SatExtraLightBgTxt h5,.Col1SatExtraLightBgTxt h6{color:inherit}.Col1SatExtraLightBgTxt a:link,.Col1SatExtraLightBgTxt a:visited{color:#57ddff}.Col1SatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatLight{color:hsl(192.14285714,75%,70%)}.Col1SatLightBg{background:hsl(192.14285714,75%,70%)}a.Col1SatLightBg:link,a.Col1SatLightBg:visited{color:#000!important}.Col1SatLightBgTxt{color:#000}.Col1SatLightBgTxt .h1,.Col1SatLightBgTxt .h2,.Col1SatLightBgTxt .h3,.Col1SatLightBgTxt .h4,.Col1SatLightBgTxt .h5,.Col1SatLightBgTxt .h6,.Col1SatLightBgTxt h1,.Col1SatLightBgTxt h2,.Col1SatLightBgTxt h3,.Col1SatLightBgTxt h4,.Col1SatLightBgTxt h5,.Col1SatLightBgTxt h6{color:inherit}.Col1SatLightBgTxt a:link,.Col1SatLightBgTxt a:visited{color:#57ddff}.Col1SatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatMedium{color:hsl(192.14285714,75%,50%)}.Col1SatMediumBg{background:hsl(192.14285714,75%,50%)}a.Col1SatMediumBg:link,a.Col1SatMediumBg:visited{color:#fff!important}.Col1SatMediumBgTxt{color:#fff}.Col1SatMediumBgTxt .h1,.Col1SatMediumBgTxt .h2,.Col1SatMediumBgTxt .h3,.Col1SatMediumBgTxt .h4,.Col1SatMediumBgTxt .h5,.Col1SatMediumBgTxt .h6,.Col1SatMediumBgTxt h1,.Col1SatMediumBgTxt h2,.Col1SatMediumBgTxt h3,.Col1SatMediumBgTxt h4,.Col1SatMediumBgTxt h5,.Col1SatMediumBgTxt h6{color:inherit}.Col1SatMediumBgTxt a:link,.Col1SatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatDark{color:hsl(192.14285714,75%,30%)}.Col1SatDarkBg{background:hsl(192.14285714,75%,30%)}a.Col1SatDarkBg:link,a.Col1SatDarkBg:visited{color:#fff!important}.Col1SatDarkBgTxt{color:#fff}.Col1SatDarkBgTxt .h1,.Col1SatDarkBgTxt .h2,.Col1SatDarkBgTxt .h3,.Col1SatDarkBgTxt .h4,.Col1SatDarkBgTxt .h5,.Col1SatDarkBgTxt .h6,.Col1SatDarkBgTxt h1,.Col1SatDarkBgTxt h2,.Col1SatDarkBgTxt h3,.Col1SatDarkBgTxt h4,.Col1SatDarkBgTxt h5,.Col1SatDarkBgTxt h6{color:inherit}.Col1SatDarkBgTxt a:link,.Col1SatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatExtraDark{color:hsl(192.14285714,75%,21%)}.Col1SatExtraDarkBg{background:hsl(192.14285714,75%,21%)}a.Col1SatExtraDarkBg:link,a.Col1SatExtraDarkBg:visited{color:#fff!important}.Col1SatExtraDarkBgTxt{color:#fff}.Col1SatExtraDarkBgTxt .h1,.Col1SatExtraDarkBgTxt .h2,.Col1SatExtraDarkBgTxt .h3,.Col1SatExtraDarkBgTxt .h4,.Col1SatExtraDarkBgTxt .h5,.Col1SatExtraDarkBgTxt .h6,.Col1SatExtraDarkBgTxt h1,.Col1SatExtraDarkBgTxt h2,.Col1SatExtraDarkBgTxt h3,.Col1SatExtraDarkBgTxt h4,.Col1SatExtraDarkBgTxt h5,.Col1SatExtraDarkBgTxt h6{color:inherit}.Col1SatExtraDarkBgTxt a:link,.Col1SatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatSuperDark{color:hsl(192.14285714,75%,15%)}.Col1SatSuperDarkBg{background:hsl(192.14285714,75%,15%)}a.Col1SatSuperDarkBg:link,a.Col1SatSuperDarkBg:visited{color:#fff!important}.Col1SatSuperDarkBgTxt{color:#fff}.Col1SatSuperDarkBgTxt .h1,.Col1SatSuperDarkBgTxt .h2,.Col1SatSuperDarkBgTxt .h3,.Col1SatSuperDarkBgTxt .h4,.Col1SatSuperDarkBgTxt .h5,.Col1SatSuperDarkBgTxt .h6,.Col1SatSuperDarkBgTxt h1,.Col1SatSuperDarkBgTxt h2,.Col1SatSuperDarkBgTxt h3,.Col1SatSuperDarkBgTxt h4,.Col1SatSuperDarkBgTxt h5,.Col1SatSuperDarkBgTxt h6{color:inherit}.Col1SatSuperDarkBgTxt a:link,.Col1SatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperLight{color:hsl(192.14285714,25%,95%)}.Col1DesatSuperLightBg{background:hsl(192.14285714,25%,95%)}a.Col1DesatSuperLightBg:link,a.Col1DesatSuperLightBg:visited{color:#000!important}.Col1DesatSuperLightBgTxt{color:#000}.Col1DesatSuperLightBgTxt .h1,.Col1DesatSuperLightBgTxt .h2,.Col1DesatSuperLightBgTxt .h3,.Col1DesatSuperLightBgTxt .h4,.Col1DesatSuperLightBgTxt .h5,.Col1DesatSuperLightBgTxt .h6,.Col1DesatSuperLightBgTxt h1,.Col1DesatSuperLightBgTxt h2,.Col1DesatSuperLightBgTxt h3,.Col1DesatSuperLightBgTxt h4,.Col1DesatSuperLightBgTxt h5,.Col1DesatSuperLightBgTxt h6{color:inherit}.Col1DesatSuperLightBgTxt a:link,.Col1DesatSuperLightBgTxt a:visited{color:#57ddff}.Col1DesatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatExtraLight{color:hsl(192.14285714,25%,87%)}.Col1DesatExtraLightBg{background:hsl(192.14285714,25%,87%)}a.Col1DesatExtraLightBg:link,a.Col1DesatExtraLightBg:visited{color:#000!important}.Col1DesatExtraLightBgTxt{color:#000}.Col1DesatExtraLightBgTxt .h1,.Col1DesatExtraLightBgTxt .h2,.Col1DesatExtraLightBgTxt .h3,.Col1DesatExtraLightBgTxt .h4,.Col1DesatExtraLightBgTxt .h5,.Col1DesatExtraLightBgTxt .h6,.Col1DesatExtraLightBgTxt h1,.Col1DesatExtraLightBgTxt h2,.Col1DesatExtraLightBgTxt h3,.Col1DesatExtraLightBgTxt h4,.Col1DesatExtraLightBgTxt h5,.Col1DesatExtraLightBgTxt h6{color:inherit}.Col1DesatExtraLightBgTxt a:link,.Col1DesatExtraLightBgTxt a:visited{color:#57ddff}.Col1DesatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatLight{color:hsl(192.14285714,25%,70%)}.Col1DesatLightBg{background:hsl(192.14285714,25%,70%)}a.Col1DesatLightBg:link,a.Col1DesatLightBg:visited{color:#000!important}.Col1DesatLightBgTxt{color:#000}.Col1DesatLightBgTxt .h1,.Col1DesatLightBgTxt .h2,.Col1DesatLightBgTxt .h3,.Col1DesatLightBgTxt .h4,.Col1DesatLightBgTxt .h5,.Col1DesatLightBgTxt .h6,.Col1DesatLightBgTxt h1,.Col1DesatLightBgTxt h2,.Col1DesatLightBgTxt h3,.Col1DesatLightBgTxt h4,.Col1DesatLightBgTxt h5,.Col1DesatLightBgTxt h6{color:inherit}.Col1DesatLightBgTxt a:link,.Col1DesatLightBgTxt a:visited{color:#57ddff}.Col1DesatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatMedium{color:hsl(192.14285714,25%,50%)}.Col1DesatMediumBg{background:hsl(192.14285714,25%,50%)}a.Col1DesatMediumBg:link,a.Col1DesatMediumBg:visited{color:#fff!important}.Col1DesatMediumBgTxt{color:#fff}.Col1DesatMediumBgTxt .h1,.Col1DesatMediumBgTxt .h2,.Col1DesatMediumBgTxt .h3,.Col1DesatMediumBgTxt .h4,.Col1DesatMediumBgTxt .h5,.Col1DesatMediumBgTxt .h6,.Col1DesatMediumBgTxt h1,.Col1DesatMediumBgTxt h2,.Col1DesatMediumBgTxt h3,.Col1DesatMediumBgTxt h4,.Col1DesatMediumBgTxt h5,.Col1DesatMediumBgTxt h6{color:inherit}.Col1DesatMediumBgTxt a:link,.Col1DesatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatDark{color:hsl(192.14285714,25%,30%)}.Col1DesatDarkBg{background:hsl(192.14285714,25%,30%)}a.Col1DesatDarkBg:link,a.Col1DesatDarkBg:visited{color:#fff!important}.Col1DesatDarkBgTxt{color:#fff}.Col1DesatDarkBgTxt .h1,.Col1DesatDarkBgTxt .h2,.Col1DesatDarkBgTxt .h3,.Col1DesatDarkBgTxt .h4,.Col1DesatDarkBgTxt .h5,.Col1DesatDarkBgTxt .h6,.Col1DesatDarkBgTxt h1,.Col1DesatDarkBgTxt h2,.Col1DesatDarkBgTxt h3,.Col1DesatDarkBgTxt h4,.Col1DesatDarkBgTxt h5,.Col1DesatDarkBgTxt h6{color:inherit}.Col1DesatDarkBgTxt a:link,.Col1DesatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatExtraDark{color:hsl(192.14285714,25%,21%)}.Col1DesatExtraDarkBg{background:hsl(192.14285714,25%,21%)}a.Col1DesatExtraDarkBg:link,a.Col1DesatExtraDarkBg:visited{color:#fff!important}.Col1DesatExtraDarkBgTxt{color:#fff}.Col1DesatExtraDarkBgTxt .h1,.Col1DesatExtraDarkBgTxt .h2,.Col1DesatExtraDarkBgTxt .h3,.Col1DesatExtraDarkBgTxt .h4,.Col1DesatExtraDarkBgTxt .h5,.Col1DesatExtraDarkBgTxt .h6,.Col1DesatExtraDarkBgTxt h1,.Col1DesatExtraDarkBgTxt h2,.Col1DesatExtraDarkBgTxt h3,.Col1DesatExtraDarkBgTxt h4,.Col1DesatExtraDarkBgTxt h5,.Col1DesatExtraDarkBgTxt h6{color:inherit}.Col1DesatExtraDarkBgTxt a:link,.Col1DesatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperDark{color:hsl(192.14285714,25%,15%)}.Col1DesatSuperDarkBg{background:hsl(192.14285714,25%,15%)}a.Col1DesatSuperDarkBg:link,a.Col1DesatSuperDarkBg:visited{color:#fff!important}.Col1DesatSuperDarkBgTxt{color:#fff}.Col1DesatSuperDarkBgTxt .h1,.Col1DesatSuperDarkBgTxt .h2,.Col1DesatSuperDarkBgTxt .h3,.Col1DesatSuperDarkBgTxt .h4,.Col1DesatSuperDarkBgTxt .h5,.Col1DesatSuperDarkBgTxt .h6,.Col1DesatSuperDarkBgTxt h1,.Col1DesatSuperDarkBgTxt h2,.Col1DesatSuperDarkBgTxt h3,.Col1DesatSuperDarkBgTxt h4,.Col1DesatSuperDarkBgTxt h5,.Col1DesatSuperDarkBgTxt h6{color:inherit}.Col1DesatSuperDarkBgTxt a:link,.Col1DesatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1Bg-10{background-color:rgba(87,221,255,.1)}.Col1Bg-20{background-color:rgba(87,221,255,.2)}.Col1Bg-30{background-color:rgba(87,221,255,.3)}.Col1Bg-40{background-color:rgba(87,221,255,.4)}.Col1Bg-50{background-color:rgba(87,221,255,.5)}.Col1Bg-60{background-color:rgba(87,221,255,.6)}.Col1Bg-70{background-color:rgba(87,221,255,.7)}.Col1Bg-80{background-color:rgba(87,221,255,.8)}.Col1Bg-90{background-color:rgba(87,221,255,.9)}.Col2{color:#fcf91e}.Col2Bg{background:#fcf91e}a.Col2Bg:link,a.Col2Bg:visited{color:#000!important}.Col2BgTxt{color:#000}.Col2BgTxt .h1,.Col2BgTxt .h2,.Col2BgTxt .h3,.Col2BgTxt .h4,.Col2BgTxt .h5,.Col2BgTxt .h6,.Col2BgTxt h1,.Col2BgTxt h2,.Col2BgTxt h3,.Col2BgTxt h4,.Col2BgTxt h5,.Col2BgTxt h6{color:inherit}.Col2BgTxt a:link,.Col2BgTxt a:visited{color:#57ddff}.Col2BgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SuperLight{color:hsl(59.18918919,50%,95%)}.Col2SuperLightBg{background:hsl(59.18918919,50%,95%)}a.Col2SuperLightBg:link,a.Col2SuperLightBg:visited{color:#000!important}.Col2SuperLightBgTxt{color:#000}.Col2SuperLightBgTxt .h1,.Col2SuperLightBgTxt .h2,.Col2SuperLightBgTxt .h3,.Col2SuperLightBgTxt .h4,.Col2SuperLightBgTxt .h5,.Col2SuperLightBgTxt .h6,.Col2SuperLightBgTxt h1,.Col2SuperLightBgTxt h2,.Col2SuperLightBgTxt h3,.Col2SuperLightBgTxt h4,.Col2SuperLightBgTxt h5,.Col2SuperLightBgTxt h6{color:inherit}.Col2SuperLightBgTxt a:link,.Col2SuperLightBgTxt a:visited{color:#57ddff}.Col2SuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2ExtraLight{color:hsl(59.18918919,50%,87%)}.Col2ExtraLightBg{background:hsl(59.18918919,50%,87%)}a.Col2ExtraLightBg:link,a.Col2ExtraLightBg:visited{color:#000!important}.Col2ExtraLightBgTxt{color:#000}.Col2ExtraLightBgTxt .h1,.Col2ExtraLightBgTxt .h2,.Col2ExtraLightBgTxt .h3,.Col2ExtraLightBgTxt .h4,.Col2ExtraLightBgTxt .h5,.Col2ExtraLightBgTxt .h6,.Col2ExtraLightBgTxt h1,.Col2ExtraLightBgTxt h2,.Col2ExtraLightBgTxt h3,.Col2ExtraLightBgTxt h4,.Col2ExtraLightBgTxt h5,.Col2ExtraLightBgTxt h6{color:inherit}.Col2ExtraLightBgTxt a:link,.Col2ExtraLightBgTxt a:visited{color:#57ddff}.Col2ExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2Light{color:hsl(59.18918919,50%,70%)}.Col2LightBg{background:hsl(59.18918919,50%,70%)}a.Col2LightBg:link,a.Col2LightBg:visited{color:#000!important}.Col2LightBgTxt{color:#000}.Col2LightBgTxt .h1,.Col2LightBgTxt .h2,.Col2LightBgTxt .h3,.Col2LightBgTxt .h4,.Col2LightBgTxt .h5,.Col2LightBgTxt .h6,.Col2LightBgTxt h1,.Col2LightBgTxt h2,.Col2LightBgTxt h3,.Col2LightBgTxt h4,.Col2LightBgTxt h5,.Col2LightBgTxt h6{color:inherit}.Col2LightBgTxt a:link,.Col2LightBgTxt a:visited{color:#57ddff}.Col2LightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2Medium{color:hsl(59.18918919,50%,50%)}.Col2MediumBg{background:hsl(59.18918919,50%,50%)}a.Col2MediumBg:link,a.Col2MediumBg:visited{color:#fff!important}.Col2MediumBgTxt{color:#fff}.Col2MediumBgTxt .h1,.Col2MediumBgTxt .h2,.Col2MediumBgTxt .h3,.Col2MediumBgTxt .h4,.Col2MediumBgTxt .h5,.Col2MediumBgTxt .h6,.Col2MediumBgTxt h1,.Col2MediumBgTxt h2,.Col2MediumBgTxt h3,.Col2MediumBgTxt h4,.Col2MediumBgTxt h5,.Col2MediumBgTxt h6{color:inherit}.Col2MediumBgTxt a:link,.Col2MediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2MediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2Dark{color:hsl(59.18918919,50%,30%)}.Col2DarkBg{background:hsl(59.18918919,50%,30%)}a.Col2DarkBg:link,a.Col2DarkBg:visited{color:#fff!important}.Col2DarkBgTxt{color:#fff}.Col2DarkBgTxt .h1,.Col2DarkBgTxt .h2,.Col2DarkBgTxt .h3,.Col2DarkBgTxt .h4,.Col2DarkBgTxt .h5,.Col2DarkBgTxt .h6,.Col2DarkBgTxt h1,.Col2DarkBgTxt h2,.Col2DarkBgTxt h3,.Col2DarkBgTxt h4,.Col2DarkBgTxt h5,.Col2DarkBgTxt h6{color:inherit}.Col2DarkBgTxt a:link,.Col2DarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2ExtraDark{color:hsl(59.18918919,50%,21%)}.Col2ExtraDarkBg{background:hsl(59.18918919,50%,21%)}a.Col2ExtraDarkBg:link,a.Col2ExtraDarkBg:visited{color:#fff!important}.Col2ExtraDarkBgTxt{color:#fff}.Col2ExtraDarkBgTxt .h1,.Col2ExtraDarkBgTxt .h2,.Col2ExtraDarkBgTxt .h3,.Col2ExtraDarkBgTxt .h4,.Col2ExtraDarkBgTxt .h5,.Col2ExtraDarkBgTxt .h6,.Col2ExtraDarkBgTxt h1,.Col2ExtraDarkBgTxt h2,.Col2ExtraDarkBgTxt h3,.Col2ExtraDarkBgTxt h4,.Col2ExtraDarkBgTxt h5,.Col2ExtraDarkBgTxt h6{color:inherit}.Col2ExtraDarkBgTxt a:link,.Col2ExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2ExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SuperDark{color:hsl(59.18918919,50%,15%)}.Col2SuperDarkBg{background:hsl(59.18918919,50%,15%)}a.Col2SuperDarkBg:link,a.Col2SuperDarkBg:visited{color:#fff!important}.Col2SuperDarkBgTxt{color:#fff}.Col2SuperDarkBgTxt .h1,.Col2SuperDarkBgTxt .h2,.Col2SuperDarkBgTxt .h3,.Col2SuperDarkBgTxt .h4,.Col2SuperDarkBgTxt .h5,.Col2SuperDarkBgTxt .h6,.Col2SuperDarkBgTxt h1,.Col2SuperDarkBgTxt h2,.Col2SuperDarkBgTxt h3,.Col2SuperDarkBgTxt h4,.Col2SuperDarkBgTxt h5,.Col2SuperDarkBgTxt h6{color:inherit}.Col2SuperDarkBgTxt a:link,.Col2SuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatSuperLight{color:hsl(59.18918919,75%,95%)}.Col2SatSuperLightBg{background:hsl(59.18918919,75%,95%)}a.Col2SatSuperLightBg:link,a.Col2SatSuperLightBg:visited{color:#000!important}.Col2SatSuperLightBgTxt{color:#000}.Col2SatSuperLightBgTxt .h1,.Col2SatSuperLightBgTxt .h2,.Col2SatSuperLightBgTxt .h3,.Col2SatSuperLightBgTxt .h4,.Col2SatSuperLightBgTxt .h5,.Col2SatSuperLightBgTxt .h6,.Col2SatSuperLightBgTxt h1,.Col2SatSuperLightBgTxt h2,.Col2SatSuperLightBgTxt h3,.Col2SatSuperLightBgTxt h4,.Col2SatSuperLightBgTxt h5,.Col2SatSuperLightBgTxt h6{color:inherit}.Col2SatSuperLightBgTxt a:link,.Col2SatSuperLightBgTxt a:visited{color:#57ddff}.Col2SatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatExtraLight{color:hsl(59.18918919,75%,87%)}.Col2SatExtraLightBg{background:hsl(59.18918919,75%,87%)}a.Col2SatExtraLightBg:link,a.Col2SatExtraLightBg:visited{color:#000!important}.Col2SatExtraLightBgTxt{color:#000}.Col2SatExtraLightBgTxt .h1,.Col2SatExtraLightBgTxt .h2,.Col2SatExtraLightBgTxt .h3,.Col2SatExtraLightBgTxt .h4,.Col2SatExtraLightBgTxt .h5,.Col2SatExtraLightBgTxt .h6,.Col2SatExtraLightBgTxt h1,.Col2SatExtraLightBgTxt h2,.Col2SatExtraLightBgTxt h3,.Col2SatExtraLightBgTxt h4,.Col2SatExtraLightBgTxt h5,.Col2SatExtraLightBgTxt h6{color:inherit}.Col2SatExtraLightBgTxt a:link,.Col2SatExtraLightBgTxt a:visited{color:#57ddff}.Col2SatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatLight{color:hsl(59.18918919,75%,70%)}.Col2SatLightBg{background:hsl(59.18918919,75%,70%)}a.Col2SatLightBg:link,a.Col2SatLightBg:visited{color:#000!important}.Col2SatLightBgTxt{color:#000}.Col2SatLightBgTxt .h1,.Col2SatLightBgTxt .h2,.Col2SatLightBgTxt .h3,.Col2SatLightBgTxt .h4,.Col2SatLightBgTxt .h5,.Col2SatLightBgTxt .h6,.Col2SatLightBgTxt h1,.Col2SatLightBgTxt h2,.Col2SatLightBgTxt h3,.Col2SatLightBgTxt h4,.Col2SatLightBgTxt h5,.Col2SatLightBgTxt h6{color:inherit}.Col2SatLightBgTxt a:link,.Col2SatLightBgTxt a:visited{color:#57ddff}.Col2SatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatMedium{color:hsl(59.18918919,75%,50%)}.Col2SatMediumBg{background:hsl(59.18918919,75%,50%)}a.Col2SatMediumBg:link,a.Col2SatMediumBg:visited{color:#fff!important}.Col2SatMediumBgTxt{color:#fff}.Col2SatMediumBgTxt .h1,.Col2SatMediumBgTxt .h2,.Col2SatMediumBgTxt .h3,.Col2SatMediumBgTxt .h4,.Col2SatMediumBgTxt .h5,.Col2SatMediumBgTxt .h6,.Col2SatMediumBgTxt h1,.Col2SatMediumBgTxt h2,.Col2SatMediumBgTxt h3,.Col2SatMediumBgTxt h4,.Col2SatMediumBgTxt h5,.Col2SatMediumBgTxt h6{color:inherit}.Col2SatMediumBgTxt a:link,.Col2SatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatDark{color:hsl(59.18918919,75%,30%)}.Col2SatDarkBg{background:hsl(59.18918919,75%,30%)}a.Col2SatDarkBg:link,a.Col2SatDarkBg:visited{color:#fff!important}.Col2SatDarkBgTxt{color:#fff}.Col2SatDarkBgTxt .h1,.Col2SatDarkBgTxt .h2,.Col2SatDarkBgTxt .h3,.Col2SatDarkBgTxt .h4,.Col2SatDarkBgTxt .h5,.Col2SatDarkBgTxt .h6,.Col2SatDarkBgTxt h1,.Col2SatDarkBgTxt h2,.Col2SatDarkBgTxt h3,.Col2SatDarkBgTxt h4,.Col2SatDarkBgTxt h5,.Col2SatDarkBgTxt h6{color:inherit}.Col2SatDarkBgTxt a:link,.Col2SatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatExtraDark{color:hsl(59.18918919,75%,21%)}.Col2SatExtraDarkBg{background:hsl(59.18918919,75%,21%)}a.Col2SatExtraDarkBg:link,a.Col2SatExtraDarkBg:visited{color:#fff!important}.Col2SatExtraDarkBgTxt{color:#fff}.Col2SatExtraDarkBgTxt .h1,.Col2SatExtraDarkBgTxt .h2,.Col2SatExtraDarkBgTxt .h3,.Col2SatExtraDarkBgTxt .h4,.Col2SatExtraDarkBgTxt .h5,.Col2SatExtraDarkBgTxt .h6,.Col2SatExtraDarkBgTxt h1,.Col2SatExtraDarkBgTxt h2,.Col2SatExtraDarkBgTxt h3,.Col2SatExtraDarkBgTxt h4,.Col2SatExtraDarkBgTxt h5,.Col2SatExtraDarkBgTxt h6{color:inherit}.Col2SatExtraDarkBgTxt a:link,.Col2SatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatSuperDark{color:hsl(59.18918919,75%,15%)}.Col2SatSuperDarkBg{background:hsl(59.18918919,75%,15%)}a.Col2SatSuperDarkBg:link,a.Col2SatSuperDarkBg:visited{color:#fff!important}.Col2SatSuperDarkBgTxt{color:#fff}.Col2SatSuperDarkBgTxt .h1,.Col2SatSuperDarkBgTxt .h2,.Col2SatSuperDarkBgTxt .h3,.Col2SatSuperDarkBgTxt .h4,.Col2SatSuperDarkBgTxt .h5,.Col2SatSuperDarkBgTxt .h6,.Col2SatSuperDarkBgTxt h1,.Col2SatSuperDarkBgTxt h2,.Col2SatSuperDarkBgTxt h3,.Col2SatSuperDarkBgTxt h4,.Col2SatSuperDarkBgTxt h5,.Col2SatSuperDarkBgTxt h6{color:inherit}.Col2SatSuperDarkBgTxt a:link,.Col2SatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperLight{color:hsl(59.18918919,25%,95%)}.Col2DesatSuperLightBg{background:hsl(59.18918919,25%,95%)}a.Col2DesatSuperLightBg:link,a.Col2DesatSuperLightBg:visited{color:#000!important}.Col2DesatSuperLightBgTxt{color:#000}.Col2DesatSuperLightBgTxt .h1,.Col2DesatSuperLightBgTxt .h2,.Col2DesatSuperLightBgTxt .h3,.Col2DesatSuperLightBgTxt .h4,.Col2DesatSuperLightBgTxt .h5,.Col2DesatSuperLightBgTxt .h6,.Col2DesatSuperLightBgTxt h1,.Col2DesatSuperLightBgTxt h2,.Col2DesatSuperLightBgTxt h3,.Col2DesatSuperLightBgTxt h4,.Col2DesatSuperLightBgTxt h5,.Col2DesatSuperLightBgTxt h6{color:inherit}.Col2DesatSuperLightBgTxt a:link,.Col2DesatSuperLightBgTxt a:visited{color:#57ddff}.Col2DesatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatExtraLight{color:hsl(59.18918919,25%,87%)}.Col2DesatExtraLightBg{background:hsl(59.18918919,25%,87%)}a.Col2DesatExtraLightBg:link,a.Col2DesatExtraLightBg:visited{color:#000!important}.Col2DesatExtraLightBgTxt{color:#000}.Col2DesatExtraLightBgTxt .h1,.Col2DesatExtraLightBgTxt .h2,.Col2DesatExtraLightBgTxt .h3,.Col2DesatExtraLightBgTxt .h4,.Col2DesatExtraLightBgTxt .h5,.Col2DesatExtraLightBgTxt .h6,.Col2DesatExtraLightBgTxt h1,.Col2DesatExtraLightBgTxt h2,.Col2DesatExtraLightBgTxt h3,.Col2DesatExtraLightBgTxt h4,.Col2DesatExtraLightBgTxt h5,.Col2DesatExtraLightBgTxt h6{color:inherit}.Col2DesatExtraLightBgTxt a:link,.Col2DesatExtraLightBgTxt a:visited{color:#57ddff}.Col2DesatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatLight{color:hsl(59.18918919,25%,70%)}.Col2DesatLightBg{background:hsl(59.18918919,25%,70%)}a.Col2DesatLightBg:link,a.Col2DesatLightBg:visited{color:#000!important}.Col2DesatLightBgTxt{color:#000}.Col2DesatLightBgTxt .h1,.Col2DesatLightBgTxt .h2,.Col2DesatLightBgTxt .h3,.Col2DesatLightBgTxt .h4,.Col2DesatLightBgTxt .h5,.Col2DesatLightBgTxt .h6,.Col2DesatLightBgTxt h1,.Col2DesatLightBgTxt h2,.Col2DesatLightBgTxt h3,.Col2DesatLightBgTxt h4,.Col2DesatLightBgTxt h5,.Col2DesatLightBgTxt h6{color:inherit}.Col2DesatLightBgTxt a:link,.Col2DesatLightBgTxt a:visited{color:#57ddff}.Col2DesatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatMedium{color:hsl(59.18918919,25%,50%)}.Col2DesatMediumBg{background:hsl(59.18918919,25%,50%)}a.Col2DesatMediumBg:link,a.Col2DesatMediumBg:visited{color:#fff!important}.Col2DesatMediumBgTxt{color:#fff}.Col2DesatMediumBgTxt .h1,.Col2DesatMediumBgTxt .h2,.Col2DesatMediumBgTxt .h3,.Col2DesatMediumBgTxt .h4,.Col2DesatMediumBgTxt .h5,.Col2DesatMediumBgTxt .h6,.Col2DesatMediumBgTxt h1,.Col2DesatMediumBgTxt h2,.Col2DesatMediumBgTxt h3,.Col2DesatMediumBgTxt h4,.Col2DesatMediumBgTxt h5,.Col2DesatMediumBgTxt h6{color:inherit}.Col2DesatMediumBgTxt a:link,.Col2DesatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatDark{color:hsl(59.18918919,25%,30%)}.Col2DesatDarkBg{background:hsl(59.18918919,25%,30%)}a.Col2DesatDarkBg:link,a.Col2DesatDarkBg:visited{color:#fff!important}.Col2DesatDarkBgTxt{color:#fff}.Col2DesatDarkBgTxt .h1,.Col2DesatDarkBgTxt .h2,.Col2DesatDarkBgTxt .h3,.Col2DesatDarkBgTxt .h4,.Col2DesatDarkBgTxt .h5,.Col2DesatDarkBgTxt .h6,.Col2DesatDarkBgTxt h1,.Col2DesatDarkBgTxt h2,.Col2DesatDarkBgTxt h3,.Col2DesatDarkBgTxt h4,.Col2DesatDarkBgTxt h5,.Col2DesatDarkBgTxt h6{color:inherit}.Col2DesatDarkBgTxt a:link,.Col2DesatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatExtraDark{color:hsl(59.18918919,25%,21%)}.Col2DesatExtraDarkBg{background:hsl(59.18918919,25%,21%)}a.Col2DesatExtraDarkBg:link,a.Col2DesatExtraDarkBg:visited{color:#fff!important}.Col2DesatExtraDarkBgTxt{color:#fff}.Col2DesatExtraDarkBgTxt .h1,.Col2DesatExtraDarkBgTxt .h2,.Col2DesatExtraDarkBgTxt .h3,.Col2DesatExtraDarkBgTxt .h4,.Col2DesatExtraDarkBgTxt .h5,.Col2DesatExtraDarkBgTxt .h6,.Col2DesatExtraDarkBgTxt h1,.Col2DesatExtraDarkBgTxt h2,.Col2DesatExtraDarkBgTxt h3,.Col2DesatExtraDarkBgTxt h4,.Col2DesatExtraDarkBgTxt h5,.Col2DesatExtraDarkBgTxt h6{color:inherit}.Col2DesatExtraDarkBgTxt a:link,.Col2DesatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperDark{color:hsl(59.18918919,25%,15%)}.Col2DesatSuperDarkBg{background:hsl(59.18918919,25%,15%)}a.Col2DesatSuperDarkBg:link,a.Col2DesatSuperDarkBg:visited{color:#fff!important}.Col2DesatSuperDarkBgTxt{color:#fff}.Col2DesatSuperDarkBgTxt .h1,.Col2DesatSuperDarkBgTxt .h2,.Col2DesatSuperDarkBgTxt .h3,.Col2DesatSuperDarkBgTxt .h4,.Col2DesatSuperDarkBgTxt .h5,.Col2DesatSuperDarkBgTxt .h6,.Col2DesatSuperDarkBgTxt h1,.Col2DesatSuperDarkBgTxt h2,.Col2DesatSuperDarkBgTxt h3,.Col2DesatSuperDarkBgTxt h4,.Col2DesatSuperDarkBgTxt h5,.Col2DesatSuperDarkBgTxt h6{color:inherit}.Col2DesatSuperDarkBgTxt a:link,.Col2DesatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2Bg-10{background-color:rgba(252,249,30,.1)}.Col2Bg-20{background-color:rgba(252,249,30,.2)}.Col2Bg-30{background-color:rgba(252,249,30,.3)}.Col2Bg-40{background-color:rgba(252,249,30,.4)}.Col2Bg-50{background-color:rgba(252,249,30,.5)}.Col2Bg-60{background-color:rgba(252,249,30,.6)}.Col2Bg-70{background-color:rgba(252,249,30,.7)}.Col2Bg-80{background-color:rgba(252,249,30,.8)}.Col2Bg-90{background-color:rgba(252,249,30,.9)}.BlackBg-10{background-color:rgba(0,0,0,.1)}.BlackBg-20{background-color:rgba(0,0,0,.2)}.BlackBg-30{background-color:rgba(0,0,0,.3)}.BlackBg-40{background-color:rgba(0,0,0,.4)}.BlackBg-50{background-color:rgba(0,0,0,.5)}.BlackBg-60{background-color:rgba(0,0,0,.6)}.BlackBg-70{background-color:rgba(0,0,0,.7)}.BlackBg-80{background-color:rgba(0,0,0,.8)}.BlackBg-90{background-color:rgba(0,0,0,.9)}.WhiteBg-10{background-color:rgba(255,255,255,.1)}.WhiteBg-20{background-color:rgba(255,255,255,.2)}.WhiteBg-30{background-color:rgba(255,255,255,.3)}.WhiteBg-40{background-color:rgba(255,255,255,.4)}.WhiteBg-50{background-color:rgba(255,255,255,.5)}.WhiteBg-60{background-color:rgba(255,255,255,.6)}.WhiteBg-70{background-color:rgba(255,255,255,.7)}.WhiteBg-80{background-color:rgba(255,255,255,.8)}.WhiteBg-90{background-color:rgba(255,255,255,.9)}.Grey{color:grey}.GreyBg{background:grey;color:#000}.GreyBg a:link,.GreyBg a:visited{color:#57ddff}.GreyBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyBg:link,a.GreyBg:visited{color:#000!important}.GreySuperLight{color:#f3f3f3}.GreySuperLightBg{background:#f3f3f3;color:#000}.GreySuperLightBg a:link,.GreySuperLightBg a:visited{color:#57ddff}.GreySuperLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreySuperLightBg:link,a.GreySuperLightBg:visited{color:#000!important}.GreyExtraLight{color:#dedede}.GreyExtraLightBg{background:#dedede;color:#000}.GreyExtraLightBg a:link,.GreyExtraLightBg a:visited{color:#57ddff}.GreyExtraLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyExtraLightBg:link,a.GreyExtraLightBg:visited{color:#000!important}.GreyLight{color:#b3b3b3}.GreyLightBg{background:#b3b3b3;color:#000}.GreyLightBg a:link,.GreyLightBg a:visited{color:#57ddff}.GreyLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyLightBg:link,a.GreyLightBg:visited{color:#000!important}.GreyMedium{color:grey}.GreyMediumBg{background:grey;color:#000}.GreyMediumBg a:link,.GreyMediumBg a:visited{color:#57ddff}.GreyMediumBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyMediumBg:link,a.GreyMediumBg:visited{color:#000!important}.GreyDark{color:#4d4d4d}.GreyDarkBg{background:#4d4d4d;color:#fff}.GreyDarkBg a:link,.GreyDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreyDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreyDarkBg:link,a.GreyDarkBg:visited{color:#fff!important}.GreyExtraDark{color:#363636}.GreyExtraDarkBg{background:#363636;color:#fff}.GreyExtraDarkBg a:link,.GreyExtraDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreyExtraDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreyExtraDarkBg:link,a.GreyExtraDarkBg:visited{color:#fff!important}.GreySuperDark{color:#272727}.GreySuperDarkBg{background:#272727;color:#fff}.GreySuperDarkBg a:link,.GreySuperDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreySuperDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreySuperDarkBg:link,a.GreySuperDarkBg:visited{color:#fff!important}.alpaca{margin:0 .5em;background:#fff}.alpaca h2,.alpaca h3,.alpaca h4,.alpaca h5{margin:0;font-size:1em}.alpaca>.alpaca-field>.alpaca-container>.alpaca-container-item{border-bottom:solid 1px #b3b3b3;padding-top:.5em}.alpaca .twitter-typeahead{margin-bottom:1em!important}.alpaca .alpaca-container-item{position:relative}.alpaca>.alpaca-field-object{border:none}.alpaca>.alpaca-field-object .alpaca-field-object{background-color:rgba(0,0,0,.03)}.alpaca .alpaca-field-accordion,.alpaca .alpaca-field-array,.alpaca .alpaca-field-object,.alpaca .alpaca-field-table{border-radius:0;border-color:#f3f3f3;margin-bottom:2em}.alpaca-array-actionbar{display:block!important}.alpaca-field-accordion .panel{margin-bottom:1em}.alpaca-field-accordion .panel-heading{background:#dedede}.alpaca-field-accordion .panel-title{padding-left:.5em}.alpaca-field-accordion .alpaca-container-item{margin-top:0}.alpaca-field-accordion .alpaca-container-item .alpaca-container-item{border-bottom:solid 1px #b3b3b3}.form-builder .alpaca-field-accordion .alpaca-container-item .alpaca-container-item{border:none}.alpaca-field-accordion .alpaca-field{padding-top:1em}.alpaca-horizontal .form-group.alpaca-field .help-block{margin-left:1em;padding:.5em 0}.fb-container #form{background:#fff;font-size:.9em}.fb-container #form h2,.fb-container #form h3,.fb-container #form h4,.fb-container #form h5{margin:0;font-size:1em}.fb-container #form .alpaca-vertical .alpaca-field-object{border-color:#aaa;border-radius:0;margin:2em}.fb-container #form .alpaca-vertical .alpaca-field-object .alpaca-field-object{background:#eee}.fb-container #form .alpaca-vertical .alpaca-field-object h2{font-size:1em}.fb-container #form .alpaca-vertical .alpaca-optional{border-color:#aaa;border-radius:0}.fb-container #form .alpaca-vertical>.alpaca-container-item-last .alpaca-optional{background:#eee}.fb-container #form .collapse.in{display:initial}.ModOpenContentC>div .alpaca-field .table th:last-child{font-size:0!important}.ModOpenContentC>div .alpaca-field .table .actionbar button{font-size:.8em;padding:.3em .5em}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td{font-size:.8em!important;padding:0}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td:last-child{min-width:0}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td>div{padding:.3em}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td>div .col-sm-9{max-width:100%;width:100%;padding:0!important;margin:0}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow>td{min-width:120px}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow>td:last-child{min-width:0;width:0;background:#fff;border:solid 1px #ddd}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow .actionbar button{display:block;margin:.3em}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow legend{font-size:.7em}.ModOpenContentC>div:not(.form-builder) .cke_top{padding:0}.ModOpenContentC>div:not(.form-builder) .cke_contents iframe{margin:-15px}@media screen and (min-width:576px){.col-sm-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:576px){.col-sm-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:576px){.col-sm-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:576px){.col-sm-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:576px){.col-sm-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:576px){.col-sm-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:576px){.col-sm-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:576px){.col-sm-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:576px){.col-sm-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:576px){.col-sm-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:768px){.col-md-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:768px){.col-md-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:768px){.col-md-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:768px){.col-md-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:768px){.col-md-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:768px){.col-md-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:768px){.col-md-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:768px){.col-md-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:768px){.col-md-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:768px){.col-md-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:992px){.col-lg-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:992px){.col-lg-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:992px){.col-lg-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:992px){.col-lg-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:992px){.col-lg-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:992px){.col-lg-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:992px){.col-lg-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:992px){.col-lg-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:992px){.col-lg-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:992px){.col-lg-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:1200px){.col-xl-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:1200px){.col-xl-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:1200px){.col-xl-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:1200px){.col-xl-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:1200px){.col-xl-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:1200px){.col-xl-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:1200px){.col-xl-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:1200px){.col-xl-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:1200px){.col-xl-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:1200px){.col-xl-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:1600px){.col-xxl-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:1600px){.col-xxl-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:1600px){.col-xxl-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:1600px){.col-xxl-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:1600px){.col-xxl-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:1600px){.col-xxl-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:1600px){.col-xxl-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:1600px){.col-xxl-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:1600px){.col-xxl-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:1600px){.col-xxl-10-10{flex-basis:100%;max-width:100%}}.ff-anchor{position:relative;top:0;display:block;visibility:hidden}.btn{display:inline-block;text-transform:uppercase;padding:.5em 1em}.btn:link,.btn:visited{font-weight:700}.btn-default{background:hsl(192.14285714,25%,70%);color:#f3f3f3;border:none;color:inherit}.btn-default:link,.btn-default:visited{color:#f3f3f3}.btn-default:hover{color:#f3f3f3;background:hsl(192.14285714,25%,50%)}.btn-default.focus,.btn-default:focus{box-shadow:none}.btn-primary{background:hsl(192.14285714,50%,50%);color:#fff;border:none;color:inherit}.btn-primary:link,.btn-primary:visited{color:#fff}.btn-primary:hover{color:#fff;background:hsl(192.14285714,50%,70%)}.btn-primary.focus,.btn-primary:focus{box-shadow:none}.btn-secondary{background:hsl(192.14285714,25%,70%);color:#f3f3f3;border:none;color:inherit}.btn-secondary:link,.btn-secondary:visited{color:#f3f3f3}.btn-secondary:hover{color:#f3f3f3;background:hsl(192.14285714,25%,50%)}.btn-secondary.focus,.btn-secondary:focus{box-shadow:none}.btn.Col1Bg:hover,.btn.Col1Bg:link,.btn.Col1Bg:visited,.btn.Col2Bg:hover,.btn.Col2Bg:link,.btn.Col2Bg:visited{color:#fff}.btn.Col1Bg:hover,.btn.Col2Bg:hover{opacity:.9}.btn-limit{max-width:300px;margin:0 auto}.square{width:100%;position:relative;overflow:hidden}.square:after{content:"";position:relative;display:block;padding-bottom:100%}.square .content{position:absolute;width:100%;height:100%}.circle{border-radius:50%;overflow:hidden}.rounded{border-radius:1.6rem!important}.block-rounded{border-radius:1.6rem;padding:1.6rem}.block-rounded-s{border-radius:1.12rem;padding:1.12rem}.block-bg-image{min-height:4em;background-position:center center;background-repeat:no-repeat;background-size:cover;background-blend-mode:multiply}.block-bg-parallax{background-attachment:fixed}html{font-size:16px}body{font-family:Orbitron,sans-serif;color:#000;line-height:1.7;font-size:1rem}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin:1.5em 0 1.3em;font-weight:400;color:hsl(192.14285714,50%,15%);text-rendering:optimizeLegibility}.h1,h1{font-size:calc(1.3em + .3vw)}.h2,h2{font-size:calc(1.2em + .3vw)}.h3,h3{font-size:calc(1.15em + .3vw)}.h4,h4{font-size:calc(1.1em + .3vw)}.h5,h5{font-size:calc(1.1em + .3vw)}.h6,h6{font-size:1em}h1 a:link,h1 a:visited,h2 a:link,h2 a:visited,h3 a:link,h3 a:visited,h4 a:link,h4 a:visited,h5 a:link,h5 a:visited,h6 a:link,h6 a:visited{font-size:inherit}a,a.CommandButton:link,a.CommandButton:visited,a:active,a:link,a:visited{color:hsl(192.14285714,75%,30%);text-decoration:none;font-weight:400}a:hover{color:hsl(192.14285714,50%,30%)}.Head,.Normal,.NormalBold,.NormalDisabled,.NormalRed,.NormalTextBox,.SubHead,.SubSubHead{font-family:inherit}.Head{color:hsl(192.14285714,75%,30%);font-weight:700;font-size:1.4em}.SubHead{color:hsl(192.14285714,75%,30%);font-size:1.2em}.SubSubHead{color:hsl(192.14285714,75%,30%);font-size:1em}.NormalRed{color:hsl(192.14285714,75%,30%)}tfoot,th,thead{font-size:1em}.Normal p{margin-top:0}.Normal p img{vertical-align:top}@media only screen and (min-width:768px){.Normal p img[align=left],.Normal p img[style*="float: left"],.Normal p img[style*="float:left"]{margin:.5em 1em .5em 0}.Normal p img[align=right],.Normal p img[style*="float: right"],.Normal p img[style*="float:right"]{margin:.5em 0 .5em 1em}}#Body{background:#fff}.body-top-bar{background:#363636;padding:.5em;text-align:right;font-size:.875em}.login-user-search{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap}.login-user-search #item-border{border-right:solid 1px grey;padding:0 .5em}.login-user-search a:link,.login-user-search a:visited{color:#fcf91e}.login-user-search i.fa{font-size:1.25em}.login-user-search .loginGroup,.login-user-search .registerGroup{display:inline-block}.login-user-search .user-login-wrap{display:flex;align-items:center}.login-user-search .login-link{display:inline-block;white-space:nowrap;padding:0 .5em}@media only screen and (min-width:768px){.login-user-search .login-link:before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f023";display:inline-block;font-size:1.25em;padding-right:.3em}}.login-user-search .registerGroup{display:inline-block}.login-user-search .registerGroup .buttonGroup{display:flex}.login-user-search .registerGroup .buttonGroup,.login-user-search .registerGroup .buttonGroup li{padding:0;margin:0;list-style-type:none}.login-user-search .registerGroup .buttonGroup li{display:flex;align-items:center;order:1}.login-user-search .registerGroup .buttonGroup li strong{display:none}.login-user-search .registerGroup .buttonGroup .userMessages{border-right:solid 1px grey;padding:0 .5em}.login-user-search .registerGroup .buttonGroup .userMessages>a::before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f086";display:inline-block;font-size:1.25em}.login-user-search .registerGroup .buttonGroup .userNotifications{border-right:solid 1px grey;padding:0 .5em}.login-user-search .registerGroup .buttonGroup .userNotifications>a::before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";display:inline-block;font-size:1.25em}.login-user-search .registerGroup .buttonGroup .userDisplayName{order:10}@media only screen and (min-width:768px){.login-user-search .registerGroup .buttonGroup .userDisplayName{border-right:solid 1px grey;padding:0 .5em}}.login-user-search .registerGroup .buttonGroup .userDisplayName .user-link{display:none;white-space:nowrap}@media only screen and (min-width:768px){.login-user-search .registerGroup .buttonGroup .userDisplayName .user-link{display:inline-block;padding:0 .5em 0 0}}.login-user-search .registerGroup .buttonGroup .userProfileImg{padding:0 .3em 0 .5em}.login-user-search .registerGroup .buttonGroup .userProfileImg img{border-radius:50%}.login-user-search .search-wrap{position:relative;z-index:1005;padding-right:.5em}.login-user-search .search-wrap input{border:solid 1px transparent;background:#b3b3b3;color:#000;padding:.3em;width:50px;transition:width .5s}@media only screen and (min-width:768px){.login-user-search .search-wrap input{width:100px}}.login-user-search .search-wrap input:focus{border:solid 1px #57ddff;background:#fff;color:#000;outline:0;width:150px;transition:width .5s}@media only screen and (min-width:992px){.login-user-search .search-wrap input:focus{width:250px}}.login-user-search .search-wrap .searchSkinObjectPreview{text-align:left}.login-user-search .search-wrap .SearchButton{margin-right:.3em}.Header-Wrap{background:#fff}header.Skin{padding:0;margin-top:0;min-height:0;transition:all .4s ease}.scrolled header.Skin{min-height:0}header.Skin .Logo img{padding:0;transition:all .4s ease;max-height:5em}header.Skin .Logo .SiteTitles{transition:all .4s ease;padding:.3em 0 .3em;font-size:1.2em}header.Skin .Logo .SiteTitles h3,header.Skin .Logo .SiteTitles h4{margin:0;font-weight:700;color:#fcf91e;font-family:Orbitron,sans-serif,sans serif}header.Skin .Logo .SiteTitles h3{font-size:1em;line-height:1.2em;padding-bottom:.2em}header.Skin .Logo .SiteTitles h3 a{color:inherit}header.Skin .Logo .SiteTitles h4{font-size:.7em;line-height:2em;color:grey}@media only screen and (min-width:768px){header.Skin .Logo .SiteTitles{font-size:2em}header.Skin .Logo .SiteTitles h3{padding-bottom:0}header.Skin .Logo .SiteTitles h4{font-size:.5em}}@media only screen and (min-width:992px){header.Skin .Logo .SiteTitles{font-size:40px}header.Skin .Logo .SiteTitles h3{padding-bottom:0}header.Skin .Logo .SiteTitles h4{font-size:.5em}}.scrolled header.Skin{transition:all .4s ease;padding:10px 0}.scrolled header.Skin .Logo img{max-height:3em}.scrolled header.Skin .Logo .SiteTitles{transition:all .4s ease}.scrolled header.Skin .Logo .SiteTitles h4{display:none}@media screen and (min-width:1px){.scrolled header.Skin .Logo .SiteTitles{font-size:1.2em}}.scrolled header.Skin .Logo>img{width:150px}.LangWrap{float:right;padding-right:8px}.LangWrap .Language{margin:0}.LangWrap span{padding-left:5px}.LangWrap img{border:none!important;opacity:.3}.LangWrap .selected img,.LangWrap img:hover{opacity:1}.Breadcrumbs{padding:0 10px;border-bottom:dotted 1px #ccc}.Breadcrumbs>span{line-height:30px}#Breadcrumbs a:visited,.Breadcrumbs a:link{color:#444}.Breadcrumbs a:hover{color:red}.Search{float:right;padding-top:3px}a.Search{display:inline-block}.Search input{border:solid 1px #ddd}#Skin .searchInputContainer{margin:0 3px 0 0!important}.dnnSearchBoxPanel{width:100%;max-width:100%;background:0 0}.dnnSearchBoxPanel .dnnSearchBox{margin:0;border-radius:0;box-shadow:none}.dnnSearchResultPanel{width:100%;max-width:100%;background:0 0}.dnnSearchResultPanel .dnnSearchResultSortOptions{border:none}.dnnSearchResultPanel .dnnSearchResultSortOptions>li a{background:hsl(192.14285714,25%,70%)}.dnnSearchResultPanel .dnnSearchResultSortOptions>li a:hover{background:#b2b2b2}.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active,.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active>a{background:hsl(192.14285714,50%,50%);color:#fff}.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active:hover,.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active>a:hover{background:hsl(192.14285714,10%,50%);color:#fff}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td.rcbInputCellLeft{background:#eee}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td td.rcbArrowCell,.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td.rcbInputCell{background:#deebf7!important;border-radius:0!important;border:none!important}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox .rcbFocused *{box-shadow:none!important}.dnnSearchResultPanel .selectize-control.single{display:inline-block}.dnnSearchResultPanel .selectize-control.single .selectize-input,.dnnSearchResultPanel .selectize-control.single [data-value]{border-radius:0}.dnnSearchResultContainer .dnnSearchResultItem .dnnSearchResultItem-Link{display:none}.dnnSearchResultContainer .dnnSearchResultItem .dnnSearchResultItem-Others{display:none}.dnnSearchResultPager:after{content:" ";display:block;height:0;clear:both}#MenuDtItemBorder{border-bottom:solid 1px hsl(192.14285714,25%,87%)}.WrapMainMenu{background:#000;box-shadow:none}.FFUlMenu{position:relative}.FFUlMenu,.FFUlMenu li,.FFUlMenu ul{padding:0;margin:0;list-style:none;line-height:normal}.FFUlMenu li{position:relative}nav .itemwrap>a,nav .itemwrap>span{max-width:100%}nav .itemwrap>a span,nav .itemwrap>span span{overflow-wrap:break-word}.open-submenu{display:inline-block;border:none;position:absolute;width:2em;font-style:normal;height:3.4em;line-height:3.4em;right:0;top:0;text-align:center;cursor:pointer;transition:transform .3s}@media screen and (min-width:991px){.open-submenu{display:none!important;position:relative;height:auto;line-height:1;width:1em;margin-right:.5em}.touch .open-submenu{display:inline-block!important}}.open-submenu:after{content:"\f107";font-family:FontAwesome;font-size:1.7em}.item-open>span>.open-submenu{transform:rotate(180deg)}.open-submenu:hover{color:hsl(192.14285714,50%,50%)}.extra-menu-open .Panes{margin-top:0!important}.extra-menu-open .Header-Wrap{position:relative;margin-top:0!important;margin-left:0!important}.extra-menu-open:not(.scrolled) .Header-Wrap{padding:0}.extra-menu-open .MainMenu li ul{display:none}@media only screen and (min-width:992px) and (max-width:1199px){.FFUlMenu{font-size:.9em}}@media only screen and (min-width:1200px){.FFUlMenu{font-size:1em}}.FFUlMenu .itemwrap>a,.FFUlMenu .itemwrap>span{font-size:inherit}@media only screen and (min-width:992px){.FFUlMenu .itemwrap>a.Level0,.FFUlMenu .itemwrap>span.Level0{display:inline-block;padding:0 .85em;line-height:2em}.MainMenu .FFUlMenu .itemwrap>a.Level0,.MainMenu .FFUlMenu .itemwrap>span.Level0{font-weight:400}}@media screen and (max-width:991px){.WrapSubMenu{display:none}.WrapMainMenu{background:hsl(192.14285714,50%,15%);box-shadow:none;border-top:solid 1px hsl(192.14285714,50%,87%);border:none}.WrapMainMenu .col-xs-12{min-height:0}.MainMenu>ul{display:none}.MainMenu li{border-top:solid 1px hsl(192.14285714,25%,78%)}.MainMenu li.Level0{border-top:solid 1px hsl(192.14285714,25%,70%)}.MainMenu li.Level0:first-child{border:none}.MainMenu .itemwrap{display:block}.MainMenu .itemwrap>a,.MainMenu .itemwrap>span{display:inline-block;color:#fff}.MainMenu .itemwrap>a.Active,.MainMenu .itemwrap>a.ActiveParent,.MainMenu .itemwrap>span.Active,.MainMenu .itemwrap>span.ActiveParent{color:#fcf91e}.MainMenu .itemwrap>a:hover,.MainMenu .itemwrap>span:hover{color:#fcf91e}.MainMenu .itemwrap>a,.MainMenu .itemwrap>span{line-height:initial;padding:1em 2em 1em 0;word-break:break-all}.MainMenu .itemwrap.Level0>a,.MainMenu .itemwrap.Level0>span{text-transform:uppercase;color:#fff}.MainMenu .itemwrap.Level0>a.Active,.MainMenu .itemwrap.Level0>a.ActiveParent,.MainMenu .itemwrap.Level0>span.Active,.MainMenu .itemwrap.Level0>span.ActiveParent{color:#fcf91e}.MainMenu .itemwrap.Level0>a:hover,.MainMenu .itemwrap.Level0>span:hover{color:#fcf91e}.MainMenu li.Level0>a,.MainMenu li.Level0>span{padding-left:0}.MainMenu li.Level1>a,.MainMenu li.Level1>span{padding-left:1em}.MainMenu li.Level2>a,.MainMenu li.Level2>span{padding-left:2em}.MainMenu li.Level3>a,.MainMenu li.Level3>span{padding-left:3em}.MainMenu li.Level4>a,.MainMenu li.Level4>span{padding-left:4em}.MainMenu li.Level5>a,.MainMenu li.Level5>span{padding-left:5em}.MainMenu li.Level6>a,.MainMenu li.Level6>span{padding-left:6em}.MainMenu li.Level7>a,.MainMenu li.Level7>span{padding-left:7em}.MainMenu li.Level8>a,.MainMenu li.Level8>span{padding-left:8em}}@media screen and (min-width:992px){.WrapMenuToggle{display:none}.FFUlMenu li{float:left;list-style-type:none;position:relative}.MainMenu li .itemwrap>a,.MainMenu li .itemwrap>span{display:inline-block;padding:0 1em}.FFUlMenu a:hover{text-decoration:none}.FFUlMenu li,.FFUlMenu li ul{width:15em}.FFUlMenu img{padding-right:.3em}.FFUlMenu a.Level0,.FFUlMenu li.Level0{width:auto}.MainMenu>ul{display:block!important}.MainMenu{position:relative;z-index:1000}.MainMenu li ul{position:absolute;left:-999em;z-index:1000}.MainMenu li ul{opacity:0;-webkit-transition:opacity .3s linear;-moz-transition:opacity .3s linear;-o-transition:opacity .3s linear;-ms-transition:opacity .3s linear;transition:opacity .3s linear}.MainMenu li{position:relative}.MainMenu ul.Level1 ul{margin:0 0 0 15em}.MainMenu ul.Level1 ul.right{margin:0 15em 0 0}.MainMenu li ul ul{top:0}.drop-down.MainMenu li:focus-within>ul{left:0;opacity:1}.drop-down.MainMenu li:focus-within>ul.right{left:-15em}.drop-down.MainMenu li.item-open>ul,.drop-down.MainMenu li.touch-open>ul,.drop-down.MainMenu li:hover>ul{left:0;opacity:1}.drop-down.MainMenu li.item-open>ul.right,.drop-down.MainMenu li.touch-open>ul.right,.drop-down.MainMenu li:hover>ul.right{left:-15em}}@media screen and (min-width:992px){.WrapMainMenu{position:relative;z-index:1001}.WrapSubMenu{position:relative;z-index:1000}.MainMenu .itemwrap{display:block;padding:.7em 0}.MainMenu .itemwrap a:link,.MainMenu .itemwrap a:visited{color:hsl(192.14285714,50%,21%)}.MainMenu .itemwrap a.Active,.MainMenu .itemwrap a:focus,.MainMenu .itemwrap a:hover{color:hsl(192.14285714,75%,50%);text-decoration:none}.MainMenu .itemwrap>span{color:hsl(192.14285714,25%,30%)}.MainMenu .itemwrap.Level0{padding:0;color:hsl(192.14285714,50%,15%)}.MainMenu .itemwrap.Level0.Active,.MainMenu .itemwrap.Level0.ActiveParent,.MainMenu .itemwrap.Level0:focus,.MainMenu .itemwrap.Level0:hover{color:#000}.MainMenu .itemwrap.Level0.Active,.MainMenu .itemwrap.Level0.ActiveParent{background:#fcf91e;box-shadow:inset 0 0 5px hsl(192.14285714,50%,30%);box-shadow:none}.MainMenu .itemwrap.Level0>a{color:inherit}.MainMenu .itemwrap.Level0>span{color:#000}.MainMenu .itemwrap:not(.Level0){border-bottom:solid 1px hsl(192.14285714,25%,87%)}.MainMenu li.Level0 ul{background:#fff;box-shadow:0 0 3px hsl(192.14285714,50%,30%)}}.WrapMenuToggle{background:hsl(192.14285714,50%,21%)}.WrapMenuToggle{display:block;cursor:pointer;color:#fff;text-transform:uppercase}@media screen and (min-width:992px){.WrapMenuToggle{display:none}}.MenuToggle{padding:0;color:#fff;margin-right:0;text-align:right}.MenuToggle a{display:inline-block;padding:12px 6px;line-height:0;display:flex;align-items:center;justify-content:flex-end}.MenuToggle .text{display:inline-block;margin-right:.5em;font-size:1.125em}.MenuToggle .hamburger{display:inline-block;position:relative;width:36px;height:21px}.MenuToggle .hamburger span{display:block;background:currentColor;position:absolute;height:3px;width:100%;left:0;top:calc(50% - 3px / 2);transition:all .5s ease}.MenuToggle .hamburger span:nth-child(1){margin-top:-9px}.MenuToggle .hamburger span:nth-child(3){margin-top:9px}.extra-menu-open .MenuToggle .hamburger span{background:#fff}.extra-menu-open .MenuToggle .hamburger span:nth-child(1){transform:rotate(45deg);margin:0;height:4px}.extra-menu-open .MenuToggle .hamburger span:nth-child(2){display:none}.extra-menu-open .MenuToggle .hamburger span:nth-child(3){transform:rotate(-45deg);margin:0;height:4px}@media screen and (min-width:992px){.WrapSubMenu{background:hsl(192.14285714,50%,87%);position:relative}.WrapSubMenu *{min-height:0}.SubMenu{position:relative;clear:both;padding:0}.SubMenu .itemwrap>a,.SubMenu .itemwrap>span{color:hsl(192.14285714,25%,50%);display:inline-block}.SubMenu .itemwrap>a.Active,.SubMenu .itemwrap>a.ActiveParent,.SubMenu .itemwrap>span.Active,.SubMenu .itemwrap>span.ActiveParent{color:hsl(192.14285714,50%,21%)}}.close-menu{display:block;cursor:pointer;text-align:right}.close-menu .close-x{position:relative;display:inline-block;background:0 0;width:2em;height:2em}.close-menu .close-x:after,.close-menu .close-x:before{content:"";position:absolute;height:.2em;width:100%;margin-top:-1px;background:#57ddff;left:0;top:50%}.close-menu .close-x:before{transform:rotate(45deg)}.close-menu .close-x:after{transform:rotate(-45deg)}.mega-wrap{display:none;background:#f3f3f3;border-bottom:solid 1px hsl(192.14285714,25%,87%);position:absolute;width:100%;z-index:1005}.mega-wrap nav{padding:2em 00}.mega-wrap nav ul{padding:0;margin:0}.mega-wrap nav>ul{display:flex;flex-wrap:wrap;margin:0 -2em 0}.mega-wrap nav>ul li{list-style:none;margin:0;padding:0}.mega-wrap nav>ul li .itemwrap{display:block;padding:.3em 0}.mega-wrap nav>ul li li ul{padding:1em 0}.mega-wrap nav>ul li li li{padding-left:1.5em}.mega-wrap nav>ul>li{min-width:24%;padding:1em 2em}.mega-wrap nav>ul>li>.itemwrap{font-size:1.2em;padding-bottom:1em/3;margin-bottom:1em/3;display:block}.mega-wrap nav>ul>li>.itemwrap a{color:hsl(192.14285714,50%,30%)}.mega-wrap nav>ul img{display:none;max-width:32px!important}html{scroll-behavior:smooth}.HeaderPaneRight{float:right;clear:right;width:100%;margin-top:10px}.MainPanes:not(.unused){padding:2em 0;padding:clamp(.8em,2vw,3em) 0}.CP-Edit .BottomPaneFullWidth,.CP-Layout .BottomPaneFullWidth{margin:0}.ContentWrap a[id]:not([id^=dnn]:not[class^=ui]){position:absolute;float:right;left:0;margin-top:-2em}.ContentWrap .fixed-header{margin-top:0}.ContentFadeIn .ContentWrap{transition:margin .2s ease;animation:content-fade-in 1.5s}.BgPadding{padding:1.5em}footer.Skin{background:hsl(192.14285714,50%,15%);color:#fff;border-top:solid 4px #fcf91e}footer.Skin a:link,footer.Skin a:visited{color:#fff;display:inline-block}footer.Skin a:hover{color:hsl(192.14285714,75%,50%)}footer.Skin,footer.Skin a{line-height:2.5em}footer.Skin .WrapLogin{margin-right:1em}footer.Skin .WrapLogin a.Login{color:#fcf91e}.CP-Edit footer.Skin .WrapLogin a.Login,.CP-View footer.Skin .WrapLogin a.Login,footer.Skin .WrapLogin a.Login:hover{color:hsl(192.14285714,50%,50%)}footer.Skin .top{background:hsl(192.14285714,50%,21%)}footer.Skin .bottom{border-top:solid 1px rgba(255,255,255,.1)}@media only screen and (min-width:768px){footer.Skin .top .container{padding-top:2em;padding-bottom:2em}}html{height:100%}.footer-sticky,.footer-sticky form{height:100%}.footer-sticky .sWrap{min-height:100%;display:flex;flex-direction:column}.footer-sticky .Header-Wrap,.footer-sticky footer.Skin{flex-shrink:0}.footer-sticky .ContentWrap{flex-grow:1}.cContainer{margin-bottom:4em}.cContainer:after{content:"";display:table;clear:both}.FullWidth .cContainer{margin-bottom:0}.cContainer h1.cTitle,.cContainer h2.cTitle,.cContainer h3.cTitle,.cContainer h4.cTitle,.cContainer h5.cTitle{margin-top:0}.cBg.cContainer h1.cTitle,.cBg.cContainer h2.cTitle,.cBg.cContainer h3.cTitle,.cBg.cContainer h4.cTitle,.cBg.cContainer h5.cTitle{margin:0 0 1.3em}.cContainer header.Container{display:flex}.cBg.cContainer header.Container{margin-bottom:1.5em}.cContainer header.Container .cIcon img{padding-right:4px}.cContainer section.Container{clear:both}.cBg{padding:1.5em 1.1em 2.5em;margin-bottom:2em}.cBg p:last-child{margin:0}.flexslider{border:none!important;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;margin-bottom:0}.flexslider .img{position:relative;background-size:cover;background-position:center center;overflow:hidden}.flexslider .container{padding-top:1.5em;padding-bottom:3em;min-height:100%;display:flex}.flexslider .text-wrap{position:absolute;top:0;width:100%;height:100%}.flexslider .text-wrap p:last-child{margin-bottom:0}.flexslider li{list-style:none}.flexslider .text{display:inline-block;background:rgba(255,255,255,.92);padding:.8em 1em;max-width:100%;font-size:.7em}@media only screen and (min-width:768px){.flexslider .text{max-width:33%}}@media only screen and (min-width:992px){.flexslider .text{max-width:25%}}@media only screen and (min-width:768px){.flexslider .text{font-size:.8em}}@media only screen and (min-width:992px){.flexslider .text{font-size:.9em}}.flexslider .text .btn{margin-top:.7em;font-size:.9em}.flexslider .text .flex-title{padding:0;margin:0;font-size:1.4em}.flexslider .text .flex-description{padding-top:.5em;display:inline-block;display:none}@media screen and (min-width:768px){.flexslider .text .flex-description{display:inline-block}}.flexslider .text a .flex-description{color:#000}.flexslider .container{justify-content:flex-start;align-items:flex-start}.flexslider .container.h-left{justify-content:flex-start}.flexslider .container.h-center{justify-content:center}.flexslider .container.h-right{justify-content:flex-end}.flexslider .container.v-top{align-items:flex-start}.flexslider .container.v-middle{align-items:center}.flexslider .container.v-bottom{align-items:flex-end}.flexslider .flex-error{padding:1em 0;color:#f80}.flexslider .flex-no-image .text{display:none}.flexslider .flex-direction-nav{overflow:hidden}.flexslider .flex-direction-nav a::before{color:rgba(255,255,255,.9);text-shadow:0 0 3px rgba(0,0,0,.7)}.flexslider .flex-direction-nav .flex-previous{left:0}.flexslider .flex-direction-nav .flex-next{right:0}.flexslider .fade{opacity:0;margin-left:-10vw;transition:opacity 1s ease-in,margin-left .5s ease-in;transition-delay:.8s}.flexslider .fade2{transition-delay:.9s}.flexslider .flex-active-slide .fade{opacity:1;margin-left:0}.flexslider.heightauto .slide{overflow:hidden}.flexslider.height75{max-height:75vh;height:75vh}.flexslider.height75 .img{min-height:75vh;height:75vh}.flexslider.height75 .img img{height:75vh!important;object-fit:cover;object-position:50% 50%}.flexslider.height50{max-height:50vh;height:50vh}.flexslider.height50 .img{min-height:50vh;height:50vh}.flexslider.height50 .img img{height:50vh!important;object-fit:cover;object-position:50% 50%}.flexslider.height33{max-height:33vh;height:33vh}.flexslider.height33 .img{min-height:33vh;height:33vh}.flexslider.height33 .img img{height:33vh!important;object-fit:cover;object-position:50% 50%}.flex-direction-nav a{height:3em!important}.flex-control-nav{position:relative;padding:0;bottom:auto;z-index:3}.flex-control-nav.flex-control-paging{position:absolute;margin-top:-2em}.flex-control-nav.flex-control-paging li a{width:20px;height:20px;background:rgba(255,255,255,.8);box-shadow:none}.flex-control-nav.flex-control-paging li a.flex-active{background:rgba(87,221,255,.8)}#Body .DnnModule-OpenContent .oc-view .octemplate{font-size:.8rem;width:250px}#Body .DnnModule-OpenContent .oc-view .octemplate a{border-radius:0;background:#eee;color:#444;padding:.5em;height:4em;white-space:wrap}#Body .DnnModule-OpenContent .oc-view .octemplate a:hover{background:#ddd}#Body .DnnModule-OpenContent .oc-view .octemplate a.advanced{background:hsl(192.14285714,25%,50%)}.OpenForm .alpaca-field-checkbox{position:relative}.OpenForm .alpaca-control.checkbox{display:inline;float:left;margin-right:.5em}.OpenForm .alpaca-required input,.OpenForm .alpaca-required textarea{border-color:#57ddff}img:not(.unresponsive){max-width:100%;height:auto!important}img:not(.unresponsive)[src*='16X16']{min-width:16px}img:not(.unresponsive)[src*='32X32']{min-width:32px}img{-ms-interpolation-mode:bicubic}iframe{max-width:100%}.video-16-9{position:relative;padding-bottom:56.25%;height:0}.video-16-9 iframe{position:absolute;top:0;left:0;width:100%;height:100%}.body-top-bar{background:linear-gradient(90deg,rgba(87,221,255,0) 0,hsl(192.14285714,75%,21%) 57%),repeating-linear-gradient(-45deg,#fcf91e,#fcf91e 20px,hsl(192.14285714,50%,30%) 20px,hsl(192.14285714,50%,30%) 40px)}.Header-Wrap header.Skin{height:13vw;background-position:center center;background-size:100% auto}.Header-Wrap .body-top-bar{padding:0}.Header-Wrap header.Skin{overflow:hidden}.Header-Wrap .FFImageShow{width:100%!important;height:100%!important}.Header-Wrap .FFImageShow img{width:100%!important;height:100%!important;object-fit:cover}@media only screen and (min-width:768px){.WrapMainMenu{background:repeating-linear-gradient(-45deg,hsl(192.14285714,50%,30%),hsl(192.14285714,50%,30%),hsl(192.14285714,50%,21%) 5px,hsl(192.14285714,50%,21%) 10px)}}@media screen and (min-width:992px){.MainMenu .itemwrap.Level0{background:#57ddff;margin:0 3px}}.MainMenu .itemwrap.Level0{transform:skew(-45deg);padding-left:1em;padding-right:1em;line-height:2em}.MainMenu .itemwrap.Level0 a,.MainMenu .itemwrap.Level0 i{transform:skew(45deg)}#MenuMobBorder{border:none}.WrapMenuToggle{background:repeating-linear-gradient(-45deg,hsl(192.14285714,50%,30%),hsl(192.14285714,50%,30%),hsl(192.14285714,50%,21%) 5px,hsl(192.14285714,50%,21%) 10px)}.sWrap{background:hsl(192.14285714,25%,15%)}.Panes{background:hsl(192.14285714,50%,15%) url("/Portals/_default/skins/cyberpunk/Assets/Img/Backgrounds/Bg-01.jpg") no-repeat;background-attachment:fixed;background-size:cover}.cContainer.cWhite .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cWhite .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fff;transform:skew(-45deg)}.cContainer.cWhite .cTitle .LabelEditTextClass,.cContainer.cWhite .cTitle span{position:relative;z-index:1}.cContainer.cWhite .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cWhite .DNNModuleContent{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #fff;box-shadow:inset 0 0 -5px #000}.cContainer.cBlue .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlue .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlue .cTitle .LabelEditTextClass,.cContainer.cBlue .cTitle span{position:relative;z-index:1}.cContainer.cBlue .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlue .DNNModuleContent{background:rgba(87,221,255,.85);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #57ddff;box-shadow:inset 0 0 -5px #000}.cContainer.cBlueNeon .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlueNeon .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlueNeon .cTitle .LabelEditTextClass,.cContainer.cBlueNeon .cTitle span{position:relative;z-index:1}.cContainer.cBlueNeon .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlueNeon .cContentpane{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;box-shadow:0 0 .2rem #fff,0 0 .2rem #fff,0 0 2rem #57ddff,0 0 .8rem #57ddff,0 0 1rem #57ddff,inset 0 0 .3rem #57ddff}.cContainer.cBlueBlack{color:#fff}.cContainer.cBlueBlack .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlueBlack .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlueBlack .cTitle .LabelEditTextClass,.cContainer.cBlueBlack .cTitle span{position:relative;z-index:1}.cContainer.cBlueBlack .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlueBlack .DNNModuleContent{background:rgba(0,0,0,.9);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #000;box-shadow:inset 0 0 -5px #000}.cContainer.cBlueBlack a:link,.cContainer.cBlueBlack a:visited{color:#57ddff}.cContainer.cYellow .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellow .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellow .cTitle .LabelEditTextClass,.cContainer.cYellow .cTitle span{position:relative;z-index:1}.cContainer.cYellow .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellow .DNNModuleContent{background:rgba(252,249,30,.95);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #fcf91e;box-shadow:inset 0 0 -5px #000}.cContainer.cYellowNeon .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellowNeon .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellowNeon .cTitle .LabelEditTextClass,.cContainer.cYellowNeon .cTitle span{position:relative;z-index:1}.cContainer.cYellowNeon .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellowNeon .cContentpane{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;box-shadow:0 0 .2rem #fff,0 0 .2rem #fff,0 0 2rem #fcf91e,0 0 .8rem #fcf91e,0 0 1rem #fcf91e,inset 0 0 .3rem #fcf91e}.cContainer.cYellowBlack{color:#fff}.cContainer.cYellowBlack .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellowBlack .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellowBlack .cTitle .LabelEditTextClass,.cContainer.cYellowBlack .cTitle span{position:relative;z-index:1}.cContainer.cYellowBlack .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellowBlack .DNNModuleContent{background:rgba(0,0,0,.95);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #000;box-shadow:inset 0 0 -5px #000}.cContainer.cYellowBlack a:link,.cContainer.cYellowBlack a:visited{color:#57ddff}
/*# sourceMappingURL=Skin.css.map */

