﻿
@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 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}

/* latin-ext */
@import url("/DesktopModules/EasyDNNnews/static/font-awesome/css/font-awesome.min.css");
@font-face {
  font-family: "Bree Serif";
  font-style: normal;
  font-weight: 400;
  src: local("Bree Serif"), local("BreeSerif-Regular"), url("https://fonts.gstatic.com/s/breeserif/v5/0daoUMW28nkWOnFz2G4AAiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Bree Serif";
  font-style: normal;
  font-weight: 400;
  src: local("Bree Serif"), local("BreeSerif-Regular"), url("https://fonts.gstatic.com/s/breeserif/v5/LQ7WLTaITDg4OSRuOZCps_k_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "Bree Serif";
  font-style: normal;
  font-weight: 400;
  src: local("Bree Serif"), local("BreeSerif-Regular"), url("https://fonts.gstatic.com/s/breeserif/v5/0daoUMW28nkWOnFz2G4AAvk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Bree Serif";
  font-style: normal;
  font-weight: 400;
  src: local("Bree Serif"), local("BreeSerif-Regular"), url("https://fonts.gstatic.com/s/breeserif/v5/0daoUMW28nkWOnFz2G4AAhsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
.eds_news_BlogTwo * {
  box-sizing: content-box;
}
.eds_news_BlogTwo .edn_module_box, .eds_news_BlogTwo.eds_subCollection_tagCloud, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container, .eds_news_BlogTwo.eds_subCollection_calendar .archive_list {
  margin-bottom: 30px;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  border: 1px solid #000;
  background: #000000;
  padding: 1px;
}
.eds_news_BlogTwo .edn_module_box > h1.edn_module_title, .eds_news_BlogTwo.eds_subCollection_tagCloud > h1.edn_module_title, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title, .eds_news_BlogTwo.eds_subCollection_calendar .archive_list > h1.edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/module_title_background.png") repeat-x bottom left #000;
  padding: 0 !important;
  margin: 0 !important;
}
.eds_news_BlogTwo .edn_module_box > h1.edn_module_title span, .eds_news_BlogTwo.eds_subCollection_tagCloud > h1.edn_module_title span, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title span, .eds_news_BlogTwo.eds_subCollection_calendar .archive_list > h1.edn_module_title span {
  line-height: 21px;
  display: block;
  color: #bdbdbd;
  font-size: 18px;
  padding: 5px 8px 7px;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  font-weight: normal;
  padding: 5px 8px 7px;
  margin: 0 !important;
}
.eds_news_BlogTwo .eds_openModal {
  cursor: pointer;
}
.eds_news_BlogTwo.eds_subCollection_search {
  margin: 0 0 30px;
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none;
}
.eds_news_BlogTwo.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_BlogTwo.eds_subCollection_search .article h1, .eds_news_BlogTwo.eds_subCollection_search .article h1 a {
  color: #bdbdbd;
  font-size: 22px;
  line-height: 30px;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_search .article h1 a:hover, .eds_news_BlogTwo.eds_subCollection_search .article h1 a a:hover {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list {
  margin: 0 0 30px;
  border: 4px solid #000;
  background: #151515;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span {
  padding: 12px 0 0;
  float: none;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper {
  padding: 0 30px;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > h1 {
  margin: 0 0 17px;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content {
  padding: 0;
  margin: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > a > .article_image {
  display: block;
  float: left;
  padding: 0;
  margin: 0 15px 15px 0;
  box-shadow: 1px 1px 5px 0 #000000;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary, .eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary p {
  color: #bdbdbd;
  font: 12px Arial, Helvetica, sans-serif;
  margin: 0 0 15px;
  line-height: 16px;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:link,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:active,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:visited {
  color: #fff;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:hover,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:link:hover,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:active:hover,
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .summary a:visited:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_search .article.in_list.span > .content_wrapper > .content > .clear {
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input {
  border: 2px solid #000;
  display: block;
  padding: 0;
  background: #222;
  width: 245px;
  box-shadow: 0 3px 25px #0A0A0A inset;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input > .do_search {
  display: block;
  width: 37px;
  height: 32px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/searchButton/background/predefined/search_button_bg.png") no-repeat -37px 0;
  text-indent: -10000px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input > .do_search:hover {
  background-position: 0 0;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input > .input {
  display: block;
  height: 32px;
  margin: 0;
  padding: 0;
  float: left;
  background: transparent;
  box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.4) inset;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input > .input input {
  padding: 0 4px 0 5px;
  margin: 0;
  display: block;
  float: left;
  border: 0;
  width: 199px;
  height: 32px;
  background: transparent;
  color: #898989;
  text-shadow: 1px 1px 2px #000;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 32px;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input.button_outside {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
  width: auto;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input.button_outside > .input {
  border: 2px solid #000;
  display: block;
  padding: 0;
  background: #222;
  width: 246px;
  box-shadow: 0 3px 25px #0A0A0A inset;
  float: none;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input.button_outside > .input input {
  width: 237px;
}
.eds_news_BlogTwo.eds_subCollection_search .search_input.button_outside > .do_search {
  float: left;
  margin: 5px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #151515;
  border: 2px solid #000;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/module_title_background.png") repeat-x scroll left bottom #000000;
  padding: 0;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title span {
  color: #bdbdbd;
  display: block;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 21px;
  margin: 0;
  padding: 5px 8px 7px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 10px;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label > span {
  font-size: 12px;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-weight: normal;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  overflow: hidden;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  background: #222222 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 31px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #0c0c0c;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 7px 0 6px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #bdbdbd;
  border: none;
  border-radius: 0;
  outline: none;
  height: 18px;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
  color: #bdbdbd;
  background: #222222;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #505050;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 32px;
  text-align: left;
  padding: 0 45px 0 8px;
  box-shadow: none;
  outline: none;
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  background: #222222 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 32px;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  box-sizing: border-box;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 31px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #0c0c0c;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  margin-top: 1px;
  background-color: #222;
  background-image: none !important;
  box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  position: relative;
  padding-left: 19px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 -27px transparent;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  content: "";
  background-position: 0 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 19px;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 -27px transparent;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 1px 10px 1px 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #bdbdbd;
  line-height: 1.5;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  display: inline-block;
  padding: 1px 10px 1px 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio] {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/radioButtons/predefined/cf-radiobutton.png") no-repeat 0 0 transparent;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio]:checked + label:before {
  content: "";
  background-position: 0 -27px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox] {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label:before {
  content: "";
  background-position: 0 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label {
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  background: #222222 none;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  padding: 8px 2%;
  width: 95.9%;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  border-radius: 0;
  background: #222222 none;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  padding: 8px;
  width: 100%;
  margin: 0;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
  height: auto;
  box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #DADADA;
  background-color: #222222;
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  border-left: none;
  border-radius: 0;
  height: auto;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 37px;
  position: relative;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 6px;
  top: 6px;
  border-style: solid;
  border-width: 1px;
  border-color: #000;
  background-color: #d9d9d9;
  border-radius: 4px;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 2px #000 inset;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: solid 1px #000;
  background: none #ad0000;
  height: 6px;
  top: 6px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.8) inset;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/slider-pointer.png") no-repeat 0 0;
  width: 13px;
  height: 17px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 3px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #CD1919;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial, Helvetica, sans-serif;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 16px;
  font: 10px/1 Arial, Helvetica, sans-serif;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
  margin: 15px 0 5px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/advancedSearchForm/submit/background/predefined/submit-button.png") repeat-x scroll left top #222222;
  border: 0 none;
  display: inline-block;
  margin: 0;
  padding: 6px 40px;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  color: #7A7A7A;
  font: bold 14px/16px Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-shadow: -1px -1px 1px #242424;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #303030;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  padding: 6px 15px;
  background: none #222222;
  margin-left: 10px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #303030;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: O;
  right: 0;
  background: #151515 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/searchInProgress.GIF") center center no-repeat;
  opacity: 0.8;
  width: 100%;
  z-index: 999;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > span label {
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_BlogTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search *,
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search *::before,
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item {
  border-color: #717171;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  border-color: #717171;
  position: relative;
  z-index: 2;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #292929;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 Arial, Helvetica, sans-serif;
  display: inline-block;
  border: solid 1px #2d2d2d;
  text-decoration: none;
  color: #696969;
  transition: all 300ms;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 4px 5px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #111;
  z-index: 2;
  transition: all 300ms;
  box-shadow: 0 0 2px 1px #000;
}
.eds_news_BlogTwo.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #bdbdbd;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #111;
  border: solid 1px #2d2d2d;
  color: #fff;
}
.eds_news_BlogTwo .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_BlogTwo .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu {
  margin: 0 0 30px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper {
  padding: 0;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper ul {
  padding: 0;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li {
  list-style: none;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div {
  border: 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #000;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/categoryMenuItemsBackground/predefined/item_bg.png") repeat-x 0 0 #151515;
  overflow: hidden;
  padding: 5px 4px 4px 107px;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon {
  display: block;
  float: right;
  text-indent: -10000px;
  margin: 0 0 0 4px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/rssLink/rssIcon/predefined/rss.png") no-repeat 0 0;
  height: 17px;
  width: 17px;
  margin: 0 2px 0 4px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss:hover {
  background-position: -17px 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/categoryMenuExpandCollapseIcon/predefined/expand_collapse.png") no-repeat 0 0;
  height: 7px;
  width: 13px;
  margin: 5px 2px 0 4px;
  cursor: pointer;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse:hover {
  background-position: -13px 0 !important;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse {
  background-position: 0 -7px !important;
  visibility: visible;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse:hover {
  background-position: -13px -7px !important;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > span {
  font-size: 12px;
  color: #333;
  display: inline;
  line-height: 15px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category {
  font: 12px Arial, Helvetica, sans-serif;
  color: #bdbdbd;
  display: inline;
  line-height: 15px;
  text-decoration: none;
  position: relative;
  top: 1px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category span {
  color: #5b5b5b;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category:hover {
  color: #B50909;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > img, .eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  border-radius: 4px;
  float: left;
  margin: 0 7px 5px 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image {
  float: left;
  display: block;
  margin: 0 7px 5px 0;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  margin: 0;
  float: none;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li.active > div > a.category {
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li > div {
  padding-left: 10px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div {
  background: #262626;
  border: 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #1e1e1e;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div .bullet {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/categoryMenuItemBullet/predefined/item_bullets.png") no-repeat 0 0;
  float: none;
  height: 9px;
  width: 9px;
  margin: 3px 3px 0 0;
  display: block;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_1 > div {
  padding-left: 11px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_2 > div {
  padding-left: 23px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_3 > div {
  padding-left: 35px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_4 > div {
  padding-left: 47px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_5 > div {
  padding-left: 59px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_6 > div {
  padding-left: 71px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_7 > div {
  padding-left: 83px;
}
.eds_news_BlogTwo.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_8 > div {
  padding-left: 95px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud {
  margin: 0 0 30px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags {
  padding: 0 0 10px 10px;
  background-color: #151515;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a {
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #676767;
  line-height: 12px;
  display: inline-block;
  margin: 10px 10px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a span {
  color: #bdbdbd;
  font-size: 12px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle1 {
  font-size: 12px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 14px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 16px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 18px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 20px;
}
.eds_news_BlogTwo.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 22px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin: 10px 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  width: 50%;
  overflow: hidden;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #0c0c0c #232323 #232323 #0c0c0c;
  background: #222222 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.08), 1px 27px 27px -14px rgba(0, 0, 0, 0.51) inset, 2px 2px 4px rgba(0, 0, 0, 0.56) inset;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 31px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #0c0c0c;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 7px 0 6px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #bdbdbd;
  border: none;
  border-radius: 0;
  outline: none;
  height: 18px;
  width: 116%;
  margin: 0 30px 0 0;
  box-shadow: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
  color: #bdbdbd;
  background: #222222;
}
.eds_news_BlogTwo.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 2px 3px;
  line-height: 0;
  border: 0;
  text-align: right;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a {
  margin: 0 0 0 5px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendar/actionIcons/predefined/action_buttons-light.png");
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 12px;
  background-position: 0 -5px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 15px;
  background-position: -13px -1px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 12px;
  background-position: -26px -4px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 30px;
  overflow: hidden;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td {
  background-color: transparent;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/module_title_background.png") repeat-x bottom center #000;
  width: 100%;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  color: #b5b5b5;
  text-shadow: 1px 1px 2px #000;
  font-size: 20px;
  line-height: 25px;
  padding: 5px 8px 7px;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  font-family: Arial, Helvetica, sans-serif;
  color: #b5b5b5 !important;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  color: #fff !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/calendar/week_days_bg.png") repeat-x #000;
  color: #b5b5b5;
  font-size: 9px;
  padding: 3px 0 4px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day {
  padding: 0;
  margin: 0;
  border: 1px solid #000;
  text-align: center;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span {
  color: #9d9d9d;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  display: block;
  padding: 8px 3px 7px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/calendar/day_bg.png") repeat-x top left #101010;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a {
  color: #E0E0E0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/calendar/has_post_bg.png") repeat-x top right #000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a {
  color: #fff;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/calendar/has_event.png") repeat-x 0 0 #ed5500;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span {
  color: #fff !important;
  background: none #a00 !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a {
  color: #fff;
  background: none #575958 !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span {
  color: #373737;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  background: #101010 !important;
  padding: 0;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  padding: 3px 7px 1px;
  margin: 0;
  border: 0;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #626262;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #181818;
  display: block;
  text-align: left;
  color: #DADADA !important;
  text-decoration: none;
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 12px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #452911;
  background: #221D17;
  color: #FFEEE4 !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_BlogTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list {
  margin: 0 0 30px;
  overflow: hidden;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box {
  margin: 0;
  padding: 0;
  border: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  list-style: none;
  padding: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendarArchive/itemsBackground/predefined/folder.png") no-repeat 7px 7px #151515;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #0c0c0c;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div {
  padding: 5px 4px 3px 28px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendarArchive/expandCollapseIcon/predefined/expand_collapse.png") no-repeat 0 0;
  height: 7px;
  width: 13px;
  margin: 5px 2px 0 4px;
  cursor: pointer;
  text-indent: -9999px;
  float: right;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse:hover {
  background-position: -13px 0 !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse.collapse {
  background-position: 0 -7px !important;
  visibility: visible;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .expand_collapse.collapse:hover {
  background-position: -13px -7px !important;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-year,
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-month {
  color: #bdbdbd;
  text-decoration: none;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-year:hover,
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-month:hover {
  color: #B50909;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-year:hover > span,
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-month:hover > span {
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-year > span,
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li > div .edn_archive-month > span {
  color: #5B5B5B;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-year,
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-month {
  color: #B50909;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li {
  padding: 0 0 0 16px;
  margin: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendarArchive/itemsBackground/predefined/item_bullets.png") no-repeat scroll 11px 8px #262626;
  border: 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #1e1e1e;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li > div {
  padding: 5px 4px 4px 11px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events {
  background-color: #000000;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title {
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  display: block;
  position: absolute;
  left: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export {
  top: 8px;
  right: 5px;
  height: 14px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendar/actionIcons/predefined/action_buttons.png") -13px -2px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss {
  top: 7px;
  right: 5px;
  height: 17px;
  width: 17px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/rssLink/rssIcon/predefined/rss.png");
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover {
  background-position: -17px 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss ~ a.export {
  right: 26px;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events ul {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/calendarEvents/itemsBackground/predefined/event_clock.png") no-repeat 6px 7px #151515;
  list-style: none;
  padding: 6px 10px 4px 28px;
  border-top: 0;
  border-bottom: 1px solid #0c0c0c;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events ul li:last-child {
  border: none;
}
.eds_news_BlogTwo.eds_subCollection_calendar .archive_list.events ul li a {
  color: #bdbdbd;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper {
  overflow: hidden;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper > a {
  float: right;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  color: #bdbdbd;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper > a > span {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 17px;
  height: 18px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/rssLink/rssIcon/predefined/rss.png") 0 0;
  padding: 0;
  margin: 0 2px 0 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper > a:hover {
  color: #fff;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper > a:hover > span {
  background-position: 17px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article_rss_wrapper ~ .article_pager {
  margin-top: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .clear_content {
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/rate_stars.png");
  height: 16px;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/rate_stars.png") left -32px;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/rate_stars.png") left -16px;
}
.eds_news_BlogTwo.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_BlogTwo.eds_subCollection_news .article {
  position: relative;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article .date_box {
  display: block;
  position: absolute;
  top: 20px;
  left: -24px;
  padding: 5px 0 3px;
  margin: 0;
  border: 0;
  background: #000;
  width: 40px;
}
.eds_news_BlogTwo.eds_subCollection_news .article .date_box span {
  display: block;
  color: #8b8b8b;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  margin: 0 0 3px;
  padding: 0;
  border: 0;
  text-align: center;
}
.eds_news_BlogTwo.eds_subCollection_news .article .date_box span.day {
  font-size: 21px;
  line-height: 23px;
  font-weight: bold;
  color: #b7b7b7;
}
.eds_news_BlogTwo.eds_subCollection_news .article .link_to_original_RSS_article {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article .link_to_original_RSS_article a {
  font: 12px Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article h1, .eds_news_BlogTwo.eds_subCollection_news .article h1 a {
  color: #bdbdbd;
  font-size: 22px;
  line-height: 30px;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article h1 a:hover, .eds_news_BlogTwo.eds_subCollection_news .article h1 a a:hover {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_news .article .box_list_container {
  border: 0;
  padding: 4px 0 0;
  margin: 0 0 15px;
  color: #7d7d7d;
  font-size: 12px;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_news .article .box_list_container a {
  color: #fff;
  padding: 1px 5px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/box_list_item.png") repeat-x top left #313131;
  font-size: 11px;
  line-height: 17px;
  margin: 0 4px 4px 0;
  display: inline-block;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article .box_list_container a:hover {
  background: #787878;
}
.eds_news_BlogTwo.eds_subCollection_news .article .event_date, .eds_news_BlogTwo.eds_subCollection_news .article .event_location {
  margin: 10px 0;
  padding: 0 0 0 20px;
  display: inline-block;
  min-height: 15px;
  color: #f4f4f4;
  font: 12px Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/eventDate/icon/predefined/event_clock.png") no-repeat 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article .event_date .bold, .eds_news_BlogTwo.eds_subCollection_news .article .event_location .bold {
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article .event_date .export, .eds_news_BlogTwo.eds_subCollection_news .article .event_location .export {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/export_icalendar.png") no-repeat 0 0;
  margin: 0 0 0 8px;
  font: 11px Arial, Helvetica, sans-serif;
  line-height: 17px;
  text-decoration: none;
  color: #e9020b;
  padding: 0 0 0 20px;
  height: 17px;
  display: inline-block;
  position: relative;
  top: -1px;
}
.eds_news_BlogTwo.eds_subCollection_news .article .event_date .export:hover, .eds_news_BlogTwo.eds_subCollection_news .article .event_location .export:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article .event_location {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/eventLocation/icon/predefined/location_marker.png") no-repeat 5px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links {
  background: #1a1a1a;
  border: 1px solid #252525;
  margin: 20px 0 0;
  padding: 0 0 20px;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles > h2,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents > h2,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links > h2 {
  color: #a5a5a5;
  font: 18px "Bree Serif", Arial, Helvetica, sans-serif;
  line-height: 22px;
  padding: 0;
  margin: 12px 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles ul,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links ul {
  margin: 0;
  padding: 0 20px;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles ul li,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links ul li {
  padding: 1px 0 0 20px;
  margin: 0 0 5px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/list_bullet.png") no-repeat 0 0;
  list-style: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles ul li a,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li a,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links ul li a {
  font: 12px Arial, Helvetica, sans-serif;
  color: #767676;
  line-height: 14px;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles ul li a:hover,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li a:hover,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links ul li a:hover {
  color: #c9c9c9;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article .related_articles ul li span,
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li span,
.eds_news_BlogTwo.eds_subCollection_news .article .edn_article_links ul li span {
  display: block;
  font-size: 11px;
  font-style: italic;
}
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li {
  list-style: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article .article_documents ul li img.document_icon {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper {
  padding: 0;
  border: 0;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_gallery {
  margin: 15px 0 0;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_image {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  padding: 0;
  margin: 20px 15px 15px 0;
  background: #252525;
  border: 5px solid #252525;
  box-shadow: 1px 1px 5px 0 #090909;
  overflow: hidden;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_imageContainer {
  float: left;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_imageContainer .edn_galleryLink {
  bottom: 15px;
  right: 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .eds_mediaContainer {
  float: left;
  margin: 20px 15px 15px 0;
  max-width: 100%;
  border: 5px solid #252525;
  position: relative;
  box-shadow: 1px 1px 5px 0 #090909;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_galleryLink::before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/photo-24-32.png") no-repeat 0 0;
  transition: all 300ms linear;
  content: "";
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .edn_galleryLink:hover::before {
  opacity: 0.8;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .date_box {
  top: 21px;
  left: -21px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container {
  background: #151515;
  padding: 0 20px 20px;
  border: 2px solid #000;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > h1 {
  padding: 0;
  margin: 15px 0 0;
  font: 26px "Bree Serif", Arial, Helvetica, sans-serif;
  color: #dedede;
  line-height: 33px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text {
  display: block;
  margin: 4px 0 10px;
  padding: 0;
  border: 0;
  color: #4E4D4D;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text > a {
  color: #B3B3B3;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text > a:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text .article_rating {
  display: inline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text .article_rating .EDN_article_rateit {
  margin: 0 0 0 4px;
  top: 2px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .meta_text.light_text {
  color: #7d7d7d;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content,
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content p {
  padding: 0;
  margin: 0;
  border: 0;
  display: block;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  color: #bdbdbd;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content {
  margin: 15px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content p {
  margin: 15px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a {
  color: #fff;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content a:hover {
  color: #fff;
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination {
  margin: 15px 0 0;
  text-align: center;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination table {
  margin: 0 auto;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination a,
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination span {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/pagination_bg.png") repeat-x top center #202020;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 1px #000;
  border: 1px solid #2d2d2d;
  margin: 0 5px 5px 0;
  padding: 3px 7px 2px;
  text-decoration: none;
  transition: all;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination a:hover {
  border-color: #717171;
  background-position: 0 -21px;
  transition: all;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .main_content .article_pagination span {
  color: #fff;
  background-position: 0 -21px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .edn_socialPrintWrapper {
  display: flex;
  align-items: center;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .social_buttons {
  margin: 15px 30px 15px 0;
  padding: 0;
  border: 0;
  flex-grow: 1;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .edn_printButton {
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 4px 5px 4px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  line-height: 0;
  font-size: 0;
  margin: 15px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .edn_article_map {
  border: 1px solid #ccc;
  margin: 20px 0;
  padding: 0;
  border-radius: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .edn_article_map img {
  max-width: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .edn_article_gallery {
  overflow: hidden;
  padding: 20px 0 0 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .edn_article_gallery ul {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container > .edn_article_gallery ul li {
  list-style: none;
  float: left;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: 0;
  margin: 0 20px 20px 0;
  border-radius: 4px;
  overflow: hidden;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile {
  margin: 15px 0 0;
  padding: 15px 15px 0 15px;
  border: 5px solid #252525;
  background: #1a1a1a;
  overflow: hidden;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .profile_picture_container {
  float: left;
  margin: 0 15px 15px 0;
  box-shadow: 1px 1px 4px 0 #0E0E0E;
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container {
  padding: 0;
  margin: 0;
  border: 0;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container h2 {
  padding: 0;
  margin: 0 0 6px;
  border: 0;
  display: block;
  font: 16px Arial, Helvetica, sans-serif;
  line-height: 19px;
  color: #C1C1C1;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/rssLink/rssIcon/predefined/rss.png") no-repeat top left;
  padding: 0;
  margin: 0 0 0 8px;
  height: 17px;
  width: 17px;
  position: absolute;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss span {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container h2 .author_rss:hover {
  background-position: -17px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info,
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info p {
  color: #767676;
  padding: 0;
  margin: 0 0 5px;
  border: 0;
  display: block;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info {
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info a {
  color: #fff;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info a:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .details_container .short_info .more {
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with {
  margin: 2px 0 10px;
  padding: 0;
  border: 0;
  color: #a7a7a7;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social-networks {
  display: inline-block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social {
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 0;
  background: no-repeat 0 0 transparent;
  position: relative;
  top: 6px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social span {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.facebook {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/facebook.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.twitter {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/twitter.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.google_plus {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/gplus.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.linked_in {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/linked_in.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.youtube {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/yt.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.instagram {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/ins.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .social.website {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/socialNetworksIcons/predefined/link.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .contact, .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio {
  display: inline;
  margin: 0 0 0 12px;
  border: 0;
  background: no-repeat center left transparent;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .contact span, .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio span {
  font: 12px Arial, Helvetica, sans-serif;
  color: #a7a7a7;
  line-height: 14px;
  font-style: italic;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .contact:hover, .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio:hover {
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .contact:hover span, .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio:hover span {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .contact {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/contactAndBiographyLink/icons/predefined/letter.png");
  padding: 0 0 0 26px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper > .details_container .author_group_profile .connect_with .full_bio {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/profileBox/contactAndBiographyLink/icons/predefined/person2.png");
  padding: 1px 0 0 22px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments {
  margin: 15px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .submit {
  display: inline-block;
  border: 0;
  text-decoration: none;
  padding: 6px 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/comments/submitButton/background/predefined/add_comment_bg.png") repeat-x top left #222;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .submit span {
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  font-weight: bold;
  color: #7a7a7a;
  text-shadow: -1px -1px 1px #242424;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .submit:hover {
  background-color: #303030;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .submit:hover span {
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .num_of_comment {
  margin: 0;
  border: 0;
  vertical-align: baseline;
  line-height: 16px;
  background: #0a0a0a;
  border: 1px solid #252525;
  padding: 10px 12px;
  font: 14px Arial, Helvetica, sans-serif;
  color: #747474;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .num_of_comment a {
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment {
  margin: 15px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment h3 {
  padding: 0;
  border: 0;
  vertical-align: baseline;
  line-height: 16px;
  font: 16px Arial, Helvetica, sans-serif;
  color: #6b6b6b;
  margin: 0;
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box {
  background: #0a0a0a;
  border: 1px solid #252525;
  margin: 4px 0 0;
  padding: 25px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box .comment_info span {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25em;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.left {
  font: 14px Arial, Helvetica, sans-serif;
  width: 20%;
  padding: 7px 0 0;
  color: #6b6b6b;
  text-align: right;
  font-weight: bold;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.left span {
  margin: 0 5px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.right {
  padding: 0 0 20px;
  width: 80%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.right textarea {
  font: 16px Arial, Helvetica, sans-serif;
  border: 1px solid #323232;
  line-height: 18px;
  padding: 5px 5px 4px;
  background: #222;
  width: 70%;
  color: #C4C4C4;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .add_comment .add_article_box table td.right textarea {
  font-size: 12px;
  line-height: 15px;
  padding: 5px;
  width: 90%;
  height: 100px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list {
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  margin-top: 20px;
  padding: 0;
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .votes {
  margin: 10px 0 0 2%;
  width: 8%;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .votes > div {
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .votes > div input {
  position: relative;
  top: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .votes > div span {
  font: 12px Arial, Helvetica, sans-serif;
  color: #545454;
  line-height: 14px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side {
  width: 90%;
  overflow: hidden;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .comment_details p {
  font: 12px Arial, Helvetica, sans-serif;
  color: #919191;
  padding: 0;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .comment_details .author {
  margin: 1px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .comment_details .date_time {
  font-size: 10px;
  color: #545454;
  margin: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 18px;
  height: 29px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/comments/commentBubble/pointer/predefined/details_pointer.png") 0 0 no-repeat transparent;
  position: relative;
  left: 1px;
  top: 30px;
  z-index: 1;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/comments/commentBubble/background/predefined/comment_bg.png") repeat-x #222;
  border: 1px solid #323232;
  min-height: 100px;
  padding: 10px 12px;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  color: #939393;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  color: #939393;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .actions {
  font-size: 10px;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .actions a {
  font: 9px Arial, Helvetica, sans-serif;
  line-height: 11px;
  color: #7b7b7b;
  margin: 0 5px 0 0;
  text-transform: uppercase;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .right_side .actions a:hover {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial, Helvetica, sans-serif;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  height: 33px;
  border: 0;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment .actions a span {
  display: inline-block;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 7px 6px 0 14px;
  color: #444;
  height: 26px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment .actions a:hover {
  background-position: right -33px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-position: 0 -33px;
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment.level0, .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box {
  border: 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #0c0c0c;
  overflow: hidden;
  margin: 0;
  padding: 10px 10px 0;
  background: #151515;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box > a {
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box > a img {
  border: 4px solid #252525;
  float: left;
  margin: 0 10px 10px 0;
  box-shadow: 1px 1px 4px 0 #0B0B0B;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box > a span {
  color: #bdbdbd;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  text-decoration: none;
  padding: 0;
  margin: 0 0 10px;
  display: block;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box > a:hover img {
  border-color: #404040;
}
.eds_news_BlogTwo.eds_subCollection_news .article.sidebar_box > a:hover span {
  text-decoration: underline;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list {
  margin: 0 0 30px;
  border: 4px solid #000;
  background: #151515;
  position: relative;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list .article_image {
  border: 5px solid #252525;
  display: block;
  float: left;
  padding: 0;
  margin: 0 15px 15px 0;
  box-shadow: 1px 1px 5px 0 #000000;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list .shadow_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background: -o-radial-gradient(center top, ellipse farthest-side, #000 0%, transparent 100%) 0 0 transparent;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span {
  padding: 12px 0 0;
  float: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper {
  padding: 0 30px;
  margin: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > h1 {
  margin: 0 0 17px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content {
  padding: 0;
  margin: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .article_image {
  display: block;
  float: left;
  padding: 0;
  margin: 0 15px 15px 0;
  box-shadow: 1px 1px 5px 0 #000000;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary, .eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary p {
  color: #bdbdbd;
  font: 12px Arial, Helvetica, sans-serif;
  margin: 0 0 15px;
  line-height: 16px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a, .eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary p a {
  color: #fff;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary a:hover, .eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .summary p a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .content_wrapper > .content > .clear {
  clear: both;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text {
  display: block;
  padding: 2px 20px 6px;
  border: 0;
  border-top: 1px solid #1f1f1f;
  color: #4e4d4d;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  overflow: hidden;
  background: #151515 url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/article_meta_bg.png") repeat-x top left;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.98);
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute {
  margin: 4px 30px 0 0;
  padding: 1px 0 0 22px;
  color: #4e4d4d;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  background: top left;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.author {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/articleMetaDetails/icons/predefined/person.png") no-repeat top left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.author a {
  color: #bdbdbd;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.author a:hover {
  color: #CD0000;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/articleMetaDetails/icons/predefined/comments.png") no-repeat top left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.rating {
  margin-top: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/articleMetaDetails/icons/predefined/rating_star.png") no-repeat left 4px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span > .meta_text div.attribute.rating .EDN_article_rateit {
  position: relative;
  top: 3px;
  margin: 0 0 0 3px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span.compact {
  padding-top: 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span.compact .content_wrapper {
  padding: 0 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span.compact .content_wrapper .content .article_image {
  margin-bottom: 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.span.compact .content_wrapper .content .summary, .eds_news_BlogTwo.eds_subCollection_news .article.in_list.span.compact .content_wrapper .content .summary p {
  margin-bottom: 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture {
  background: #252525;
  box-shadow: 1px 1px 4px 0 #000;
  border: 0;
  padding: 0;
  border: 5px solid #252525;
  margin: 0 0 30px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .date_box {
  top: 100px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .admin_actions {
  position: absolute;
  top: 0;
  left: auto;
  right: 7px;
  display: block;
  background: #252525;
  background: rgba(37, 37, 37, 0.6);
  padding: 3px 8px 1px;
  margin: 0;
  border: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 1px 0 0 rgba(111, 111, 111, 0.6);
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .admin_actions:hover {
  background: #252525;
  box-shadow: 0 1px 0 0 rgba(200, 200, 200, 0.54);
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture img {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 100%;
  height: auto;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/transparent_black.png") repeat transparent;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 {
  margin: 11px 17px 12px;
  padding: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a {
  margin: 0;
  padding: 0;
  border: 0;
  color: #bdbdbd;
  text-shadow: 1px 1px 0 #000;
  font-size: 22px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a:hover {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary {
  font: 12px Arial, Helvetica, sans-serif;
  color: #bdbdbd;
  line-height: 15px;
  padding: 0;
  margin: 0 17px 13px;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary p {
  font: 12px Arial, Helvetica, sans-serif;
  color: #bdbdbd;
  line-height: 15px;
  padding: 0;
  border: 0;
  margin: 0 0 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small {
  border: 0 !important;
  width: 47%;
  padding: 0 !important;
  background: transparent !important;
  margin: 0 0 30px 6%;
  overflow: hidden;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small > img {
  border: 5px solid #252525;
  box-shadow: 1px 1px 4px 0 #000;
  display: block;
  margin: 0 10px 4px 0;
  float: left;
  max-width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 a {
  font-size: 16px;
  line-height: 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big {
  border-width: 2px;
  padding: 2%;
  margin: 0 0 30px 0;
  float: right;
  width: 43%;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big > img {
  border: 5px solid #252525;
  box-shadow: 1px 1px 4px 0 #000;
  display: block;
  max-width: 100%;
  height: auto;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big h1 {
  margin: 8px 0 12px;
  padding: 0;
  border: 0;
  line-height: 23px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big h1 a {
  margin: 0;
  padding: 0;
  border: 0;
  color: #bdbdbd;
  text-shadow: 1px 1px 0 #000;
  font-size: 20px;
  line-height: 22px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big h1 a:hover {
  color: #fff;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big .summary {
  color: #bdbdbd;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big .summary p {
  font: 12px Arial, Helvetica, sans-serif;
  color: #bdbdbd;
  line-height: 15px;
  padding: 0;
  border: 0;
  margin: 0 0 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big.edn_articleWrapper {
  float: none !important;
  margin: 0 10px 15px 25px !important;
}
.eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big.edn_articleWrapper * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_news .articles_row .article.in_list.box:first-child {
  margin-left: 0;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .child_categories,
.eds_news_BlogTwo.eds_subCollection_news .category_info {
  padding: 8px;
  overflow: hidden;
  background: #151515;
  border: 2px solid #000000;
  margin: 0 0 30px;
}
.eds_news_BlogTwo.eds_subCollection_news .bread_crumbs {
  margin: 0 0 20px;
  padding: 0;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  color: #E81212;
}
.eds_news_BlogTwo.eds_subCollection_news .bread_crumbs a {
  color: #BCBCBC;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000;
}
.eds_news_BlogTwo.eds_subCollection_news .category_info h1 {
  margin: 0 0 3px;
  padding: 0;
  font: 18px "Bree Serif", Arial, Helvetica, sans-serif;
  line-height: 22px;
  color: #BCBCBC;
}
.eds_news_BlogTwo.eds_subCollection_news .category_info .description {
  margin: 6px 0 0;
  padding: 0;
  font: 12px Arial, Helvetica, sans-serif;
  color: #BCBCBC;
  line-height: 14px;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list {
  margin: 1.6%;
  padding: 0;
  border: 0;
  background: none;
  width: 30%;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a {
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a img {
  display: block;
  border: 5px solid #252525;
  box-shadow: 1px 1px 4px 0 #000;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a span {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  color: #aaa;
  padding: 4px 0 5px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 0 #000;
  text-decoration: none;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/catalog_category_title_bg.png") center top no-repeat;
  margin: 5px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a:hover {
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a:hover img {
  border-color: #555;
}
.eds_news_BlogTwo.eds_subCollection_news .category.in_list > a:hover span {
  color: #D7D7D7;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table {
  border: solid 5px #252525;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr {
  border-style: solid;
  border-width: 1px 0;
  border-color: #252525;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr:nth-child(even) td {
  background-color: #1A1A1A;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 4px 10px;
  color: #bdbdbd;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #181818;
  vertical-align: top;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 15px;
  color: #bdbdbd;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td p {
  margin: 0 0 10px !important;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 4px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 16px;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/articleDetailsCustomFields/checkBox/predefined/cf-checkbox.png") no-repeat 0 -27px;
  float: left;
  width: 16px;
  height: 16px;
  margin: 2px 4px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background-position: 0 0px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_registerEventDetails {
  margin: 0;
  padding: 0 0 0 16px;
  float: left;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_registerEventDetails li {
  padding: 0 0 0 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #bdbdbd;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  padding: 6px 15px;
  background: none #222;
  margin: 0;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  font-weight: bold;
  color: #7a7a7a;
  text-shadow: -1px -1px 1px #242424;
  box-shadow: 0 0 0 1px #5e5d5d;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #303030;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #252525;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #0a0a0a;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: transparent;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #1A1A1A;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border: none;
  border-bottom: solid 1px #252525;
  color: #bdbdbd;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  font-size: 12px;
  border: none;
  color: #747474;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-bottom: 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label::after {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial, Helvetica, sans-serif;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar label::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  transition: opacity 200ms linear;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar label:hover::after {
  opacity: 1;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label::after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label::after {
  background-color: #d9534f;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label::after {
  background-color: #f0ad4e;
}
.eds_news_BlogTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_BlogTwo.eds_subCollection_news .admin_action, .eds_news_BlogTwo.eds_subCollection_news .edn_article_action {
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #ED2323;
  background: no-repeat;
}
.eds_news_BlogTwo.eds_subCollection_news .admin_action:hover, .eds_news_BlogTwo.eds_subCollection_news .edn_article_action:hover {
  color: #CD0000;
}
.eds_news_BlogTwo.eds_subCollection_news .admin_action.edit, .eds_news_BlogTwo.eds_subCollection_news .edn_article_action.edit {
  padding-left: 16px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/pencil_small.png");
}
.eds_news_BlogTwo.eds_subCollection_news .admin_action.publish_article, .eds_news_BlogTwo.eds_subCollection_news .edn_article_action.publish_article {
  padding-left: 17px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/check_small.png");
}
.eds_news_BlogTwo.eds_subCollection_news .article_pager {
  margin: 30px 0;
  text-align: center;
}
.eds_news_BlogTwo.eds_subCollection_news .article_pager a {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/pagination_bg.png") repeat-x top center #111111;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 1px #000;
  border: 1px solid #2d2d2d;
  margin: 0 5px 5px 0;
  padding: 3px 7px 2px;
  text-decoration: none;
  transition: all;
}
.eds_news_BlogTwo.eds_subCollection_news .article_pager a:hover {
  border-color: #717171;
  background-position: 0 -21px;
  transition: all;
}
.eds_news_BlogTwo.eds_subCollection_news .article_pager a.active {
  color: #fff;
  background-position: 0 -21px;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  text-align: center;
  margin: 0 0 20px;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  background: #0a0a0a none;
  cursor: pointer;
  border: solid 1px #252525;
  border-radius: 0 0 10px 10px;
  transition: background;
  position: relative;
  overflow: hidden;
  line-height: 1;
  box-shadow: none;
  text-decoration: none;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span {
  font: 16px/1.3 "Bree Serif", Arial, Helvetica, sans-serif;
  color: #fff;
  transition: color;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/BlogTwo/images/common/loadingArticles.gif") center center no-repeat #131313;
  opacity: 0;
  transition: opacity, 500ms;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay > span {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover {
  background-color: #131313;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer span {
  color: #3c3c3e;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_BlogTwo.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image .image_wrapper {
  display: block;
  overflow: hidden;
  border: 5px solid #252525;
  box-shadow: 1px 1px 5px 0 #090909;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image .image_wrapper.no_text {
  font-size: 0;
  line-height: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image p.image_title,
.eds_news_BlogTwo.eds_subCollection_news .in_article_image .image_description {
  clear: both;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px !important;
  color: #bdbdbd;
  margin: 5px 0 0;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image p.image_title {
  margin: 10px 0 0 !important;
  font-size: 13px !important;
  line-height: 15px !important;
  font-weight: bold !important;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image.left {
  float: left;
  margin: 0 15px 15px 0;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image.right {
  float: right;
  margin: 0 0 15px 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .in_article_image.clear {
  clear: both;
  margin: 0 0 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting {
  float: right;
  margin: 15px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip::before {
  content: "";
  bottom: calc(100% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #4c4c4c;
  position: absolute;
  transform: rotate(45deg);
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_BlogTwo.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .admin_action,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .date_box {
  position: relative;
  width: auto;
  top: 0;
  left: 20px;
  background: none transparent;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .date_box > span {
  display: inline;
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container {
  background: none transparent;
  border: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container > h1 {
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container > .meta_text {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container > .main_content {
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container > .main_content p {
  color: #000;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container .edn_socialPrintWrapper,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper > .details_container .author_group_profile {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper .article_image {
  box-shadow: none;
  background: none transparent;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper .article_gallery,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article.details_wrapper .article_comments {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .box_list_container,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .related_articles,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .article_documents,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .edn_article_links,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .fb-comments,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article #disqus_thread {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .event_date,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .event_location {
  color: #222;
  background: none;
  padding-left: 0;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .article .event_date .export {
  display: none;
}
.eds_news_BlogTwo.eds_subCollection_news.eds_print .in_article_image .image_title,
.eds_news_BlogTwo.eds_subCollection_news.eds_print .in_article_image .image_description {
  color: #222;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #bdbdbd;
  font-family: "Bree Serif", Arial, Helvetica, sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_BlogTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_BlogTwo .fb-comments, .eds_news_BlogTwo .fb-comments iframe[style], .eds_news_BlogTwo .fb-comments > span {
  width: 100% !important;
}
.eds_news_BlogTwo .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_BlogTwo .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
  padding: 4px 12px !important;
}
.eds_news_BlogTwo .edNews_latestCommentsOnForum .num_of_comment .submit {
  float: right;
  margin: 0 !important;
}
.eds_news_BlogTwo .edNews_latestCommentsOnForum .num_of_comment .submit i {
  font-style: normal;
}
.eds_news_BlogTwo .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 4px 0 0;
  padding: 0;
}
.eds_news_BlogTwo .edNews_latestCommentsOnForum .add_comment > h3 {
  margin: 0 !important;
}

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

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

@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list .article_image, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list .article_image, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list .article_image, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list .article_image {
    max-width: 100%;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article h1, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article h1, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article h1, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article h1 {
    padding: 0;
    margin: 0 0 5px 0;
    line-height: 16px;
    font-size: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article h1 a {
    font-size: 16px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article .details_container h1, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article .details_container h1, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article .details_container h1, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article .details_container h1 {
    font-size: 18px;
    line-height: 20px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big {
    float: none;
    width: auto;
    margin: 0 0 20px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.big img {
    width: 98%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small {
    float: none;
    width: auto;
    margin: 0 0 15px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.box.small h1 a {
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    margin: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 {
    margin: 0 0 0 17px;
    padding: 0;
    line-height: 18px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content h1 a {
    font-size: 14px;
    line-height: 15px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .content .summary {
    margin: 2px 2px 2px 17px;
    font-size: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .date_box, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .date_box, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .date_box, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.in_picture .date_box {
    top: 20px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact img, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact img, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact img, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact .content h1 a, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact .content h1 a, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact .content h1 a, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.in_list.compact .content h1 a {
    font-size: 18px;
    line-height: 20px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a {
    margin: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.contact, .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.full_bio, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.contact, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.full_bio, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.contact, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.full_bio, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.contact, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with a.full_bio {
    display: block;
    float: none;
    margin: 2px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with .social-networks, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with .social-networks, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with .social-networks, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .article.details_wrapper .details_container .author_group_profile .connect_with .social-networks {
    margin: 7px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_BlogTwo.eds_subCollection_news .category.in_list > a span, .EasyDNNSkin_NewsOne .eds_news_BlogTwo.eds_subCollection_news .category.in_list > a span, .EasyDNNSkin_BlogTwo .eds_news_BlogTwo.eds_subCollection_news .category.in_list > a span, .EasyDNNSkin_BlogOne .eds_news_BlogTwo.eds_subCollection_news .category.in_list > a span {
    font-size: 10px;
    padding: 0;
    margin: 2px 0;
  }
}

.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 */

