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

body {
  color: #424242;
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
}

.fa {
  font-family: FontAwesome;
}

a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
a:hover {
  color: #272621;
}

.EasyDNNSkin_Ozone {
  background-color: #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.EasyDNNSkin_Ozone .eds_container::before, .EasyDNNSkin_Ozone .eds_container::after {
  display: table;
  width: 100%;
  content: "";
}
@media (min-width: 1200px) {
  .EasyDNNSkin_Ozone .container {
    max-width: 1170px;
  }
}
.EasyDNNSkin_Ozone .eds_centerBlock {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.EasyDNNSkin_Ozone .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.EasyDNNSkin_Ozone .container-fluid::before, .EasyDNNSkin_Ozone .container-fluid::after {
  display: table;
  content: "";
}
.EasyDNNSkin_Ozone .container-fluid::after {
  clear: both;
}
.EasyDNNSkin_Ozone .edn_clearFix::before, .EasyDNNSkin_Ozone .edn_clearFix::after {
  display: table;
  content: "";
}
.EasyDNNSkin_Ozone .edn_clearFix::after {
  clear: both;
}
.EasyDNNSkin_Ozone .btn-default,
.EasyDNNSkin_Ozone .btn-default:hover {
  color: #333;
}
.EasyDNNSkin_Ozone .btn-primary,
.EasyDNNSkin_Ozone .btn-primary:hover {
  color: #fff;
}
.EasyDNNSkin_Ozone .DNNEmptyPane {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}
.EasyDNNSkin_Ozone .DNNEmptyPane.dnnModuleManager {
  min-height: 115px !important;
}
.EasyDNNSkin_Ozone .DNNEmptyPane.EditBarEmptyPane {
  display: block !important;
  width: auto !important;
  min-width: 115px;
}
.EasyDNNSkin_Ozone .DNNEmptyPane.EditBarEmptyPane.container-fluid {
  margin-left: auto !important;
  margin-right: auto !important;
}
.EasyDNNSkin_Ozone .DnnModule + .DnnModule {
  margin-top: 20px;
}
.EasyDNNSkin_Ozone .Normal {
  color: #424242;
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
}
.EasyDNNSkin_Ozone .container-fluid {
  max-width: 1200px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.EasyDNNSkin_Ozone .eds_contentBellowBackground,
.EasyDNNSkin_Ozone .eds_contentBellow5Background {
  background-color: #f2f2f2;
}
.EasyDNNSkin_Ozone .eds_contentBellowBackground {
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_geometric_light.png");
}
.EasyDNNSkin_Ozone .eds_pBackground1 {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_pBackground1 .Normal {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  -webkit-box-shadow: 0 1px 0 #d7d7d7 inset, 0 -1px 0 #d7d7d7 inset;
          box-shadow: 0 1px 0 #d7d7d7 inset, 0 -1px 0 #d7d7d7 inset;
  z-index: 0;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground::before, .EasyDNNSkin_Ozone .eds_paralaxBackground::after {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  right: 0;
  content: "";
  z-index: 1;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground::after {
  animation: eds_OzoneSkinAnimatedBackground 40s linear infinite;
  -ms-animation: eds_OzoneSkinAnimatedBackground 40s linear infinite;
  -moz-animation: eds_OzoneSkinAnimatedBackground 40s linear infinite;
  -webkit-animation: eds_OzoneSkinAnimatedBackground 40s linear infinite;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground > div {
  position: relative;
  z-index: 2;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1 {
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_ozone_2.jpg");
}
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1::before {
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/big_pattern_image_geometric_small_light.png");
  opacity: 0.25;
}
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1::after {
  background-image: url("/Portals/_default/skins/ozone/assets/images/contentBellow3/backgroundAnimated/predefined/patternbg2.png");
}
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 {
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/flickr2.jpg");
}
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2::after {
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_z_full_geometric_light.png");
  opacity: 0.2;
  animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
  -ms-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
  -moz-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
  -webkit-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
}
.EasyDNNSkin_Ozone .edsFooterBackground {
  background-color: #373737;
  color: #fff;
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer {
  position: relative;
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox {
  z-index: 2;
  margin-right: 14px;
  padding-bottom: 15px;
  padding-right: 30px;
  margin-bottom: 15px;
  margin-top: 35px;
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox.eds_last {
  margin-right: 0;
  padding-right: 0;
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox.eds_last::after {
  display: none;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox.eds_second {
    padding-right: 0;
    padding-right: 0;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox.eds_second::after {
    display: none;
  }
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 25px;
  bottom: 15px;
  width: 0;
  border-left: solid 4px #303030;
  border-right: solid 1px #4c4c4c;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox::after {
    display: none;
  }
}
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer2 {
  padding-bottom: 15px;
}
.EasyDNNSkin_Ozone .edsFooterBackground .Normal {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_pageDetails {
  padding-bottom: 11px;
  background: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/flickr2.jpg") center center no-repeat;
  position: relative;
}
.EasyDNNSkin_Ozone .eds_pageDetails::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #7e7272;
  background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_z_full_geometric_light.png");
  background-position: 50% 23%;
  opacity: 0.35;
}
.EasyDNNSkin_Ozone .eds_pageDetails > div {
  position: relative;
  z-index: 1;
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageTitle,
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageDescription {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageTitle > span,
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageDescription > span {
  color: #fff;
  border-left: solid 4px #fff;
  display: inline-block;
  margin: 6px 0;
  background-color: rgba(163, 13, 13, 0.72);
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageTitle {
  margin-top: 5px;
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageTitle > span {
  padding: 20px 25px;
  font-size: 30px;
  line-height: 1;
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageDescription > span {
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  background-color: rgba(104, 0, 0, 0.72);
}
.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageDescription > span > span + span {
  margin-left: 25px;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 {
  border-bottom: 1px solid #9e9e9e;
  padding-bottom: 0;
  padding-top: 0;
  background-image: none;
  background-color: transparent;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs {
  float: right;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb {
  margin: 27px 0;
  font-family: "PT Sans", sans-serif;
  color: #747474;
  background: none transparent;
  font-size: 15px;
  text-transform: none;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadcrumbSeparator {
  color: #747474;
  background: none transparent;
  margin: 27px 0;
  line-height: 1.3;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_pageTitle {
  margin: 0;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_pageTitle > span {
  background: none transparent;
  color: #5a5a5a;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 25px 0;
  border-left: none;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_pageTitle > span::after {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #c81704;
  left: 0;
  right: 0;
  bottom: -2px;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer {
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  text-align: center;
  padding: 10px 100px;
  border-radius: 4px;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb,
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadcrumbSeparator {
  background: none transparent;
  color: #cacaca;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb {
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: none;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadcrumbSeparator {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_pageTitle {
  line-height: 0;
  padding: 0;
  margin: 0 0 5px;
}
.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_pageTitle > span {
  background: none transparent;
  border-left: none;
  color: #fff;
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_headerHeightHolderPd {
  display: none;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs {
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb {
  display: inline-block;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  padding: 5px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 15px;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb:hover {
  text-decoration: underline;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb:first-child {
  border-radius: 2px 0 0 2px;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb:last-child {
  border-radius: 0 2px 2px 0;
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb,
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadcrumbSeparator {
  background-color: rgba(0, 0, 0, 0.7);
}
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadcrumbSeparator {
  line-height: 1;
  color: #c81704;
  font-size: 11px;
  padding-top: 6px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 15px;
  vertical-align: top;
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_currentDate {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 1px rgba(204, 19, 1, 0.7);
  border-radius: 2px;
  padding: 3px 5px;
  font-size: 11px;
  color: #c81704;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 15px;
}
.EasyDNNSkin_Ozone .eds_currentDate::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  margin-left: 5px;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg {
  background-color: #f1f0f0;
  overflow: hidden;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg > div {
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg > div::before, .EasyDNNSkin_Ozone .eds_bottomBannerBg > div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  height: 10px;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg > div::before {
  top: -10px;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg > div::after {
  bottom: -10px;
}
.EasyDNNSkin_Ozone .eds_bottomBannerBg + div {
  margin-top: 20px;
}
.EasyDNNSkin_Ozone .eds_bottomPaneWide {
  padding-top: 15px;
  padding-bottom: 15px;
}
.EasyDNNSkin_Ozone .input-group {
  margin-bottom: 15px;
}
.EasyDNNSkin_Ozone .edsCopyrightBg {
  background-color: #5d5d5d;
}
.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright {
  max-width: 1200px;
  font-size: 13px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #a8a8a8;
}
.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright > a {
  color: #a8a8a8;
  text-decoration: none;
  margin-left: 15px;
}
.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright > a:hover {
  color: #c81704;
  text-decoration: none;
}
.EasyDNNSkin_Ozone div.dnnRegistrationForm {
  min-width: 0;
  width: auto;
}
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnForm {
  width: auto;
  float: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem input[type=text],
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem input[type=password],
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem input[type=email],
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem input[type=tel],
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem select,
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem textarea {
    width: 100%;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem .dnnLabel,
.EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem label {
    width: auto;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone div.dnnRegistrationForm .dnnFormItem .password-strength-container {
    width: 100%;
  }
}
.EasyDNNSkin_Ozone .dnnLogin .LoginPanel {
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .dnnLogin .dnnFormItem .dnnLabel,
.EasyDNNSkin_Ozone .dnnLogin .dnnFormItem label {
    width: auto;
  }
}

.eds_backToTop {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  border: solid 2px #848484;
  text-decoration: none;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.eds_backToTop:hover {
  background-color: #848484;
  text-decoration: none;
}
.eds_backToTop::before {
  content: "";
  color: #fff;
  font-size: 23px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 49px;
  text-decoration: none;
}
.eds_backToTop > span {
  display: none;
}
.eds_backToTop.eds_backToTopVisible {
  visibility: visible;
  opacity: 1;
}
.eds_backToTop.eds_backToTopFadeOut {
  opacity: 0.6;
}

.no-js .eds_pageLoader {
  display: none;
}

.eds_pageLoader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000 no-repeat center center;
  z-index: 99999;
}
.eds_pageLoader .eds_preloadPortalTitle {
  display: block;
  position: absolute;
  top: 51%;
  left: 20%;
  right: 20%;
  font-family: Arial;
  font-size: 30px;
  color: #fff;
  text-align: center;
}
.eds_pageLoader .eds_pageAnimation {
  position: absolute;
  bottom: 51%;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  height: 120px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("/Portals/_default/skins/ozone/assets/images/pageLoader/animation/background/predefined/preloadImage.png") center center no-repeat;
}
.eds_pageLoader .eds_pageAnimation::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  border: solid 1px #c81704;
  border-left-color: #fff;
  border-bottom-color: #fff;
  border-radius: 30% 50%;
  animation: eds_rotate 1s linear infinite;
  -ms-animation: eds_rotate 1s linear infinite;
  -moz-animation: eds_rotate 1s linear infinite;
  -webkit-animation: eds_rotate 1s linear infinite;
}
.eds_pageLoader .eds_customText {
  text-align: center;
  font-family: Arial;
  position: absolute;
  top: 55%;
  left: 20%;
  right: 20%;
  color: #c81704;
  font-size: 15px;
}
.eds_pageLoader .eds_customImage {
  position: absolute;
  bottom: 51%;
  top: 0;
  left: 0;
  right: 0;
  background: url("/Portals/_default/skins/ozone/assets/images/pageLoader2/customImage/predefined/715.gif") center bottom no-repeat;
}
.eds_pageLoader.eds_pageLoader2 {
  background-color: #fff;
}
.eds_pageLoader.eds_pageLoader2 .eds_preloadPortalTitle {
  color: #000;
}
.eds_pageLoader + .EasyDNNSkin_Ozone {
  visibility: hidden;
}
.eds_pageLoader + .EasyDNNSkin_Ozone.eds_contentLoaded {
  visibility: visible;
}

#ControlBar_ControlPanel *,
.actionMenu *,
.dnnDropDownList * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.ModDotNetNukeModulesDigitalAssetsC,
.ModDotNetNukeModulesDigitalAssetsC * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@keyframes eds_OzoneSkinAnimatedBackground {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 0 0;
  }
}
@-webkit-keyframes eds_OzoneSkinAnimatedBackground {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes eds_rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes eds_rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer {
  position: relative;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_fixedHeader {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.87);
  width: 100%;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header {
  min-height: 101px;
  position: relative;
  -webkit-transition: min-height 0.5s linear;
  transition: min-height 0.5s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo {
  background-color: rgba(255, 255, 255, 0.73);
  position: relative;
  max-height: 101px;
  height: 101px;
  text-align: center;
  padding: 22px 32px 0 32px;
  max-width: 100%;
  -webkit-transition: max-height 0.5s linear;
  transition: max-height 0.5s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo {
    float: none;
    width: 100%;
    max-height: 60px;
    height: auto;
    padding: 5px 5px 0 5px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo > a {
  display: inline-block;
  max-width: 100%;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo > a > img {
  max-height: 60px;
  max-width: 300px;
  -webkit-transition: max-height 0.5s linear;
  transition: max-height 0.5s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo > a > img {
    max-height: 48px;
    max-width: 200px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo::after {
  content: "";
  display: block;
  height: 3px;
  background-color: #c81704;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 {
  display: table;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 {
    float: none;
    width: 100%;
    max-height: 60px;
    height: auto;
    padding: 5px;
    margin-bottom: 10px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 > a {
  display: table-cell;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 > a > img {
  max-height: 91px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 > a > img {
    max-height: 48px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language {
  margin: 5px 26px;
  z-index: 2;
  min-width: 154px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language .eds_languageText {
  display: block;
  background: url("/Portals/_default/skins/ozone/assets/images/header/language/icon1/predefined/language.png") no-repeat 0 center;
  padding-left: 28px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #272621;
  line-height: 1.3;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language .eds_languageText {
    text-indent: -9999px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language:hover .eds_languageText {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  top: 100%;
  background-color: #fff;
  border: solid 1px #cd1301;
  border-radius: 2px;
  padding: 5px 2px;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div * {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div > span {
  margin: 0 3px;
  padding: 1px;
  line-height: 0;
  border: solid 1px transparent;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div > span:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div > span.selected {
  border-color: #c81704;
  opacity: 1;
  filter: alpha(opacity=1);
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language:hover > div {
  visibility: visible;
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language:hover > div * {
  display: inherit;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language:hover > div > span {
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
  height: 30px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
    height: auto;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup {
  float: right;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup {
  margin-top: 5px;
  margin-left: 26px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup a,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #272621;
  text-decoration: none;
  padding-left: 27px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup a:hover,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/loginLogout/icon1/predefined/login.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName {
  margin-left: 22px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a {
  margin-top: 5px;
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/register/icon1/predefined/register.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a {
  font-size: 14px;
  padding-left: 0;
  background-image: none !important;
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a:hover {
  color: #272621;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications {
  margin-top: 7px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a span, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a span {
  display: inline-block;
  position: absolute;
  background-color: #e71601;
  padding: 3px;
  border-radius: 8px;
  line-height: 1;
  font-size: 9px;
  color: #fff;
  bottom: -9px;
  right: -6px;
  font-family: "PT Sans", sans-serif;
  min-width: 16px;
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover {
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages {
  margin-left: 30px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons1/predefined/message.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications {
  margin-left: 20px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons1/predefined/notification.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton {
  float: right;
  background: #e61601 url("/Portals/_default/skins/ozone/assets/images/header/search1/searchButton/background/predefined/searchIcon.png") center center no-repeat;
  width: 28px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  border: none;
  outline: none;
  margin-left: 19px;
  margin-right: 1px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 0 1px #df9c93, 0 -30px 15px -15px rgba(0, 0, 0, 0.12) inset;
          box-shadow: 0 0 1px #df9c93, 0 -30px 15px -15px rgba(0, 0, 0, 0.12) inset;
  cursor: pointer;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer {
  left: auto;
  top: 0;
  right: 0;
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: solid 1px #cd1301;
  border-radius: 2px;
  padding: 28px;
  visibility: hidden;
  background-color: #fff;
  z-index: 1000;
  min-width: 280px;
  -webkit-transition: top 0.3s linear;
  transition: top 0.3s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 21px;
  font-weight: bold;
  color: #ddd;
  line-height: 1;
  cursor: pointer;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch {
  border: solid 1px #c81704;
  border-radius: 4px;
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
  border: none;
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
  line-height: 27px;
  height: 27px;
  padding: 0 10px;
  background: none transparent;
  color: #c1c1c1;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 170px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:hover, .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton {
  background: #e71601 url("/Portals/_default/skins/ozone/assets/images/header/search1/searchForm/submitButton/background/predefined/searchIcon.png") no-repeat center center;
  height: 27px;
  width: 33px;
  font-size: 0;
  line-height: 0;
  float: right;
  border-radius: 0 2px 2px 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer.eds_searchVisible {
  visibility: visible;
  top: 50px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
  position: relative;
  top: 0px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
  -webkit-transition: top 0.3s linear;
  transition: top 0.3s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_headerBanner {
  margin: 3px 15px 9px 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_headerBanner .Normal {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.1;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerContent {
  position: relative;
  z-index: 1;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerContent #EDSadmin {
  padding-top: 150px;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerHeightHolderPd,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerHeightHolder {
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_pageDetails ~ .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_pageDetails ~ .eds_headerHeightHolder + .DNNEmptyPane + .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .DNNEmptyPane + .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerHeight ~ .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerHeight ~ .DNNEmptyPane + .eds_headerHeightHolder {
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground {
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground .eds_header .eds_language {
    margin: 5px 0 5px 27px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground .eds_header .eds_language {
    margin: 16px 0 0;
    min-width: 0;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground .eds_header .eds_userLogin {
    margin-top: 10px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground .eds_header .eds_searchButton {
    border-radius: 4px;
    margin-top: 10px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_logoMenuSearchContainer {
  position: relative;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground {
  background: none #fff;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground::after {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLanguageBg {
  background-color: #121212;
  position: relative;
  min-height: 31px;
  -webkit-transition: min-height 0.3s linear;
  transition: min-height 0.3s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLanguageBg > div {
  margin-top: 0;
  -webkit-transition: margin 0.3s linear;
  transition: margin 0.3s linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language {
  margin-left: 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language .eds_languageText {
  color: #6a6a6a;
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/language/icon2/predefined/languageWhite.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language:hover .eds_languageText {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language > div {
  background-color: #121212;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo {
  background: none transparent;
  padding: 19px 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo {
    padding: 7px 0;
    max-height: 75px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo {
    max-height: 48px;
    margin: 15px 0;
    padding: 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo::after {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 {
    display: table;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 {
    display: block;
    max-height: 68px;
    margin-top: 5px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 > a {
    display: table-cell;
    vertical-align: middle;
  }
}
@media handheld, only screen and (max-width: 768px) and (max-width: 480px), only screen and (max-width: 768px) and (max-device-width: 480px), only screen and (max-device-width: 768px) and (max-width: 480px), only screen and (max-device-width: 768px) and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 > a {
    display: inline-block;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 > a > img {
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 > a > img {
    max-width: 300px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo.eds_logoHeader2 > a > img {
    max-width: 200px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight.eds_bannerPane {
  margin-top: 20px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight.eds_bannerPane {
    display: block !important;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
  max-height: 124px;
  margin: 20px 0;
  padding: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
    margin: 10px 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 > a > img {
  max-height: 110px;
  max-width: 300px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 > a > img {
    max-height: 48px;
    max-width: 200px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .loginGroup a,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a {
  color: #6a6a6a;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .loginGroup a:hover,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/loginLogout/icon1/predefined/loginWhite.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/register/icon2/predefined/registerWhite.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons2/predefined/messageWhite.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a {
  background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons2/predefined/notificationWhite.png");
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight {
  margin-top: 37px;
  margin-bottom: 20px;
  text-align: right;
  -webkit-transition: margin 400ms linear;
  transition: margin 400ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight {
    margin-top: 25px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight {
    margin-bottom: 32px;
    clear: both;
    margin-top: 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight > div {
  display: inline-block;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search {
  text-align: left;
  -webkit-transition: margin 300ms linear;
  transition: margin 300ms linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer {
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input {
  border: solid 1px #c81704;
  border-radius: 2px;
  line-height: 25px;
  height: 25px;
  background: none #121212;
  font-family: "PT Sans", sans-serif;
  color: #4a4a4a;
  font-size: 12px;
  padding: 0 5px;
  width: 260px;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input {
    width: 220px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input:hover, .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input:focus {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .eds_searchButton2 {
  text-indent: 9999px;
  background: transparent url("/Portals/_default/skins/ozone/assets/images/header/search2/searchButton/predefined/searchIcon_header2.png") center center no-repeat;
  width: 27px;
  height: 27px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_menuBg {
  background-color: #161616;
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerBanner {
    display: none !important;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerBanner .Normal {
  color: #595959;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_topHeaderIcons {
    float: none !important;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_topHeaderIcons + .header2search {
    display: none;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_topHeaderIcons ~ .eds_userLogin {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_topHeaderIcons ~ .eds_userLogin .registerGroup,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_topHeaderIcons ~ .eds_userLogin .loginGroup {
    float: none;
    display: inline-block;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight.eds_headerBanner.eds_bannerPane {
    display: none !important;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerHeight ~ .eds_headerHeightHolder {
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerHeight ~ .eds_headerHeightHolder ~ .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerHeight ~ .eds_pageDetails ~ .eds_headerHeightHolder {
  display: none;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search {
  line-height: 0;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search {
    position: static;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div {
  position: absolute;
  min-width: 280px;
  height: 30px;
  display: inline-block;
  visibility: hidden;
  right: 0;
  line-height: 0;
  line-height: 1.3;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div {
    top: 35px;
    right: 15px;
    height: 50px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer {
  right: 0;
  top: 1px;
  padding: 0 28px 0 0;
  background-color: #121212;
  border: none;
  background-image: none !important;
  min-width: 0;
  height: 29px;
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer {
    padding: 10px 28px 10px 10px;
    height: 49px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer.eds_searchVisible {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch {
  background-color: #121212;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
  background: none transparent;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:hover, .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search .eds_searchButton {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_logo {
    clear: both;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_logo.eds_logoHeader3 > a > img {
  max-width: 100%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_logo.eds_logoHeader3 > a > img {
    max-width: 100%;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_userLogin,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_searchButton {
    margin-top: 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_language {
    margin-top: 5px;
  }
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 {
  min-height: 143px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 {
    min-height: 135px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 {
    min-height: 143px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 {
    min-height: 164px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 .eds_headerBackground {
  background-color: #fff;
  border-bottom: solid 10px #a21807;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 .eds_headerBackground {
    border-bottom-width: 2px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 .eds_headerBackground .eds_search {
  line-height: 0;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 .eds_headerBackground .eds_logoMenuContainer {
  position: relative;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo {
  height: 102px;
  max-height: 102px;
  padding: 10px 0;
  display: table;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo {
    float: left;
    width: auto;
    max-height: 60px;
    padding: 5px 5px 0 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo {
    max-height: 60px;
    padding: 5px 5px 0 0;
    margin: 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo > a {
  display: table-cell;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo > a img {
  max-height: 81px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo > a img {
    max-height: 48px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_logo > a img {
    max-height: 48px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_header .eds_userLanguageBg {
    margin-bottom: 0;
  }
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg {
  background-color: #ab1707;
  -webkit-box-shadow: 0 60px 30px -30px #ec1601 inset, 0 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 60px 30px -30px #ec1601 inset, 0 2px 3px rgba(0, 0, 0, 0.3);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 1px;
  z-index: 1001;
  -webkit-transition: padding 300ms linear;
  transition: padding 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg {
    padding-bottom: 1px;
    margin-bottom: 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::before, .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::after {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transition: height 300ms linear;
  transition: height 300ms linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::before {
  height: 12px;
  bottom: 0;
  background-color: #600e04;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::before {
    height: 1px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::after {
  height: 1px;
  bottom: -1px;
  background-color: #d41502;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::after {
    height: 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground {
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header {
  z-index: 1000;
  min-height: 86px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header {
    min-height: 39px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header {
    padding-bottom: 10px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
  -webkit-transition: margin 300ms linear;
  transition: margin 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
    margin: 5px 0;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
    margin: 5px 0 0 27px;
    float: left !important;
    min-width: 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
    margin-left: 0;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language .eds_languageText {
    text-indent: -9999px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo {
  background: none transparent;
  padding: 0;
  margin: 10px 20px 10px 0;
  height: auto;
  max-height: 100px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo {
    max-height: 50px;
    margin: 5px 10px 5px 0;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo::after {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo > a > img {
  max-height: 100px;
  max-width: 400px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo > a > img {
    max-width: 300px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo > a > img {
    max-height: 50px;
    max-width: 200px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner {
  margin-top: 20px;
  margin-right: 0;
  clear: right;
  width: 70%;
  text-align: right;
  font-size: 18px;
  -webkit-transition: font-size 500ms linear;
  transition: font-size 500ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner {
    width: auto;
    margin: 3px 0;
    font-size: 14px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_searchButton {
    border-radius: 4px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerRight {
  float: right !important;
  position: relative;
  -webkit-transition: margin 300ms linear;
  transition: margin 300ms linear;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_fixedHeader ~ .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_fixedHeader ~ .DNNEmptyPane + .eds_headerHeightHolder {
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_fixedHeader ~ .eds_pageDetails ~ .eds_headerHeightHolder {
  display: none;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_fixedHeader ~ .eds_pageDetails ~ .eds_headerHeightHolder + .DNNEmptyPane + .eds_headerHeightHolder {
  display: none;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5.eds_headerContainer6 .eds_headerBackground .eds_header {
  z-index: 1002;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerHeight ~ .eds_headerHeightHolder {
  display: block;
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerHeight ~ .eds_headerHeightHolder ~ .eds_headerContent ~ .eds_headerHeightHolder {
  display: none;
}

.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 + .eds_headerHeightHolder {
  height: 80px;
  display: block;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 + .eds_headerHeightHolder {
    display: none;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 ~ .eds_headerHeightHolderSmall {
  display: none;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 ~ .eds_headerHeightHolderSmall {
    display: block;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 ~ .eds_sideHeader ~ .eds_headerHeightHolder {
  display: none !important;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container {
  width: 100%;
  height: 80px;
  position: relative;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container {
    height: auto;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8left {
  position: absolute;
  left: 15px;
  top: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8left {
    width: 20%;
    position: static;
    float: left;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8left > div {
  display: inline-block;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8left .eds_sideHeader8TrigerContainer {
  margin-top: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8left .eds_sideHeader8TrigerContainer {
    margin-top: 0;
    margin-bottom: 45px;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right {
  position: absolute;
  right: 15px;
  top: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right {
    width: 80%;
    position: static;
    float: right;
    text-align: right;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right > div {
  display: inline-block;
  margin: 15px 0 0 25px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right > div {
    margin-left: 20px;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right .eds_header8Language {
  display: none;
  position: absolute;
  margin-top: 10px;
  top: 90%;
  right: 80px;
  margin-left: 15px;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8right .eds_header8Language.eds_header8LanguageActive {
  display: block;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle {
    clear: both;
    padding: 15px;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo {
  display: table;
  width: 100%;
  height: 80px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo {
    display: block;
    height: auto;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div {
    display: block;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div > a {
  max-width: 100%;
  display: inline-blcok;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div > a > img {
  max-height: 70px;
  max-width: 350px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div > a > img {
    max-width: 300px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div > a > img {
    max-width: 250px;
    max-height: 45px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_header8Container .eds_header8middle .eds_header8Logo > div > a > img {
    max-width: 100%;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_Header8Pane {
  max-height: 80px;
  min-height: 0 !important;
  margin: 0 !important;
  background-color: #c81704;
  text-align: initial;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_Header8Pane {
    margin-top: 0 !important;
    display: none !important;
    position: absolute;
    padding: 15px;
    width: auto;
    max-height: none;
    top: 90%;
    right: 15px;
    right: 15px;
    -webkit-box-shadow: 0 0 3px #000;
            box-shadow: 0 0 3px #000;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_Header8Pane.eds_Header8PaneActive {
    display: block !important;
  }
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_Header8Pane.DNNEmptyPane + .eds_Header8PaneTrigerContainer {
  display: none !important;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_animatedHeader {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_animatedHeader.eds_headerUp {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_animatedHeader.eds_headerUp .eds_Header8Pane.eds_Header8PaneActive,
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_animatedHeader.eds_headerUp .eds_header8Language.eds_header8LanguageActive {
  top: -100% !important;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel {
  position: absolute;
  width: 100%;
  background-color: #121212;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin {
  text-align: right;
  padding: 10px 0;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup {
  display: inline-block;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup {
  margin-left: 26px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a {
  display: inline-block;
  font-size: 17px;
  line-height: 31px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  font-family: "PT Sans", sans-serif;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a:hover,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a::before,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c81704;
  font-size: 21px;
  padding-right: 5px;
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup > a::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName {
  margin-left: 22px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li + li.userDisplayName a {
  font-size: 17px;
  background-image: none !important;
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li + li.userDisplayName a:hover {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li + li.userDisplayName a::before {
  display: none;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userProfileImg {
  margin: 0 10px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userProfileImg > a {
  display: inline-block;
  position: relative;
  width: 40px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userProfileImg > a > img {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 26px;
  width: 26px;
  z-index: 3;
  -webkit-box-shadow: 0 0 1px 0 #fff;
          box-shadow: 0 0 1px 0 #fff;
  border: solid 1px #000;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userProfileImg > a:hover > img {
  -webkit-transform: scale(4);
          transform: scale(4);
  margin-top: 40px;
  border-radius: 2px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  padding: 0 10px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a strong, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a strong {
  font-size: 10px;
  line-height: 31px;
  color: #fff;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a strong::before, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a strong::before {
  font-size: 17px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 31px;
  color: #fff;
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a span, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a span {
  display: inline-block;
  position: absolute;
  background-color: #c81704;
  border: solid 1px rgba(255, 255, 255, 0.5);
  padding: 3px;
  border-radius: 4px;
  line-height: 1;
  font-size: 9px;
  color: #fff;
  top: 1px;
  right: -5px;
  min-width: 16px;
  text-align: center;
  opacity: 0.7;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a:hover, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a:hover {
  text-decoration: none !important;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a:hover strong, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a:hover strong {
  color: silver;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a:hover span, .EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a:hover span {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages {
  margin-left: 30px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a strong::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications {
  margin-left: 12px;
}
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a strong::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_header8UserPanel.eds_header8UserPanelActive {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel {
  background-color: #1b1b1b;
  height: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel * {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel .eds_header8searchTitleContainer {
  background-color: #121212;
  padding: 5px 0;
  margin-bottom: 20px;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel .eds_header8searchTitleContainer .eds_header8SearchTitle {
  font-size: 23px;
  line-height: 23px;
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch {
  border: solid 1px #575757;
  padding: 20px;
  display: block;
  margin-bottom: 20px;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer {
  width: 90%;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
  color: #575757;
  width: 100%;
  font-size: 40px;
  line-height: 1.3;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
    font-size: 20px;
  }
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:hover, .EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton {
  text-decoration: none !important;
  font-size: 0;
  line-height: 0;
  float: right;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #575757;
  font-size: 50px;
  line-height: 1;
  content: "";
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton::before {
    font-size: 25px;
  }
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton:hover::before {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview {
  left: 4px;
  right: auto;
  width: 100%;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer a.dnnSearchBoxClearText {
  z-index: 201;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview {
  background: none #272727;
  border: solid 1px #c81704;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li {
  border-top: solid 1px #636261;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:first-child {
  border-top: none;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:hover {
  color: #c81704;
  background-color: transparent;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel.eds_header8SearchPanelActive {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  height: auto;
  overflow: visible;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanel.eds_header8SearchPanelActive * {
  visibility: visible;
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger {
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger .eds_headerOpen,
.EasyDNNSkin_Ozone .eds_sideHeader8Triger .eds_headerClose {
  position: absolute;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger .eds_headerOpen {
  visibility: visible;
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger .eds_headerClose {
  opacity: 0;
  visibility: hidden;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger:hover {
  color: #272621;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger.eds_headerActive .eds_headerOpen {
  visibility: hidden;
  opacity: 0;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Triger.eds_headerActive .eds_headerClose {
  opacity: 1;
  visibility: visible;
}
.EasyDNNSkin_Ozone .eds_header8Language {
  background-color: #000;
  -webkit-box-shadow: 0 0 3px #fff;
          box-shadow: 0 0 3px #fff;
  padding: 10px;
  border-radius: 3px;
}
.EasyDNNSkin_Ozone .eds_header8Language .language-object > span {
  margin: 3px;
}
.EasyDNNSkin_Ozone .eds_header8Language .language-object > span img {
  border: solid 1px #c81704;
  padding: 1px;
  border-radius: 50%;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.EasyDNNSkin_Ozone .eds_header8Language .language-object > span:hover img, .EasyDNNSkin_Ozone .eds_header8Language .language-object > span.selected img {
  border-radius: 3px;
}
.EasyDNNSkin_Ozone .eds_header8Language .language-object > span.selected img {
  border-color: #fff;
  border-radius: 3px;
}
.EasyDNNSkin_Ozone .eds_header8LanguageTriger {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}
.EasyDNNSkin_Ozone .eds_header8LanguageTriger:hover {
  color: #272621;
}
.EasyDNNSkin_Ozone .eds_Header8PaneTrigerContainer {
  display: none !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_Header8PaneTrigerContainer {
    display: inline-block !important;
  }
}
.EasyDNNSkin_Ozone .eds_header8SearchPanelTriger > span,
.EasyDNNSkin_Ozone .eds_header8UserPanelTriger > span {
  display: none;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanelTriger {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_header8SearchPanelTriger:hover {
  color: #272621;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_header8UserPanelTriger {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_header8UserPanelTriger:hover {
  color: #272621;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_Header8PaneTriger {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.EasyDNNSkin_Ozone .eds_Header8PaneTriger:hover {
  color: #272621;
}

.EasyDNNSkin_Ozone.eds_fixedSideHeader {
  margin-left: 300px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader {
    margin-left: 0;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeader {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 999;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger {
  padding: 6px 8px;
  border: solid 1px #636261;
  background-color: #0d0907;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 2;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger {
    display: inline-block;
    visibility: visible;
    opacity: 1;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger:hover {
  border-radius: 8px;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger > i {
  text-align: center;
  color: #fff;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger .eds_headerOpen {
  line-height: 1;
  font-size: 21px;
  opacity: 1;
  visibility: visible;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger {
  left: 330px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger {
    left: 15px;
    top: 15px;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger .eds_headerOpen {
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger .eds_headerClose {
  line-height: 1;
  font-size: 21px;
  opacity: 1;
  visibility: visible;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeader {
  width: 300px;
  left: 0;
  visibility: visible;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen {
  margin-left: 0;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen .eds_sideHeader {
  width: 0;
  left: -330px;
  visibility: hidden;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen .eds_sideHeaderTriger {
  left: 30px;
  display: inline-block;
  visibility: visible;
  opacity: 1;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_headerActive .eds_sideHeader {
  width: 300px;
  left: 0;
  visibility: visible;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_headerActive .eds_sideHeaderTriger {
  left: 330px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_headerActive .eds_sideHeaderTriger {
    left: 15px;
    top: 15px;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent {
  overflow-x: hidden;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent .eds_headerContainer ~ div,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent .eds_headerContainer .eds_headerContent,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent .eds_pageDetails {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_headerContainer ~ div,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_headerContainer .eds_headerContent,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_pageDetails {
  -webkit-transform: translate3d(300px, 0px, 0px);
  transform: translate3d(300px, 0px, 0px);
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_headerContainer ~ div,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_headerContainer .eds_headerContent,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_pushContent.eds_headerActive .eds_pageDetails {
    -webkit-transform: none;
    transform: none;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .eds_sideHeaderPane {
  padding-left: 25px;
  padding-right: 25px;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
  width: 220px;
  padding-left: 25px;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton {
  width: 80px;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .responsAbilityMenu {
  clear: none;
  margin-top: 35px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .responsAbilityMenu {
    margin-top: 6px;
  }
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader.eds_headerActive .eds_sideHeader {
  left: auto;
  right: 0;
  padding-top: 50px;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader.eds_headerActive .eds_sideHeader7Triger .eds_headerOpen {
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
}
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader.eds_headerActive .eds_sideHeader7Triger .eds_headerClose {
  line-height: 37px;
  font-size: 21px;
  opacity: 1;
  visibility: visible;
}
.EasyDNNSkin_Ozone .eds_sideHeader {
  width: 300px;
  overflow: hidden;
  left: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_sideHeader {
    width: 0;
    left: -330px;
    visibility: hidden;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_sideWrapper {
  height: 100%;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 30px;
  position: absolute;
  top: 0;
  width: 330px;
  background-color: #0d0906;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header {
  padding: 40px 0;
  width: 300px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader .eds_header {
    padding: 15px 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo {
  text-align: center;
  max-width: 100%;
  margin: 0 30px 20px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo > a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo > a img {
  max-width: 100%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo > a img {
    max-height: 50px;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo > a::before {
  position: absolute;
  top: -240%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo > a:hover::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
  top: 200%;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo.eds_logoHeader8 {
  text-align: left;
  width: 200px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logo.eds_logoHeader8 > a {
  max-width: 200px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logoCloseContainer {
  display: table;
  width: 100%;
  padding: 0 15px 20px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_logoCloseContainer > div {
  display: table-cell;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin {
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup a,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup a:hover,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup a::before,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c81704;
  font-size: 21px;
  padding-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup > a::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName {
  margin-right: 10px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName {
  display: block;
  width: 300px;
  margin-right: 0;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a {
  background-image: none !important;
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a:hover {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a::before {
  display: none;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg {
  margin: 10px 0 15px;
  display: block;
  text-align: center;
  width: 300px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg > a {
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg > a > img {
  max-height: 80px;
  width: auto;
  padding: 1px;
  border: solid 1px #c81704;
  background-color: #212121;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg > a > img {
    max-height: 40px;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  padding: 0 10px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong {
  font-size: 10px;
  line-height: 31px;
  color: #fff;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong::before, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong::before {
  font-size: 17px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 31px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a span, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a span {
  display: inline-block;
  position: absolute;
  background-color: #c81704;
  border: solid 1px rgba(255, 255, 255, 0.5);
  padding: 3px;
  border-radius: 4px;
  line-height: 1;
  font-size: 9px;
  color: #fff;
  top: 1px;
  right: -5px;
  min-width: 16px;
  text-align: center;
  opacity: 0.7;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover {
  text-decoration: none !important;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover strong, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover strong {
  color: silver;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover span, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover span {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications {
  margin-left: 15px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language {
  text-align: center;
  margin: 20px 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language {
    margin: 10px 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span {
  margin: 4px;
  border: solid 1px #fff;
  font-size: 0;
  line-height: 0;
  display: inline-block;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span img {
  opacity: 0.5;
  width: 25px;
  height: auto;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span:hover img {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span.selected {
  -webkit-box-shadow: 0 0 9px #fff;
          box-shadow: 0 0 9px #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span.selected img {
  opacity: 1;
  width: auto;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer {
  border-top: solid 1px #2d2c2c;
  border-bottom: solid 1px #2d2c2c;
  background-color: #212121;
  margin: 30px 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer {
    margin: 10px 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input {
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  line-height: 40px;
  padding: 0 10px;
  background: none transparent;
  color: #afafaf;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 80%;
  box-shadow: none;
  margin: 0;
  min-height: 40px;
  -webkit-transition: color 200ms linear;
  transition: color 200ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:hover, .EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton {
  width: 20%;
  text-align: center;
  font-size: 0;
  line-height: 0;
  float: right;
  text-decoration: none !important;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 22px;
  color: #fff;
  line-height: 40px;
  vertical-align: top;
  text-decoration: none !important;
  -webkit-transition: color 200ms linear;
  transition: color 200ms linear;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton:hover::before {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview {
  left: 4px;
  right: auto;
  width: 290px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer a.dnnSearchBoxClearText {
  right: -23px !important;
  top: 5px;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview {
  background: none #272727;
  border: solid 1px #c81704;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li {
  border-top: solid 1px #636261;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:first-child {
  border-top: none;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:hover {
  color: #c81704;
  background-color: transparent;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_sideHeaderPane {
  color: #fff;
  padding: 25px 15px 0;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_sideHeaderPane .Normal {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_sideHeaderPane.eds_sideHeaderPaneTop {
  padding-top: 0;
  padding-bottom: 25px;
}
.EasyDNNSkin_Ozone .eds_sideHeader7TrigerContainer {
  float: right;
  margin: 30px 0 0 15px;
  position: relative;
  z-index: 1;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_sideHeader7TrigerContainer {
    margin-top: 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader7Triger {
  overflow: hidden;
  line-height: 31px;
  font-size: 0;
  border: none;
  outline: none;
  margin-left: 19px;
  cursor: pointer;
  float: right;
  width: 40px;
  height: 40px;
  border: solid 1px #c81704;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_sideHeader7Triger {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader7Triger > i {
  color: #c81704;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
}
.EasyDNNSkin_Ozone .eds_sideHeader7Triger .eds_headerOpen {
  line-height: 37px;
  font-size: 21px;
  opacity: 1;
  visibility: visible;
}
.EasyDNNSkin_Ozone .eds_sideHeader7Triger:hover > i {
  color: #272621;
}
.EasyDNNSkin_Ozone .eds_sideHeader7CloseContainer {
  text-align: right;
  margin-bottom: 15px;
  padding-right: 25px;
  margin-top: -30px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_sideHeader7CloseContainer {
    margin-top: 0;
  }
}
.EasyDNNSkin_Ozone .eds_sideHeader7Close {
  overflow: hidden;
  line-height: 31px;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: solid 1px #c81704;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_sideHeader7Close::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #c81704;
  font-size: 21px;
  line-height: 38px;
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader7Close:hover::before {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_sideHeader8CloseContainer {
  text-align: right;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Close {
  overflow: hidden;
  line-height: 31px;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: solid 1px #c81704;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Close::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #c81704;
  font-size: 21px;
  line-height: 38px;
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_sideHeader8Close:hover::before {
  color: #c81704;
}

#ControlBar_ControlPanel ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeader .eds_header,
#ControlBar_ControlPanel ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger {
  margin-top: 53px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu {
  clear: right;
  margin-top: 5px;
  -webkit-transition: margin 0.5s linear;
  transition: margin 0.5s linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu {
    margin-top: -5px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper {
  display: none;
  text-align: right;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper {
    display: block;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  display: block;
  color: #272621;
  cursor: pointer;
  position: relative;
  line-height: 45px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  right: 0;
  display: inline-block;
  margin-left: 10px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .edsmm_menuItem {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .edsmm_menuItem {
    background: url("/Portals/_default/skins/ozone/common/images/mainMenuLiSeparator.png") repeat-x 0 bottom;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper {
    display: none;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > span {
  display: block;
  position: relative;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li .edsmm_itemContainer {
  font-family: "Roboto Condensed", sans-serif;
  white-space: nowrap;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li .edsmm_itemContainer:hover {
  text-decoration: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li .edsmm_childIndicator {
  display: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li:hover > div {
  opacity: 1;
  visibility: visible;
  min-width: 180px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li:hover > div {
    display: none !important;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li:hover > div .edsmm_menuListsContainer > ol > li {
  display: block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li .edsmm_childIndicator {
  display: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div {
  background-color: #000;
  left: 0;
  text-align: left;
  position: absolute;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div {
    display: none;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li {
  display: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer {
  font-size: 15px;
  line-height: 1.5;
  display: block;
  color: #fff;
  padding: 7px 18px;
  -webkit-transition: padding 0.2s linear;
  transition: padding 0.2s linear;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer:hover {
  padding-left: 21px;
  padding-right: 15px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li:hover > span .edsmm_itemContainer {
  background-color: #272621;
  padding-left: 21px;
  padding-right: 15px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li.edsmm_active > span .edsmm_itemContainer {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > span::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 15px;
  color: #fff;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > span::after {
    display: none;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > div {
  left: auto;
  top: 0;
  right: 100%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_disabled .edsmm_itemContainer {
  padding: 7px 18px !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol > li.edsmm_disabled > span .edsmm_itemContainer {
  cursor: default;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol {
  text-align: right;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol {
    text-align: left;
    margin-right: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li {
  display: inline-block;
  margin: 0 12px;
  position: relative;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li {
    display: block;
    margin: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  display: inline-block;
  line-height: 63px;
  font-size: 20px;
  color: #272621;
  position: relative;
  border-bottom: solid 3px transparent;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li > span .edsmm_itemContainer {
    display: block;
    margin-right: 50px;
    padding-left: 10px;
    line-height: 45px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
  border-style: solid;
  border-width: 0 0 3px 0;
  border-color: #e71601;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
    border-width: 0 0 0 3px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 4px 7px;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: #e71601;
  bottom: 0;
  left: 50%;
  margin-left: -8px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after {
    display: none !important;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer {
  color: #c81704;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper {
    display: block;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.raItemOpened > div {
    display: block !important;
    position: relative !important;
    border-radius: 0;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    visibility: visible;
    width: auto;
    border-radius: 0;
    opacity: 1;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol {
    padding: 0;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li {
    display: block;
    padding: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer {
  padding: 10px 12px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > div {
  left: auto !important;
  right: auto !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.edsmm_hasChild > span > .edsmm_childIndicator {
    display: block !important;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    right: 10px;
    margin: 0;
    cursor: pointer;
    background-color: #fff;
    border: solid 1px #000;
    border-radius: 50%;
    padding: 0;
    line-height: 0;
    text-align: center;
    pointer-events: auto;
    z-index: 10;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.edsmm_hasChild > span > .edsmm_childIndicator::after {
    color: #000;
    font-size: 15px;
    font-weight: bold;
    line-height: 30px;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 38px;
    height: 38px;
    text-indent: -10px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.edsmm_hasChild.raItemOpened > span > .edsmm_childIndicator::after {
  content: "";
  line-height: 22px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .responsAbilityMenu {
    float: none !important;
    padding-top: 20px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .responsAbilityMenu {
    padding-top: 0;
    margin-top: 20px;
  }
}
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .responsAbilityMenu.raMenuOpened .raMenuWrapper {
  clear: both;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 {
  margin-top: 0;
  padding-left: 3px !important;
  padding-right: 3px !important;
  position: relative;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > div {
  left: 100%;
  right: auto;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol {
  text-align: left;
  margin-right: 0;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  font-size: 25px;
  line-height: 50px;
  color: #fff;
  border-bottom: none;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
    font-size: 20px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
  border: none;
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after {
  display: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  padding: 10px 15px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2.raMenuOpened .raMenuWrapper > ol > li.edsmm_hasChild > span > .edsmm_childIndicator {
  top: 10px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2.eds_menuType3 .raMenuWrapper > ol {
  text-align: center;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2.eds_menuType3 .raMenuWrapper > ol {
    text-align: left;
  }
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 {
  margin-top: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 {
    margin-top: 30px;
    margin-bottom: 10px;
    float: none !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li {
  margin: 0;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  border-bottom: none;
  padding: 0 23px;
  color: #cd1301;
  line-height: 102px;
  font-size: 24px;
  font-weight: 300;
  -webkit-transition: line-height 0.5s linear;
  transition: line-height 0.5s linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
    line-height: 45px;
    padding: 0 0 0 10px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer {
  color: #000;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active {
  background-color: #a21807;
  -webkit-box-shadow: 0 120px 60px -60px #e31602 inset;
          box-shadow: 0 120px 60px -60px #e31602 inset;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
  color: #fff;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
    border: none;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after {
  display: none;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuTriggerWrapper {
    display: block;
    float: right;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuTriggerWrapper .raMenuTrigger {
  display: inline-block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4.raMenuOpened .raMenuWrapper {
  clear: both;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 {
  margin-top: 0;
  position: relative;
  max-width: 1200px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol {
  margin-right: 0;
  text-align: left;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li {
  margin: 0 30px 0 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li {
    margin: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  line-height: 58px;
  border-bottom: none;
  font-size: 24px;
  color: #fff;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
    line-height: 45px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer {
  color: #600e04;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
  border-color: #600e04;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after {
  border-color: transparent transparent #600e04;
  border-width: 8px 12px;
  margin-left: -12px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > div {
  left: 100%;
  right: auto;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger {
  color: #fff;
  line-height: 58px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger:hover {
  color: #600e04;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu {
  margin-top: 0 !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper {
    display: block;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper {
    display: block;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li {
  position: relative;
  display: block;
  margin: 0;
  float: none !important;
  width: auto !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > span::after {
  display: none !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > span .edsmm_itemContainer::after {
  display: none !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild > span .edsmm_childIndicator {
  display: block !important;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 5px;
  right: 10px;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  line-height: 0;
  text-align: center;
  pointer-events: auto;
  z-index: 10;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild > span .edsmm_childIndicator::after {
  color: #c81704;
  font-size: 15px;
  font-weight: bold;
  line-height: 30px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 33px;
  text-indent: -10px;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild > span .edsmm_childIndicator:hover::after {
  color: #fff;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu > div {
  background: none transparent;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu > div::before {
  display: none !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu > div > div::before {
  display: none !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu > div > div ol li > span .edsmm_childIndicator {
  display: none !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span::before {
  line-height: 36px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > div ol li > span .edsmm_itemContainer {
  padding: 0 18px 0 25px !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.raItemOpened > span .edsmm_itemContainer {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.raItemOpened > span .edsmm_childIndicator::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: -7px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div {
  position: static;
  width: auto;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer {
  padding: 0 15px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_active > span .edsmm_itemContainer {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.raItemOpened > div {
  display: block !important;
  position: relative !important;
  border-radius: 0;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  visibility: visible;
  width: auto;
  border-radius: 0;
  opacity: 1;
  height: auto;
  overflow: visible;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.raItemOpened > div .edsmm_menuListsContainer > ol > li {
  display: block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_megaMenu > div > div ol li > div {
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_megaMenu.edsmm_multiColumn > div {
  padding: 0;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div {
  background: none transparent;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer {
  line-height: 41px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol {
  text-align: left;
  margin: 0;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li {
  border-top: solid 1px #2d2d2d;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  line-height: 50px;
  padding: 0 15px;
  color: #fff;
  border-bottom: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_hasChild > span .edsmm_childIndicator::after {
  top: 7px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer {
  color: #fff !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_childIndicator::after {
  color: #fff;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer {
  color: #c81704;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li:first-child {
  border-top: none;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div > div {
  float: none;
  width: auto !important;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li.edsmm_megaMenu > span {
  display: block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li.edsmm_megaMenu .edsmm_itemContainer {
  white-space: pre-wrap;
  display: block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li.edsmm_megaMenu:hover > div .edsmm_menuListsContainer > ol > li {
  display: block;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu {
  position: static;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div {
  left: auto;
  overflow: auto;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div {
    max-height: none !important;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div * {
  visibility: hidden !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div > div {
  position: relative;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div .edsmm_menuListsContainer {
  overflow: hidden;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div .edsmm_menuListsContainer ol + ol {
  margin-top: 20px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div .edsmm_menuListsContainer ol li > div {
  position: relative !important;
  display: block !important;
  left: auto !important;
  right: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0 !important;
  background: none transparent;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu .edsmm_moduleContainer {
  color: #fff;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div {
  padding: 10px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > .edsmm_rightContainer {
    width: 100% !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > .edsmm_menuListsContainer > ol > li {
    width: 100% !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > .edsmm_menuListsContainer ol li.edsmm_hasChild {
    margin-bottom: 5px;
    margin-bottom: 5px;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div {
  padding: 10px;
  float: left;
  width: 100%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div ol li > span .edsmm_itemContainer {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol {
  overflow: hidden;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li {
  display: block;
  float: left;
  padding: 0 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li {
    padding-left: 0;
    padding-right: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span {
  border-bottom: solid 1px #2a2a2a;
  margin-bottom: 10px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span {
    margin-bottom: 0;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span .edsmm_itemContainer {
  border-bottom: solid 1px #060606;
  font-size: 18px;
  white-space: nowrap;
  padding: 6px 5px !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li.edsmm_hasChild > span::after {
  content: "";
  top: 12px;
  right: 5px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer:hover {
  background-color: #272621 !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c81704;
  font-size: 13px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li:hover > div ol li > span > .edsmm_itemContainer {
  background: none transparent;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li.edsmm_hasChild > span::after {
  content: "";
  top: 5px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer {
  padding: 2px 15px !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > div ol li.edsmm_hasChild > span::after {
  content: "";
  top: 3px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > div ol li > span::before {
  left: 15px;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > div ol li > span .edsmm_itemContainer {
  padding: 2px 18px 2px 25px !important;
  font-size: 13px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
    width: 100% !important;
  }
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column > div > .edsmm_rightContainer {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column > div > .edsmm_menuListsContainer > ol > li {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer > ol > li, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_2Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 100%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column > div > .edsmm_rightContainer {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column > div > .edsmm_menuListsContainer > ol > li {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 66.7%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer > ol > li, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_3Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 100%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column > div > .edsmm_rightContainer {
  width: 25%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column > div > .edsmm_menuListsContainer > ol > li {
  width: 25%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 75%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer > ol > li, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_4Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 50%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column > div > .edsmm_rightContainer {
  width: 20%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column > div > .edsmm_menuListsContainer > ol > li {
  width: 20%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 80%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer > ol > li, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 25%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 60%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_5Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li:first-child {
  width: 33.3%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column > div > .edsmm_leftContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column > div > .edsmm_rightContainer {
  width: 16.6%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column > div > .edsmm_menuListsContainer > ol > li {
  width: 16.6%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column > div > .edsmm_menuListsContainer > ol > li:first-child {
  width: 16.6%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 83.4%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentLeft > div > .edsmm_menuListsContainer > ol > li, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 20%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer {
  width: 66.8%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn.edsmm_6Column.edsmm_htmlContentLeft.edsmm_htmlContentRight > div > .edsmm_menuListsContainer > ol > li {
  width: 25%;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_pageWidth > div {
  right: 15px;
  left: 15px;
  width: auto;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_fullWidth > div {
  right: 0;
  left: 0;
  width: 100%;
  position: fixed;
}
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu:hover > div *, .EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.raItemOpened > div * {
  visibility: visible !important;
}
.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper {
  overflow-y: auto;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.edsmm_megaMenu > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > span::after {
    display: block;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuWrapper ol li.edsmm_megaMenu > div .edsmm_menuListsContainer ol li.edsmm_hasChild > span > .edsmm_childIndicator {
    display: none !important;
  }
}

.EasyDNNSkin_Ozone .fontIcon {
  text-align: center;
  display: block;
  text-decoration: none;
  margin-bottom: 0 auto;
  position: relative;
  cursor: default;
}
.EasyDNNSkin_Ozone .fontIcon > a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  font-size: 0;
  z-index: 2;
}
.EasyDNNSkin_Ozone .fontIcon > a > span {
  display: none;
}
.EasyDNNSkin_Ozone .fontIcon > span {
  color: #c81704;
  font-size: 42px;
  line-height: 85px;
  display: inline-block;
  border-radius: 50%;
  background-color: #f2f2f2;
  border: 1px solid #cfcfcf;
  -webkit-box-shadow: 0 0 0 4px #ffffff inset;
          box-shadow: 0 0 0 4px #ffffff inset;
  text-align: center;
  padding: 0;
  width: 90px;
  height: 90px;
  -webkit-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}
.EasyDNNSkin_Ozone .fontIcon:hover > span {
  background-color: #c81704;
  color: #fff;
  border: 1px solid #c81704;
}
.EasyDNNSkin_Ozone .fontIcon > h3 {
  font-size: 21px;
  line-height: 1.3;
  text-decoration: none;
  color: #c81704;
  margin: 14px 0 7px;
  text-align: center;
  display: block;
  padding: 0;
  font-weight: normal;
}
.EasyDNNSkin_Ozone .fontIcon.eds_small > span {
  width: 46px;
  height: 46px;
  font-size: 19px;
  line-height: 41px;
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle {
  color: #fff;
  margin: 7px;
  padding: 7px;
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle > span {
  color: #000;
  border: solid 4px #000;
  -webkit-box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle > h3 {
  color: #fff;
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle .fontIconDescription {
  color: #fff;
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle a {
  color: #fff;
}
.EasyDNNSkin_Ozone .fontIcon.darkStyle:hover > span {
  background-color: #000;
  color: #fff;
}
.EasyDNNSkin_Ozone .fontIconDescription {
  font: 14px/1.3 "Roboto Condensed", sans-serif;
  text-align: center;
  color: #989898;
  margin: 0 auto;
}
.EasyDNNSkin_Ozone .img-circle-thumbnail {
  border: 1px solid #c81704;
  border-radius: 50%;
  padding: 5px;
}
.EasyDNNSkin_Ozone .img-thumbnail {
  border: 1px solid #dddddd;
  padding: 5px;
  -webkit-transition: border-color 0.3s linear;
  transition: border-color 0.3s linear;
}
.EasyDNNSkin_Ozone .img-thumbnail:hover {
  border-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_thumbnail {
  position: relative;
  display: inline-block;
  border: 1px solid #c81704;
  border-radius: 4px;
  padding: 5px;
  margin: 0 20px 15px 0;
}
.EasyDNNSkin_Ozone .eds_thumbnail::after {
  bottom: 5px;
  left: 5px;
  right: 5px;
  top: 5px;
  position: absolute;
  content: "";
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.EasyDNNSkin_Ozone .eds_thumbnail:hover::after {
  background-color: rgba(147, 24, 9, 0.67);
}
.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail {
  border-radius: 50%;
}
.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail::after {
  border-radius: 50%;
}
.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail img {
  border-radius: 50%;
}
.EasyDNNSkin_Ozone .Error404 {
  font: bold 380px/1 "Roboto Condensed", sans-serif;
  color: #dfdfdf;
  text-decoration: underline;
  text-align: center;
  margin: 0 0 25px;
  padding: 0;
}
.EasyDNNSkin_Ozone .Error404Text {
  font: bold 65px/1 "Roboto Condensed", sans-serif;
  color: #121212;
  text-align: center;
  margin: 0 0 25px;
  padding: 0;
}
.EasyDNNSkin_Ozone .Error404Text2 {
  font: 24px/1 "Roboto Condensed", sans-serif;
  color: #9c9c9c;
  text-align: center;
  margin: 0 0 25px;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_priceTable [class*=col-] {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.EasyDNNSkin_Ozone .eds_priceTable section {
  background-color: #f1f1f1;
  border: solid 1px #c9c9c9;
  z-index: 1;
  text-align: center;
  color: #7e7e7e;
  margin-right: -1px;
  position: relative;
}
.EasyDNNSkin_Ozone .eds_priceTable section h2 {
  border-bottom: solid 1px #c9c9c9;
  -webkit-box-shadow: 0 1px 0 #fff inset;
          box-shadow: 0 1px 0 #fff inset;
  margin: 0;
  padding: 12px 0;
  font-size: 32px;
  color: #7e7e7e;
  line-height: 1;
  font-weight: 300;
}
.EasyDNNSkin_Ozone .eds_priceTable section .price {
  font-size: 68px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  line-height: 68px;
  padding: 25px 0;
  display: block;
}
.EasyDNNSkin_Ozone .eds_priceTable section .price small {
  font-size: 40px;
  font-weight: normal;
  font-weight: 300;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_priceTable section ul {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_priceTable section ul li {
  list-style-type: none;
  margin: 0;
  padding: 20px 10px;
  border-top: solid 1px #c9c9c9;
  -webkit-box-shadow: 0 1px 0 #fff inset;
          box-shadow: 0 1px 0 #fff inset;
  text-shadow: 1px 1px 0 #fff;
}
.EasyDNNSkin_Ozone .eds_priceTable section .btn {
  display: block;
  position: relative;
  padding: 20px 0;
  font-size: 24px;
  color: #7e7e7e;
  -webkit-box-shadow: 0 -60px 60px -60px rgba(0, 0, 0, 0.4) inset, 0 1px 0 #fff inset;
          box-shadow: 0 -60px 60px -60px rgba(0, 0, 0, 0.4) inset, 0 1px 0 #fff inset;
  text-shadow: 1px 1px 0 #fff;
  border: none;
  border-radius: 0;
  border-top: solid 1px #c9c9c9;
  -webkit-transition: color 0.4s linear;
  transition: color 0.4s linear;
}
.EasyDNNSkin_Ozone .eds_priceTable section .btn:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section {
  background-color: #ffffff;
  z-index: 2;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
  margin-top: -10px;
}
.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section ul li:last-child {
  padding-bottom: 40px;
}
.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section .btn {
  color: #fff;
  background-color: #cf1603;
  background-image: none;
  text-shadow: 1px 1px 0 #000;
  -webkit-box-shadow: 0 -60px 60px -60px rgba(0, 0, 0, 0.6) inset;
          box-shadow: 0 -60px 60px -60px rgba(0, 0, 0, 0.6) inset;
  -webkit-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}
.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section .btn:hover {
  background-color: #E71700;
}
.EasyDNNSkin_Ozone .eds_flipBox {
  -webkit-perspective: 1000;
  perspective: 1000;
  overflow: visible;
  position: relative;
  display: table;
}
.EasyDNNSkin_Ozone .eds_flipBox .eds_front,
.EasyDNNSkin_Ozone .eds_flipBox .eds_behind {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 750ms ease 0s;
  transition: all 750ms ease 0s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.EasyDNNSkin_Ozone .eds_flipBox .eds_front {
  position: relative;
  z-index: 0;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox .eds_behind {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  z-index: -2;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox:hover .eds_front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox:hover .eds_behind {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  z-index: 3;
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipRight .eds_front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipRight .eds_behind {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipRight:hover .eds_front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipRight:hover .eds_behind {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipTop .eds_front {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipTop .eds_behind {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipTop:hover .eds_front {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipTop:hover .eds_behind {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipBottom .eds_front {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipBottom .eds_behind {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipBottom:hover .eds_front {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.EasyDNNSkin_Ozone .eds_flipBox.eds_flipBottom:hover .eds_behind {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.EasyDNNSkin_Ozone .eds_popOverStatic {
  display: inline-block;
  position: relative;
  margin: 20px;
  z-index: 10;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li {
  list-style-type: none;
  padding: 0 0 0 10px;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li a {
  font-size: 14px;
  padding: 5px 0;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  padding: 5px 10px;
  color: #272621;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li a:hover {
  color: #c81704;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li.eds_disabled a {
  color: #bbb;
  cursor: default;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li.eds_active > a {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_sideMenu ul li {
  border-top: solid 1px #F2F2F2;
}
.EasyDNNSkin_Ozone .eds_sideMenu > ul > li:first-child {
  border-top: none;
}
.EasyDNNSkin_Ozone .eds_sideMenu > ul > li > a {
  font-size: 16px;
}
.EasyDNNSkin_Ozone .eds_footerList li {
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}
.EasyDNNSkin_Ozone .eds_footerList li a {
  color: #a6a6a6;
}
.EasyDNNSkin_Ozone .eds_footerList li a:hover {
  color: #4e4e4e;
}
.EasyDNNSkin_Ozone .eds_footerList li span {
  color: #000;
  font-size: 15px;
}
.EasyDNNSkin_Ozone .eds_faButtons > a {
  font-size: 40px;
  color: #000;
  opacity: 0.2;
  text-decoration: none;
  margin: 4px;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.EasyDNNSkin_Ozone .eds_faButtons > a:hover {
  opacity: 0.6;
  color: #000;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a:hover {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_hidden {
  opacity: 0;
}
.EasyDNNSkin_Ozone .eds_visible {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_box {
  padding: 10px 20px;
  position: relative;
  margin-bottom: 15px;
}
.EasyDNNSkin_Ozone .eds_box p {
  padding: 0;
  margin: 0;
}
.EasyDNNSkin_Ozone .eds_box p + p {
  margin-top: 10px;
}
.EasyDNNSkin_Ozone .eds_box h1, .EasyDNNSkin_Ozone .eds_box h2, .EasyDNNSkin_Ozone .eds_box h3, .EasyDNNSkin_Ozone .eds_box h4, .EasyDNNSkin_Ozone .eds_box h5, .EasyDNNSkin_Ozone .eds_box h6 {
  margin-top: 0;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_1 {
  background-color: #c5c5c5;
  border-radius: 6px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_2 {
  border: solid 1px #ddd;
  border-radius: 10px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_3 {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #ddd;
  border-radius: 6px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_4 {
  width: 90%;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5 {
  background-color: #c81704;
  padding-bottom: 40px;
  -webkit-box-shadow: 0 -30px 0 rgba(0, 0, 0, 0.3) inset;
          box-shadow: 0 -30px 0 rgba(0, 0, 0, 0.3) inset;
  color: #fff;
  border-radius: 3px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h1, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h1, .EasyDNNSkin_Ozone .eds_box.eds_box_5 h2, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h2, .EasyDNNSkin_Ozone .eds_box.eds_box_5 h3, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h3, .EasyDNNSkin_Ozone .eds_box.eds_box_5 h4, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h4, .EasyDNNSkin_Ozone .eds_box.eds_box_5 h5, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h5, .EasyDNNSkin_Ozone .eds_box.eds_box_5 h6, .EasyDNNSkin_Ozone .eds_box.eds_box_5 .h6 {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5.eds_withFontIcon {
  padding-top: 10px;
  margin-top: 0;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5.eds_withFontIcon .fontIcon {
  position: relative;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5.eds_withSmallFontIcon {
  padding-top: 10px;
  margin-top: 0;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5.eds_withSmallFontIcon .fontIcon {
  position: relative;
  top: 0;
  left: auto;
  margin-left: 0;
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone .eds_box.eds_box_5.eds_withBottomButton {
  padding-bottom: 40px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withFontIcon {
  position: relative;
  padding-top: 55px;
  margin-top: 65px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withFontIcon .fontIcon {
  position: absolute;
  left: 50%;
  margin-left: -45px;
  top: -45px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withSmallFontIcon {
  position: relative;
  padding-top: 35px;
  margin-top: 45px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withSmallFontIcon .fontIcon {
  position: absolute;
  left: 50%;
  margin-left: -23px;
  top: -23px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withBottomButton {
  padding-bottom: 20px;
}
.EasyDNNSkin_Ozone .eds_box.eds_withBottomButton .eds_bottomButton {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_infoBox {
  position: relative;
}
.EasyDNNSkin_Ozone .eds_infoBox > div p {
  margin: 0;
}
.EasyDNNSkin_Ozone .eds_infoBox > div p + p {
  margin-top: 8px;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_socialIcons {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 6px 15px;
  display: inline-block;
  -webkit-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1), 0 0 8px rgba(0, 0, 0, 0.4) inset;
          box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1), 0 0 8px rgba(0, 0, 0, 0.4) inset;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_socialIcons > a {
  margin: 0 2px;
  font-size: 30px;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > h3,
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > p {
  margin: 0;
  padding: 10px 20px 0;
  line-height: 1;
  -webkit-transition: color 200ms linear;
  transition: color 200ms linear;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > p {
  font-size: 11px;
  color: #7b7b7b;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > img {
  border: solid 1px #e5e5e5;
  border-radius: 2px;
  width: 100%;
  padding: 5px;
  background-color: #fff;
  -webkit-transition: border 200ms linear;
  transition: border 200ms linear;
}
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_2 {
  position: absolute;
  z-index: 1;
  height: 0;
  overflow: hidden;
  top: 0;
  background-color: #d91600;
  -webkit-box-shadow: 0 -50px 50px -25px #9e1808 inset;
          box-shadow: 0 -50px 50px -25px #9e1808 inset;
  -webkit-transition: top 200ms linear;
  transition: top 200ms linear;
}
.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 {
  background-color: #d91600;
}
.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > h3 {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > p {
  color: #4b0a03;
}
.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > img {
  border-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_2 {
  top: 100%;
  height: auto;
  color: #fff;
  padding: 10px 20px;
}
.EasyDNNSkin_Ozone .eds_infoBox2 {
  border-radius: 3px;
  overflow: hidden;
}
.EasyDNNSkin_Ozone .eds_infoBox2 .eds_info_1 {
  position: relative;
  overflow: hidden;
}
.EasyDNNSkin_Ozone .eds_infoBox2 .eds_info_1 p {
  padding: 10px;
}
.EasyDNNSkin_Ozone .eds_infoBox2 .eds_info_1 .eds_info_2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  -webkit-transition: top 200ms linear;
  transition: top 200ms linear;
}
.EasyDNNSkin_Ozone .eds_infoBox2 .boxTitle {
  margin: 0;
  padding: 10px;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: normal;
  display: block;
  line-height: 1;
}
.EasyDNNSkin_Ozone .eds_infoBox2:hover .eds_info_1 .eds_info_2 {
  top: 0;
  visibility: visible;
}
.EasyDNNSkin_Ozone .eds_infoBox2:hover .boxTitle {
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  background-color: #ec1601;
  -webkit-box-shadow: 0 -40px 20px -20px #9f1808 inset;
          box-shadow: 0 -40px 20px -20px #9f1808 inset;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: 100%;
  display: inline-block;
  border: solid 1px #c7c7c7;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 100%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail .eds_thCaption {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail .eds_thCaption > .eds_thDescription {
  position: absolute;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail .eds_thCaption > a {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  font-size: 0;
  opacity: 0;
  text-indent: 200%;
  white-space: nowrap;
  z-index: 10;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 {
  background: #000;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 img {
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thDescription {
  bottom: 0;
  left: 0;
  right: 0;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle {
  -webkit-transition: color 400ms;
  transition: color 400ms;
  z-index: 0;
  padding: 30px;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle + .eds_thDescription {
  padding: 30px;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle::after {
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  content: "";
  z-index: -1;
  -webkit-transition: opacity 400ms, top 300ms;
  transition: opacity 400ms, top 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thDescription {
  opacity: 0;
  bottom: 50%;
  padding: 0 30px;
  text-align: center;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover img {
  opacity: 0.8;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover .eds_thCaption > .eds_thTitle {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover .eds_thCaption > .eds_thTitle::after {
  top: 0;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 {
  text-align: center;
  background-color: #fff;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 img {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thDescription {
  bottom: 0;
  left: 0;
  padding: 30px;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thTitle {
  -webkit-transition: color 400ms, -webkit-transform 400ms;
  transition: color 400ms, -webkit-transform 400ms;
  transition: color 400ms, transform 400ms;
  transition: color 400ms, transform 400ms, -webkit-transform 400ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thDescription {
  opacity: 0;
  right: 0;
  color: #3c4a50;
  background-color: #fff;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2:hover img {
  -webkit-transform: translate3d(0, -80px, 0);
  transform: translate3d(0, -80px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2:hover .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3::after {
  content: "";
  position: absolute;
  background-color: rgba(200, 23, 4, 0.71);
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: top 200ms, right 200ms, bottom 200ms, left 200ms;
  transition: top 200ms, right 200ms, bottom 200ms, left 200ms;
  z-index: 1;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thDescription {
  right: 30px;
  left: 30px;
  padding: 10px 0;
  z-index: 2;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle {
  top: 30px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: solid 4px #fff;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thDescription {
  bottom: 20%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3:hover::after {
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3:hover .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3:hover .eds_thCaption > .eds_thTitle::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 img {
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thDescription {
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thTitle {
  top: 10%;
  left: 10%;
  right: 10%;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thDescription {
  padding: 3%;
  border: 2px solid #fff;
  opacity: 0;
  left: 10%;
  right: 10%;
  top: 40%;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4:hover img {
  opacity: 0.35;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4:hover .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5::before {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  border: 2px solid #fff;
  z-index: 1;
  -webkit-box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5 img {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5 .eds_thCaption {
  text-align: center;
  position: absolute;
  top: 15%;
  right: 15%;
  bottom: 15%;
  left: 15%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5 .eds_thCaption > .eds_thTitle {
  margin: 20% 0 10px 0;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  position: relative;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5 .eds_thCaption > .eds_thDescription {
  padding: 1em;
  opacity: 0;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  position: relative;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5:hover img {
  opacity: 0.6;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5:hover .eds_thCaption > .eds_thTitle {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6 img {
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6 .eds_thCaption > .eds_thTitle {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 10%;
  left: 10%;
  right: 10%;
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6 .eds_thCaption > .eds_thDescription {
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  position: absolute;
  bottom: 10%;
  left: 10%;
  right: 10%;
  padding: 15px;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transform-origin: 50% -100%;
  transform-origin: 50% -100%;
  text-align: center;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6:hover img {
  opacity: 0.35;
  -webkit-transform: scale3d(2, 2, 1);
  transform: scale3d(2, 2, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6:hover .eds_thCaption > .eds_thTitle,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::before, .EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  content: "";
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::before {
  border-top: 2px dashed #fff;
  border-bottom: 2px dashed #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::after {
  border-right: 2px dashed #fff;
  border-left: 2px dashed #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7 img {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7 .eds_thCaption > .eds_thTitle {
  color: #fff;
  bottom: 50%;
  left: 13%;
  right: 13%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7 .eds_thCaption > .eds_thDescription {
  color: #fff;
  opacity: 0;
  left: 13%;
  right: 13%;
  bottom: 13%;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7:hover::before, .EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7:hover img {
  opacity: 0.35;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8 img {
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8 .eds_thCaption > .eds_thTitle {
  top: 10%;
  left: 10%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8 .eds_thCaption > .eds_thDescription {
  right: 10%;
  bottom: 10%;
  padding: 0 10px 0 0;
  max-width: 50%;
  border-right: 2px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8:hover::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8:hover img {
  opacity: 0.35;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9 img {
  max-width: none;
  width: calc(100% + 10%);
  opacity: 1;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
  transform: translate3d(-30px, 0, 0) scale(1.12);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9 .eds_thCaption > .eds_thTitle {
  right: 10%;
  bottom: 10%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9 .eds_thCaption > .eds_thDescription {
  padding: 5px 10px 5px 0;
  width: 60%;
  border-right: 1px solid #fff;
  text-align: right;
  opacity: 0;
  top: 10%;
  left: 10%;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9:hover img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10 {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10::before {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  border: 2px solid #fff;
  content: "";
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10 img {
  max-width: none;
  width: calc(100% + 10%);
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10 .eds_thCaption > .eds_thTitle {
  color: #fff;
  bottom: 50%;
  left: 13%;
  right: 13%;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10 .eds_thCaption > .eds_thDescription {
  color: #fff;
  opacity: 0;
  left: 13%;
  right: 13%;
  bottom: 13%;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10:hover::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10:hover img {
  opacity: 0.35;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10:hover .eds_thCaption > .eds_thDescription {
  opacity: 1;
}
.EasyDNNSkin_Ozone .carousel-indicators {
  left: 0;
  margin-left: 0;
  margin-top: 15px;
  padding: 0;
  position: static;
  right: 0;
  width: 100%;
  text-align: center;
}
.EasyDNNSkin_Ozone .carousel-indicators li {
  border: 1px solid #c81704;
}
.EasyDNNSkin_Ozone .carousel-indicators li.active {
  background-color: #c81704;
}
.EasyDNNSkin_Ozone .progress-bar.eds_progressAnimated {
  -webkit-transition: width 2s ease;
  transition: width 2s ease;
}
.EasyDNNSkin_Ozone .progress-bar.eds_progressAnimated.eds_nullValue {
  width: 0 !important;
}

.eds_floatingMenuStyle1 {
  position: fixed;
  left: 60px;
  z-index: 900;
  top: 30%;
}
.eds_floatingMenuStyle1 > ul {
  margin: 0;
  padding: 0;
}
.eds_floatingMenuStyle1 > ul > li {
  margin: 0 0 15px;
  padding: 0;
  list-style-type: none;
  position: relative;
  line-height: 0;
  font-size: 0;
}
.eds_floatingMenuStyle1 > ul > li::after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  width: 5px;
  position: absolute;
  top: 5px;
  left: 45px;
  bottom: 5px;
  opacity: 1;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.eds_floatingMenuStyle1 > ul > li::before {
  content: "";
  width: 45px;
  height: 45px;
  background-color: #c81704;
  display: inline-block;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
}
.eds_floatingMenuStyle1 > ul > li .eds_icon {
  display: inline-block;
  line-height: 1;
  font-size: 19px;
  color: #fff;
  text-align: center;
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  z-index: 1;
  line-height: 45px;
}
.eds_floatingMenuStyle1 > ul > li img.eds_icon {
  width: 45px;
  height: 45px;
  padding: 10px;
}
.eds_floatingMenuStyle1 > ul > li > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  display: block;
  padding: 0 15px 0 60px;
  line-height: 45px;
  color: #fff !important;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none !important;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  background: transparent url("/Portals/_default/skins/ozone/common/images/blank.png") !important;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.eds_floatingMenuStyle1 > ul > li > a::after {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 45px;
  right: 100%;
  width: 5px;
  overflow: hidden;
  content: "";
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  text-decoration: none !important;
  border-radius: 0 6px 6px 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.eds_floatingMenuStyle1 > ul > li > a::before {
  content: "";
  line-height: 0;
  font-size: 0;
  border-width: 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #c81704;
  position: absolute;
  left: 45px;
  top: 18px;
  opacity: 0;
  -webkit-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_floatingMenuStyle1 > ul > li:hover::after, .eds_floatingMenuStyle1 > ul > li.edsfnl_active::after {
  opacity: 0;
}
.eds_floatingMenuStyle1 > ul > li:hover > a, .eds_floatingMenuStyle1 > ul > li.edsfnl_active > a {
  visibility: visible;
  opacity: 1;
}
.eds_floatingMenuStyle1 > ul > li:hover > a::after, .eds_floatingMenuStyle1 > ul > li.edsfnl_active > a::after {
  width: auto;
  right: 0;
}
.eds_floatingMenuStyle1 > ul > li:hover > a::before, .eds_floatingMenuStyle1 > ul > li.edsfnl_active > a::before {
  opacity: 1;
}
.eds_floatingMenuStyle1 > span {
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #c81704;
  text-align: center;
  font-size: 0;
  line-height: 0;
  margin-bottom: 20px;
  opacity: 0.7;
  position: relative;
  border-radius: 8px;
  display: inline-block;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_floatingMenuStyle1 > span {
    margin-bottom: 7px;
  }
}
.eds_floatingMenuStyle1 > span::after, .eds_floatingMenuStyle1 > span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 45px;
  font-size: 21px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.eds_floatingMenuStyle1 > span::before {
  content: "";
}
.eds_floatingMenuStyle1 > span::after {
  content: "";
  opacity: 0;
  visibility: hidden;
}
.eds_floatingMenuStyle1.eds_floatingMenuActive > span {
  opacity: 1;
}
.eds_floatingMenuStyle1.eds_floatingMenuActive > span::before {
  opacity: 0;
  visibility: hidden;
}
.eds_floatingMenuStyle1.eds_floatingMenuActive > span::after {
  opacity: 1;
  visibility: visible;
}
.eds_floatingMenuStyle1.eds_floatingMenuActive > ul {
  display: block !important;
}

.eds_floatingMenuStyle2 {
  position: fixed;
  left: 60px;
  z-index: 900;
  top: 30%;
}
.eds_floatingMenuStyle2 > ul {
  margin: 0;
  padding: 0;
}
.eds_floatingMenuStyle2 > ul > li {
  margin: 0;
  padding: 22px 0 0;
  list-style-type: none;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.eds_floatingMenuStyle2 > ul > li::before, .eds_floatingMenuStyle2 > ul > li::after {
  position: absolute;
  content: "";
}
.eds_floatingMenuStyle2 > ul > li::before {
  width: 19px;
  height: 19px;
  border-radius: 9px;
  background-color: #c81704;
  top: 1px;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
}
.eds_floatingMenuStyle2 > ul > li::after {
  display: none;
  top: -5px;
  left: 8px;
  bottom: 0;
  width: 3px;
  background-color: #c81704;
  z-index: 1;
}
.eds_floatingMenuStyle2 > ul > li .eds_icon {
  display: inline-block;
  line-height: 34px;
  font-size: 0;
  color: #fff;
  text-align: center;
  width: 1px;
  height: 1px;
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  top: 9px;
  left: 9px;
  margin-top: 0;
  margin-left: 0;
  background-color: #c81704;
  z-index: 3;
  visibility: hidden;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.eds_floatingMenuStyle2 > ul > li img.eds_icon {
  width: 0px;
  height: 0px;
}
.eds_floatingMenuStyle2 > ul > li > a {
  white-space: nowrap;
  padding-left: 40px;
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -4px;
  color: #c81704;
  line-height: 34px;
  border-radius: 18px;
  font-size: 19px;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  z-index: 1;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
}
.eds_floatingMenuStyle2 > ul > li > a::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  top: 50%;
  bottom: 50%;
  left: 16px;
  right: 0;
  border-radius: 0 10px 10px 0;
  z-index: -1;
  position: absolute;
  width: 0;
  height: 0;
  -webkit-transition: width 100ms ease 200ms;
  transition: width 100ms ease 200ms;
}
.eds_floatingMenuStyle2 > ul > li:hover .eds_icon, .eds_floatingMenuStyle2 > ul > li.edsfnl_active .eds_icon {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  font-size: 15px;
  visibility: visible;
}
.eds_floatingMenuStyle2 > ul > li:hover img.eds_icon, .eds_floatingMenuStyle2 > ul > li.edsfnl_active img.eds_icon {
  width: 34px;
  height: 34px;
  padding: 7px;
}
.eds_floatingMenuStyle2 > ul > li:hover > a, .eds_floatingMenuStyle2 > ul > li.edsfnl_active > a {
  color: #fff;
  text-shadow: none;
}
.eds_floatingMenuStyle2 > ul > li:hover > a::after, .eds_floatingMenuStyle2 > ul > li.edsfnl_active > a::after {
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
}
.eds_floatingMenuStyle2 > ul > li + li {
  padding-top: 41px;
}
.eds_floatingMenuStyle2 > ul > li + li > a {
  top: 14px;
  bottom: -7px;
}
.eds_floatingMenuStyle2 > ul > li + li::before {
  top: auto;
  bottom: 1px;
}
.eds_floatingMenuStyle2 > ul > li + li::after {
  display: block;
}
.eds_floatingMenuStyle2 > ul > li + li .eds_icon {
  top: 31px;
}
.eds_floatingMenuStyle2 > ul > li:last-child::after {
  bottom: 9px;
}
.eds_floatingMenuStyle2 > span {
  cursor: pointer;
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #c81704;
  text-align: center;
  font-size: 0;
  line-height: 0;
  opacity: 0.7;
  left: -13px;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23);
}
.eds_floatingMenuStyle2 > span::after, .eds_floatingMenuStyle2 > span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 45px;
  font-size: 21px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.eds_floatingMenuStyle2 > span::before {
  content: "";
}
.eds_floatingMenuStyle2 > span::after {
  content: "";
  opacity: 0;
  visibility: hidden;
}
.eds_floatingMenuStyle2.eds_floatingMenuActive > span {
  opacity: 1;
}
.eds_floatingMenuStyle2.eds_floatingMenuActive > span::before {
  opacity: 0;
  visibility: hidden;
}
.eds_floatingMenuStyle2.eds_floatingMenuActive > span::after {
  opacity: 1;
  visibility: visible;
}
.eds_floatingMenuStyle2.eds_floatingMenuActive > ul {
  display: block !important;
}

.eds_circularMenu {
  position: fixed;
  bottom: 200px;
  left: 200px;
  z-index: 900;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  font-size: 0;
  line-height: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu {
    bottom: 100px;
    left: 100px;
    width: 50px;
    height: 50px;
  }
}
.eds_circularMenu > span {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 10;
  border-radius: 50px;
  background: #c81704;
  cursor: pointer;
  text-align: center;
  font-size: 0;
  line-height: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > span {
    width: 50px;
    height: 50px;
  }
}
.eds_circularMenu > span:hover {
  background-color: #FB1D04;
}
.eds_circularMenu > span::before, .eds_circularMenu > span::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  color: #fff;
  font-size: 56px;
  line-height: 100px;
  text-decoration: none !important;
  -webkit-transition: all 1000ms ease, color 300ms linear;
  transition: all 1000ms ease, color 300ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > span::before, .eds_circularMenu > span::after {
    font-size: 28px;
    line-height: 49px;
  }
}
.eds_circularMenu > span::before {
  content: "";
}
.eds_circularMenu > span::after {
  content: "";
  opacity: 0;
  visibility: hidden;
}
.eds_circularMenu > ul {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.eds_circularMenu > ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
  background-color: #FB1D04;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.23) inset;
  opacity: 0;
  -webkit-transition: background 300ms linear, opacity 400ms linear, -webkit-transform 300ms ease;
  transition: background 300ms linear, opacity 400ms linear, -webkit-transform 300ms ease;
  transition: transform 300ms ease, background 300ms linear, opacity 400ms linear;
  transition: transform 300ms ease, background 300ms linear, opacity 400ms linear, -webkit-transform 300ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > ul li {
    width: 50px;
    height: 50px;
  }
}
.eds_circularMenu > ul li:nth-child(2) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}
.eds_circularMenu > ul li:nth-child(3) {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}
.eds_circularMenu > ul li:nth-child(4) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.eds_circularMenu > ul li:nth-child(5) {
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
}
.eds_circularMenu > ul li:nth-child(6) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}
.eds_circularMenu > ul li:nth-child(7) {
  -webkit-transition-delay: 350ms;
  transition-delay: 350ms;
}
.eds_circularMenu > ul li:nth-child(8) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.eds_circularMenu > ul li > a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  position: absolute;
  z-index: 2;
  padding: 42px 5px 5px;
  text-align: center;
  word-wrap: break-word;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > ul li > a {
    padding-top: 20px;
    font-size: 12px;
  }
}
.eds_circularMenu > ul li .eds_icon {
  position: absolute;
  font-size: 21px;
  color: #fff;
  left: 0;
  right: 0;
  top: 15px;
  text-align: center;
  text-decoration: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > ul li .eds_icon {
    font-size: 15px;
    top: 5px;
  }
}
.eds_circularMenu > ul li img.eds_icon {
  max-width: 25px;
  max-height: 25px;
  margin: 0 auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu > ul li img.eds_icon {
    max-width: 20px;
    max-height: 20px;
  }
}
.eds_circularMenu.eds_floatingMenuActive > span {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  background-color: #FB1D04;
}
.eds_circularMenu.eds_floatingMenuActive > span::before {
  opacity: 0;
  visibility: hidden;
}
.eds_circularMenu.eds_floatingMenuActive > span::after {
  opacity: 1;
  visibility: visible;
  color: #fff;
}
.eds_circularMenu.eds_floatingMenuActive > span:hover::after {
  color: #c81704;
}
.eds_circularMenu.eds_floatingMenuActive > ul li {
  background-color: #c81704;
  opacity: 1;
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(1) {
  -webkit-transform: translate(0px, -150px);
  transform: translate(0px, -150px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(1) {
    -webkit-transform: translate(0px, -70px);
    transform: translate(0px, -70px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(2) {
  -webkit-transform: translate(105px, -105px);
  transform: translate(105px, -105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(2) {
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(3) {
  -webkit-transform: translate(150px, 0px);
  transform: translate(150px, 0px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(3) {
    -webkit-transform: translate(70px, 0px);
    transform: translate(70px, 0px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(4) {
  -webkit-transform: translate(105px, 105px);
  transform: translate(105px, 105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(4) {
    -webkit-transform: translate(50px, 50px);
    transform: translate(50px, 50px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(5) {
  -webkit-transform: translate(0, 150px);
  transform: translate(0, 150px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(5) {
    -webkit-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(6) {
  -webkit-transform: translate(-105px, 105px);
  transform: translate(-105px, 105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(6) {
    -webkit-transform: translate(-50, 50px);
    transform: translate(-50px, 50px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(7) {
  -webkit-transform: translate(-150px, 0px);
  transform: translate(-150px, 0px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(7) {
    -webkit-transform: translate(-70px, 0px);
    transform: translate(-70px, 0px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(8) {
  -webkit-transform: translate(-105px, -105px);
  transform: translate(-105px, -105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_circularMenu.eds_floatingMenuActive > ul li:nth-child(8) {
    -webkit-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
}
.eds_circularMenu.eds_floatingMenuActive > ul li:hover, .eds_circularMenu.eds_floatingMenuActive > ul li.edsfnl_active {
  background-color: #FB1D04;
}
.eds_circularMenu.eds_floatingMenuActive > ul li:hover > a, .eds_circularMenu.eds_floatingMenuActive > ul li.edsfnl_active > a {
  color: #fff;
  text-decoration: none;
}

.eds_floatingMenu.eds_static {
  position: relative;
  bottom: auto;
  left: auto;
  top: auto;
  right: auto;
}

.eds_fontIcon {
  display: inline-block;
  border-radius: 50%;
  background-color: #f2f2f2;
  border: 1px solid #cfcfcf;
  -webkit-box-shadow: 0 0 0 4px #ffffff inset;
          box-shadow: 0 0 0 4px #ffffff inset;
  min-width: 30px;
  min-height: 30px;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.eds_fontIcon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.eds_fontIcon > i {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  color: #c81704;
}
.eds_fontIcon.eds_square {
  border-radius: 0;
}

.EasyDNNSkin_Ozone .eds_threeColumnSocialLeft {
  padding-top: 35px;
  float: left;
  width: 130px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_threeColumnSocialLeft {
    width: auto;
    float: none;
    margin-bottom: 30px;
  }
}
.EasyDNNSkin_Ozone .eds_threeColumnSocialLeft.DNNEmptyPane + .eds_threeColumnSocialCenter {
  margin-left: 0;
}
.EasyDNNSkin_Ozone .eds_threeColumnSocialRight {
  padding-top: 35px;
  float: right;
  width: 286px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_threeColumnSocialRight {
    width: auto;
    float: none;
    margin-bottom: 30px;
  }
}
.EasyDNNSkin_Ozone .eds_threeColumnSocialRight.DNNEmptyPane + .eds_threeColumnSocialLeft + .eds_threeColumnSocialCenter {
  margin-right: 0;
}
.EasyDNNSkin_Ozone .eds_threeColumnSocialRight.DNNEmptyPane + .eds_threeColumnSocialLeft.DNNEmptyPane + .eds_threeColumnSocialCenter {
  margin: 0;
}
.EasyDNNSkin_Ozone .eds_threeColumnSocialCenter {
  padding-top: 35px;
  margin: 0 324px 0 150px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_threeColumnSocialCenter {
    width: auto;
    float: none;
    margin: 0;
  }
}
.EasyDNNSkin_Ozone .dnnForm.dnnGroupDirectory {
  padding: 0;
}
.EasyDNNSkin_Ozone .dgdAvatar {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 0;
  height: auto;
  margin-right: 2%;
  overflow: hidden;
  padding: 4px;
  width: 12%;
  max-width: 135px;
  margin-top: 5px;
}
.EasyDNNSkin_Ozone .dgdAvatar img {
  border-radius: 0;
}
.EasyDNNSkin_Ozone .dgdAvatar a {
  max-height: 82px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfoWrap {
  border-bottom: dashed 1px #999;
  padding-bottom: 25px;
  margin: 0;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfoWrap + .dgdGroupQuickInfoWrap {
  margin-top: 25px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfoWrap:last-child {
  border-bottom: none;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo {
  width: 86%;
  font-size: 12px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo h3 a {
  color: #272621;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo h3 a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul {
  border: solid 1px #c81704;
  border-radius: 4px;
  display: inline-block;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li {
  padding: 0;
  background: none transparent !important;
  float: left;
  line-height: 28px;
  height: 28px;
  margin: 0 10px;
  height: auto;
  color: #777373;
  font-size: 15px;
  font-weight: normal;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.posts-icn::before {
  content: "";
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.member-icn::before {
  content: "";
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.photo-icn::before {
  content: "";
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.docs-icn::before {
  content: "";
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.join-group-icn {
  margin: 0 -85px 0 10px;
  width: 70px;
}
.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li.join-group-icn .dnnTertiaryAction {
  padding: 0;
  line-height: 28px;
  margin: 0;
}
.EasyDNNSkin_Ozone .console {
  width: 100%;
  height: auto;
  border: solid 1px #c81704;
  border-radius: 6px;
}
.EasyDNNSkin_Ozone .console .console-none div {
  border-bottom: dashed 1px #bfbfbf;
  text-align: center;
  float: none;
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .console .console-none div {
    width: 20%;
    min-width: 20%;
    float: left;
    border: none;
  }
}
.EasyDNNSkin_Ozone .console .console-none div h3 {
  margin: 8px 0;
  border: solid 1px transparent;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: normal;
  color: #272621;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
}
.EasyDNNSkin_Ozone .console .console-none.active h3 {
  border-color: #c81704;
}
.EasyDNNSkin_Ozone .console.profile {
  background: none transparent;
}
.EasyDNNSkin_Ozone .console-mouseon {
  background: none transparent !important;
}
.EasyDNNSkin_Ozone .console-mouseon h3 {
  color: #c81704 !important;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch {
  margin: 30px 0;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch .mdSearchBar {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  float: left;
  width: 70%;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch .mdSearchBar {
    width: 100%;
    margin-bottom: 15px;
  }
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch input[type=text] {
  border: none;
  background: none transparent;
  color: #272621;
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  padding: 10px 0 0 10px;
  width: 55%;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch #refreshResults {
  padding: 15px;
  background-position: center center;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction {
  float: right;
  border-radius: 0 4px 4px 0;
  margin: -1px;
  padding: 13px 30px 13px 60px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction {
    padding: 13px 10px 13px 25px;
  }
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction,
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction:hover {
  background-repeat: no-repeat;
  background-position: 22px center;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction,
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction:hover {
    background-position: 5px center;
  }
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction {
  background-image: url("/Portals/_default/skins/ozone/assets/images/socialPagesElements/search/searchButton/icon/predefined/searchIcon_header2.png");
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction:hover {
  background-image: url("/Portals/_default/skins/ozone/assets/images/socialPagesElements/search/searchButton/icon/predefined/searchIcon.png");
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .selectDrop {
  float: right;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .selectDrop #mdAdvancedSearch {
  padding: 14px 15px;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .selectDrop #mdAdvancedSearch::after {
  background: none transparent;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 0;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
  padding: 15px !important;
  top: 43px;
  right: 10px;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type=text],
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type=text]:hover,
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type=text]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: solid 1px #c81704;
  line-height: 1.3;
  padding: 5px;
  border-radius: 0;
  font-size: 12px;
  margin-bottom: 5px;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm label {
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm .dnnPrimaryAction {
  padding: 5px 5px 5px 25px;
  background-position: 5px center;
  border-radius: 4px;
}
.EasyDNNSkin_Ozone #mdMemberList {
  margin: 0 -8px 20px;
}
.EasyDNNSkin_Ozone #mdMemberList > li {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 150px;
  list-style: none;
  margin: 0 8px 15px;
  padding: 15px 15px 56px;
  position: relative;
  width: 415px;
  z-index: 1;
  opacity: 0.9;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.EasyDNNSkin_Ozone #mdMemberList > li:hover {
  opacity: 1;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdMemberImg {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 0;
  margin: 0 13px 13px 0;
  padding: 4px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions {
  background: none #c81704;
  border: none;
  bottom: 0;
  clear: both;
  height: 56px;
  left: 0;
  position: absolute;
  text-shadow: none;
  width: 100%;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li {
  color: #fff;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  color: #4b0a03;
  line-height: 28px;
  text-shadow: none;
  line-height: 56px;
  padding: 0 5px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li a,
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li p {
  color: #4b0a03;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  min-height: 13px;
  min-width: 35px;
  padding: 7px;
  line-height: 1;
  border-radius: 9px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li a {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li a:hover {
  background-color: #b51e0e;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.24) inset, 1px 1px 1px #d42e1d;
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.24) inset, 1px 1px 1px #d42e1d;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFriendRequest a:before, .EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFollow a:before, .EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-right: 3px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFriendRequest a::before {
  content: "";
  font-size: 16px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFollow a::before {
  content: "";
  font-size: 13px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage {
  border: none;
  position: static;
  float: right;
  padding-top: 3px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a {
  background-image: none;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a span {
  display: inline;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a::before {
  content: "";
  font-size: 19px;
}
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage:hover {
  background: none transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdDisplayName a {
  color: #272621;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: normal;
}
.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdDisplayName a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdEmail a {
  color: #272621;
  font-size: 12px;
}
.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdEmail a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 0;
  color: #272621;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
}
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent .mdHoverActions {
  border-top: solid 1px #c81704;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  line-height: 29px;
}
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent .mdHoverActions > li {
  border-right: solid 1px #c81704;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  margin-right: -1px;
  padding: 0 7px;
}
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent span.tooltipArrow {
  background: none #fff;
  border-style: solid;
  border-width: 1px;
  border-left-color: transparent !important;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: #c81704;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -9px;
  height: 17px;
  width: 15px;
}
.EasyDNNSkin_Ozone .mdLoadMore .dnnTertiaryAction {
  width: 85%;
  margin: 10px auto;
  display: block;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #journalContent,
.EasyDNNSkin_Ozone div#journalItems div.journalrow div.journalitem ul.jcmt li.cmteditarea {
  line-height: 1.1;
  background: none #f3f3f3;
}
.EasyDNNSkin_Ozone .journalTools {
  border: solid 1px #c81704;
  border-radius: 6px;
}
.EasyDNNSkin_Ozone .journalTools + div {
  margin-top: 20px;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor {
  padding: 15px;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #journalClose {
  top: 0;
  right: 0;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #journalContent {
  margin-bottom: 8px;
  padding: 8px;
  width: 100%;
  font-size: 15px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar {
  bottom: 17px;
  height: 16px;
  margin: 6px 16px 4px;
  min-width: 80px;
  position: absolute;
  right: 6px;
  width: 78px;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar > span {
  background: none transparent !important;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar > span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  cursor: default;
  color: #adadad;
  font-size: 16px;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar > span:hover::before {
  color: #c81704;
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar #tbar-perm::before {
  content: "";
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar #tbar-attach::before {
  content: "";
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar #tbar-photo::before {
  content: "";
}
.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar .securityMenu .handle {
  right: 9px;
  top: -26px;
}
.EasyDNNSkin_Ozone .journalTools #btnShare {
  padding: 8px 20px;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea {
  padding: 15px;
  top: auto;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-top: solid 1px #c81704;
  background: none transparent;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .fileUploadArea {
  padding: 0;
  background: none transparent;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea div {
  padding: 0;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_onlineFileShare {
  border: none;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_localFileShare .dnnSecondaryAction,
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_onlineFileShare .dnnSecondaryAction {
  text-transform: none !important;
  font-size: 13px;
  padding: 5px 10px;
  margin: 10px 0 0;
}
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_localFileShare > span,
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_onlineFileShare > span {
  color: #969696;
  font-weight: normal;
  padding: 0;
  margin: 0;
}
.EasyDNNSkin_Ozone #journalEditor,
.EasyDNNSkin_Ozone .jcmt .cmteditarea {
  background: none transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  text-shadow: none;
  width: 100%;
}
.EasyDNNSkin_Ozone #journalEditor #journalClose,
.EasyDNNSkin_Ozone #linkClose,
.EasyDNNSkin_Ozone .miniclose,
.EasyDNNSkin_Ozone .minidel {
  background: none transparent;
  height: 18px !important;
  width: 18px !important;
  text-align: center;
}
.EasyDNNSkin_Ozone #journalEditor #journalClose::before,
.EasyDNNSkin_Ozone #linkClose::before,
.EasyDNNSkin_Ozone .miniclose::before,
.EasyDNNSkin_Ozone .minidel::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c81704;
}
.EasyDNNSkin_Ozone .journalTools #btnShare.disabled,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a.disabled {
  background: none #eee !important;
  color: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #E8E8E8 !important;
  text-shadow: none !important;
}
.EasyDNNSkin_Ozone #journalItems {
  font-size: 12px;
}
.EasyDNNSkin_Ozone #journalItems .journalitem > p {
  color: #a6a3a3;
}
.EasyDNNSkin_Ozone #journalItems .journalitem > p .authorname {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
}
.EasyDNNSkin_Ozone #journalItems .journalitem > p .authorname a {
  color: #272621;
}
.EasyDNNSkin_Ozone #journalItems .journalitem > p .authorname a:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone #journalItems .journalitem .jphoto img {
  padding: 4px;
  border: solid 1px #c81704;
}
.EasyDNNSkin_Ozone #journalItems .journalitem .journalfooter {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 300;
}
.EasyDNNSkin_Ozone #journalItems .journalrow {
  border: none;
  margin-bottom: 40px;
  padding: 0;
  overflow: hidden;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt {
  margin-top: 15px;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea {
  border: solid 1px #c81704;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea textarea,
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea textarea:hover,
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea textarea:focus {
  width: 100%;
  max-width: none;
  background: none transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmtbtn a {
  padding: 5px 15px;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt li abbr {
  color: #a6a3a3;
  font-family: "Roboto Condensed", sans-serif;
}
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt li p {
  padding: 0;
  font-size: 11px;
}
.EasyDNNSkin_Ozone #journalItems .author img,
.EasyDNNSkin_Ozone .journalrow div.journalitem ul.jcmt li img {
  width: 84px;
  max-width: 100%;
  padding: 0;
  border-radius: 42px;
}
.EasyDNNSkin_Ozone #journalItems .journalitem,
.EasyDNNSkin_Ozone .journalrow div.journalitem ul.jcmt li p {
  margin-left: 104px;
  overflow: hidden;
}
.EasyDNNSkin_Ozone .ModViewProfileC {
  overflow: hidden;
}
.EasyDNNSkin_Ozone .UserProfileControls ul {
  margin: 0;
  padding: 0;
  text-align: right;
}
.EasyDNNSkin_Ozone .UserProfileControls ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
  display: inline-block;
}
.EasyDNNSkin_Ozone .UserProfileControls ul li .dnnSecondaryAction {
  font-size: 12px;
  margin: 0;
  padding: 6px 15px;
}
.EasyDNNSkin_Ozone #UserProfileImg {
  float: left;
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone #UserProfileImg img {
  padding: 4px;
  border: solid 1px #c81704;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav {
  border-bottom: 1px solid #c81704;
  height: 31px;
  border-radius: 0;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li {
  background: none transparent;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li a {
  background: none transparent;
  border: solid 1px transparent;
  border-radius: 0;
  border-bottom: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 14px;
  height: 30px;
  padding: 0 13px;
  line-height: 30px;
  margin: 0 0 -1px !important;
  color: #272621;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li a:hover {
  color: #c81704;
  background: none transparent;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li.ui-tabs-active a {
  border-color: #c81704;
  padding: 0 13px;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li.ui-state-focus {
  background: none transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .dnnAdminTabNav li.ui-state-focus a {
  background: none transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #c81704;
}
.EasyDNNSkin_Ozone #smMainContent .dnnAdminTabNav li a span {
  background: none #e71601;
  border-radius: 11px;
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  min-width: 20px;
  padding: 4px;
  text-align: center;
  text-shadow: none;
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: -4px 10px 0 0;
  vertical-align: middle;
}
.EasyDNNSkin_Ozone .messageControls {
  border: none;
  padding: 0;
}
.EasyDNNSkin_Ozone .messageControls .messageSelect .dnnButtonGroup li {
  margin-right: 5px;
}
.EasyDNNSkin_Ozone .messageControls .messageFolders .dnnButtonGroup li {
  margin-left: 5px;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup {
  background: none transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li {
  border: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: none transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a {
  border: solid 1px #c81704;
  border-radius: 5px;
  background: none transparent;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 8px 15px;
  line-height: 1;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a span {
  color: #272621;
  margin: 0 !important;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a:hover {
  background: none #c81704;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a:hover span {
  color: #fff;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > a::after {
  background: none transparent !important;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 20px;
  color: #c81704;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > a:hover::after {
  color: #fff;
}
.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > ul {
  background: none #fff;
  border: 1px solid #c81704;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.7);
  top: 35px;
}
.EasyDNNSkin_Ozone #smMainContent .dnnFormExpandContent {
  text-align: right;
}
.EasyDNNSkin_Ozone #smMainContent .dnnFormExpandContent .ComposeMessage {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1;
}
.EasyDNNSkin_Ozone #smMainContent .dnnFormExpandContent .ComposeMessage::before {
  content: "";
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
}
.EasyDNNSkin_Ozone .smListings > ul {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .smListings > ul > li {
  background: none #f3f3f3;
  border-bottom: none;
  border-top: dashed 1px #a8a4a4;
}
.EasyDNNSkin_Ozone .smListings > ul > li.active {
  background: none transparent;
}
.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg {
  background: none transparent;
  border: solid 1px #c81704;
  width: 64px;
  height: 64px;
  overflow: hidden;
  margin: 5px;
}
.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg span {
  width: 62px;
  height: 62px;
  border: solid 4px #fff;
}
.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg span em {
  width: 54px;
  height: 54px;
}
.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg span em img {
  width: 100%;
  height: 100%;
}
.EasyDNNSkin_Ozone .smListings dl .subject {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: bold;
}
.EasyDNNSkin_Ozone .smListings dl .meta {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  display: inline-block;
}
.EasyDNNSkin_Ozone .smListings dl .meta em {
  font-style: normal;
}
.EasyDNNSkin_Ozone .smListings dl .message {
  color: #757575;
  font-size: 12px;
}
.EasyDNNSkin_Ozone .smListings .smTimeStamped {
  color: #757575;
  font-size: 12px;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle,
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle:hover {
  background: none #e7ebf1;
  border-radius: 7px;
  -webkit-box-shadow: 0px 1px 0px 0px #fff inset;
          box-shadow: 0px 1px 0px 0px #fff inset;
  position: relative;
  line-height: 1;
  width: 26px;
  height: 26px;
  border: solid 1px #dbdee6;
  text-indent: 0;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle > span,
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle:hover > span {
  display: none;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::before, .EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::after {
  position: absolute;
  width: 16px;
  height: 16px;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::before {
  content: "";
  border: solid 1px #cbd0da;
  -webkit-box-shadow: 0px 3px 4px 0px #b5b9c1;
          box-shadow: 0px 3px 4px 0px #b5b9c1;
  background-color: #eaedf3;
  border-radius: 4px;
  top: 4px;
  left: 4px;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a01203;
  text-shadow: 1px 1px 1px #fff;
  font-size: 12px;
  top: 6px;
  left: 2px;
}
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle:hover::before {
  background-color: #fff;
}
.EasyDNNSkin_Ozone .smListings .messages > li.active .ActiveToggle::after {
  display: none;
}
.EasyDNNSkin_Ozone textarea#replyMessage,
.EasyDNNSkin_Ozone textarea#replyMessage:hover,
.EasyDNNSkin_Ozone textarea#replyMessage:focus {
  border: 1px solid #C81704;
  border-radius: 5px;
  padding: 10px;
  background: none #F3F3F3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .DnnModule-Messaging-Notifications .smListings .ListCol-2 {
  width: 12%;
}
.EasyDNNSkin_Ozone .DnnModule-Messaging-Details .smListings .ListCol-2 {
  width: 60%;
}
.EasyDNNSkin_Ozone .DnnModule-Messaging-Details .smListings .ListCol-1 {
  width: 12%;
}

.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header {
  min-height: 65px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo {
  max-height: 72px;
  padding: 13px 32px 0 32px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo {
    max-height: 60px;
    padding: 5px 5px 0 5px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo > a > img {
  max-height: 48px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 {
  padding: 5px 32px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo.eds_logoHeader1 {
    max-height: 60px;
    padding: 5px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language,
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton,
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
  top: -101px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language,
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton,
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin {
    height: 0;
    margin: 0;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .responsAbilityMenu {
  margin-top: -24px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer .responsAbilityMenu {
    margin-top: 15px;
    padding-top: 0;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header {
    min-height: 46px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_logo {
  max-height: 48px;
  margin: 10px 0;
  padding: 0;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane.DNNEmptyPane + .eds_logo.eds_logoHeader2 {
  max-height: 101px;
  margin: 7px 0;
  padding: 0;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane.DNNEmptyPane + .eds_logo.eds_logoHeader2 > a > img {
  max-height: 80px;
  max-width: 300px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane.DNNEmptyPane + .eds_logo.eds_logoHeader2 > a > img {
    max-height: 48px;
    max-width: 200px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
  max-height: 124px;
  margin: 20px 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
    max-height: 75px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
    margin: 10px 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 {
    max-height: 68px;
    margin: 5px 0;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 > a > img {
  max-height: 110px;
  max-width: 300px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 > a > img {
    max-height: 48px;
    max-width: 200px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_bannerPane + .eds_logo.eds_logoHeader2 > a > img {
    max-height: 48px;
    max-width: 200px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight.eds_bannerPane {
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLanguageBg {
  min-height: 0;
  height: 0;
  overflow: hidden;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLanguageBg > div {
  margin-top: -100px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight {
  margin-top: 19px;
  margin-bottom: 15px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerRight {
    margin-bottom: 0;
    margin-top: 0;
    height: 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search {
    margin-top: -500px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_menuBg {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .responsAbilityMenu.eds_menuType2 {
  margin-top: 0;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 {
  min-height: 90px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_fixedHeader {
  -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_headerBackground {
  border-bottom-width: 2px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_headerBackground .eds_header .eds_logo {
  margin: 8px 0;
  padding: 5px 5px 0 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_headerBackground .eds_header .eds_logo {
    max-height: 60px;
    padding: 5px 5px 0 0;
    margin: 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_headerBackground .eds_header .eds_logo {
    padding: 5px 5px 0 0;
    margin: 0;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3.eds_headerContainer4 .eds_headerBackground .eds_header .eds_logo > a > img {
  max-height: 44px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg {
  padding-bottom: 1px;
  margin-bottom: 0;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::before {
  height: 1px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::after {
  height: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header {
    min-height: 0;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header {
    padding-bottom: 10px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language,
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_userLogin {
  top: 0;
  height: auto;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
  margin-top: 5px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
    margin-left: 27px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_language {
    margin-top: -500px;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerRight {
    margin-top: -500px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_searchButton {
  top: 0;
  height: 30px;
  margin-left: 19px;
  margin-right: 1px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo {
  padding: 0;
  margin: 5px 10px 5px 0;
  max-height: 50px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_logo > a > img {
  max-height: 50px;
}
.eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner {
  margin-top: 5px;
  font-size: 14px !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner {
    height: 0;
    margin: 0;
    overflow: hidden;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 {
  margin-top: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 {
    margin-top: 10px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
  line-height: 65px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li > span .edsmm_itemContainer {
    line-height: 45px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 {
  margin-top: 0;
}
.eds_pageScrolled .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .responsAbilityMenu {
  margin-top: 6px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader .eds_header .responsAbilityMenu {
    margin-top: 13px;
  }
}
.eds_pageScrolled .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeader7TrigerContainer {
  margin-top: 17px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_pageScrolled .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeader7TrigerContainer {
    margin-top: 0;
  }
}

.EasyDNNSkin_Ozone .eds_Tabs {
  border: solid 1px #d02110;
  border-radius: 5px;
}
.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
  border-bottom: solid 1px #c81704;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav {
    border-bottom: none;
  }
}
.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  border-color: #c81704;
  border-width: 0 1px 0 0;
  border-style: solid;
  padding: 7px 20px;
  margin: 0;
  line-height: 1;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li:hover {
  color: #c81704;
}
.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li.edsTabulator_active {
  border-bottom: solid 1px #fff;
  margin-bottom: -1px;
  color: #c81704;
  border-radius: 0 5px 0 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li.edsTabulator_active {
    margin-bottom: 0;
  }
}
.EasyDNNSkin_Ozone .eds_Tabs .edsTabulator_tabsWrapper {
  overflow: hidden;
  position: relative;
}
.EasyDNNSkin_Ozone .eds_Tabs .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 0;
  z-index: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.EasyDNNSkin_Ozone .eds_Tabs .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  width: 100%;
}
.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  -webkit-box-shadow: 0 -25px 13px -13px #cb1400 inset;
          box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  border-bottom: none;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section {
  margin-bottom: 5px;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #c81704;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  letter-spacing: normal;
  color: #c81704;
  -webkit-transition: color 300ms linear;
  transition: color 300ms linear;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title:hover {
  color: #9f9f9f;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -1px;
  width: 23px;
  height: 23px;
  text-align: center;
  vertical-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: solid 1px #c81704;
  font-size: 20px;
  line-height: 1;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 3px;
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section.edsAccordion_active .edsAccordion_title::after {
  content: "";
  background-color: #c81704;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section {
  border-radius: 4px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 4px 10px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title::after {
  right: -1px;
  top: -1px;
  height: auto;
  border-radius: 0 4px 4px 0;
  width: 33px;
  line-height: 30px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  border: solid 1px #c81704;
  border-radius: 0 0 4px 4px;
  border-top: none;
  padding: 15px 10px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  margin-bottom: -2px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title {
  padding-left: 37px;
  font-size: 16px;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title::after {
  left: 0;
  right: auto;
  content: "";
  background: #c81704 url("/Portals/_default/skins/ozone/assets/images/elements/accordion3/accordionTitleIcon/predefined/accPlusMinus.png") no-repeat center 4px;
  border: none;
}
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section.edsAccordion_active .edsAccordion_title::after {
  background-position: center -28px;
}

ul, ol {
  margin-left: 15px;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
}
ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: upper-roman;
}
ol ol ol {
  list-style-type: lower-roman;
}

.list-unstyled {
  margin-left: 0;
}

.list-group {
  margin-left: 0;
}

.eds_primaryColor {
  color: #c81704 !important;
}

.eds_lightText {
  color: #eee !important;
}

.eds_whiteColor {
  color: #fff !important;
}

.eds_darkColor {
  color: #313131 !important;
}

.EasyDNNSkin_Ozone h1, .EasyDNNSkin_Ozone .h1, .EasyDNNSkin_Ozone h2, .EasyDNNSkin_Ozone .h2, .EasyDNNSkin_Ozone h3, .EasyDNNSkin_Ozone .h3, .EasyDNNSkin_Ozone h4, .EasyDNNSkin_Ozone .h4, .EasyDNNSkin_Ozone h5, .EasyDNNSkin_Ozone .h5, .EasyDNNSkin_Ozone h6, .EasyDNNSkin_Ozone .h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
  color: #c81704;
}
.EasyDNNSkin_Ozone .page-header {
  border-bottom: solid 1px #c81704;
}
.EasyDNNSkin_Ozone .page-header h1, .EasyDNNSkin_Ozone .page-header h2, .EasyDNNSkin_Ozone .page-header h3, .EasyDNNSkin_Ozone .page-header h4, .EasyDNNSkin_Ozone .page-header h5, .EasyDNNSkin_Ozone .page-header h6 {
  color: #7c7c7c;
}
.EasyDNNSkin_Ozone .eds_customFont {
  font-family: "Roboto Condensed", sans-serif;
}
.EasyDNNSkin_Ozone .eds_largerText {
  font-size: 120%;
  line-height: 1.2;
}
.EasyDNNSkin_Ozone .eds_largeText {
  font-size: 200%;
  line-height: 1.1;
}
.EasyDNNSkin_Ozone .eds_mediumLargeText {
  font-size: 300%;
  line-height: 1.1;
}
.EasyDNNSkin_Ozone .eds_extraLargeText {
  font-size: 450%;
  line-height: 1.1;
}
.EasyDNNSkin_Ozone .text-muted {
  color: #797676;
}
.EasyDNNSkin_Ozone ul.eds_listCircle > li::before {
  color: #c81704;
  content: "";
  font: 900 9px/1.3 "Font Awesome 5 Free";
  left: 0;
  top: 3px;
}
.EasyDNNSkin_Ozone ul.eds_listStar > li::before {
  color: #c81704;
  content: "";
  font: 900 9px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 3px;
}
.EasyDNNSkin_Ozone ul.eds_listCheckSquare > li::before {
  color: #c81704;
  content: "";
  font: 900 13px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 1px;
}
.EasyDNNSkin_Ozone ul.eds_listChevronCircle > li::before {
  color: #c81704;
  content: "";
  font: 900 13px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
}
.EasyDNNSkin_Ozone ul.eds_listCircleO > li::before {
  color: #c81704;
  content: "";
  font: 10px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 3px;
}
.EasyDNNSkin_Ozone ul.eds_listCheck > li::before {
  color: #c81704;
  content: "";
  font: 900 13px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 1px;
}
.EasyDNNSkin_Ozone ul.eds_listCheckSquareO > li::before {
  color: #c81704;
  content: "";
  font: 13px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
}
.EasyDNNSkin_Ozone ul.eds_listPaperclip > li::before {
  color: #c81704;
  content: "";
  font: 900 13px/1.3 "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
}
.EasyDNNSkin_Ozone ul.eds_listCircle, .EasyDNNSkin_Ozone ul.eds_listStar, .EasyDNNSkin_Ozone ul.eds_listCheckSquare, .EasyDNNSkin_Ozone ul.eds_listChevronCircle, .EasyDNNSkin_Ozone ul.eds_listCircleO, .EasyDNNSkin_Ozone ul.eds_listCheck, .EasyDNNSkin_Ozone ul.eds_listCheckSquareO, .EasyDNNSkin_Ozone ul.eds_listPaperclip {
  margin: 0 0 30px;
}
.EasyDNNSkin_Ozone ul.eds_listCircle > li, .EasyDNNSkin_Ozone ul.eds_listStar > li, .EasyDNNSkin_Ozone ul.eds_listCheckSquare > li, .EasyDNNSkin_Ozone ul.eds_listChevronCircle > li, .EasyDNNSkin_Ozone ul.eds_listCircleO > li, .EasyDNNSkin_Ozone ul.eds_listCheck > li, .EasyDNNSkin_Ozone ul.eds_listCheckSquareO > li, .EasyDNNSkin_Ozone ul.eds_listPaperclip > li {
  margin: 0 0 10px;
  position: relative;
  padding: 0 0 0 15px;
  list-style-type: none;
}
.EasyDNNSkin_Ozone ul.eds_listCircle > li::before, .EasyDNNSkin_Ozone ul.eds_listStar > li::before, .EasyDNNSkin_Ozone ul.eds_listCheckSquare > li::before, .EasyDNNSkin_Ozone ul.eds_listChevronCircle > li::before, .EasyDNNSkin_Ozone ul.eds_listCircleO > li::before, .EasyDNNSkin_Ozone ul.eds_listCheck > li::before, .EasyDNNSkin_Ozone ul.eds_listCheckSquareO > li::before, .EasyDNNSkin_Ozone ul.eds_listPaperclip > li::before {
  position: absolute;
}
.EasyDNNSkin_Ozone hr {
  display: block;
  margin: 15px 0 20px;
  border: none;
  border-bottom: 1px dashed #bfbfbf;
  position: relative;
  overflow: visible;
}
.EasyDNNSkin_Ozone hr::after, .EasyDNNSkin_Ozone hr::before {
  content: "";
  display: block;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle2 {
  border-bottom-style: solid;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle2::after {
  width: 16%;
  border-bottom: solid 3px #c81704;
  position: absolute;
  top: -1px;
  left: 50%;
  margin-left: -8%;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle3 {
  border-bottom-style: solid;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle3::after {
  width: 16%;
  border-bottom: solid 3px #c81704;
  position: absolute;
  top: -1px;
  left: 50%;
  margin-left: -8%;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle3::before {
  position: absolute;
  width: 0;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent #c81704;
  top: -11px;
  left: 50%;
  margin-left: -3px;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle4 {
  border-bottom-style: solid;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle4::after {
  width: 16%;
  border-bottom: solid 3px #c81704;
  position: absolute;
  top: -1px;
  left: 50%;
  margin-left: -8%;
  z-index: 1;
}
.EasyDNNSkin_Ozone hr.eds_hrStyle4::before {
  width: 8%;
  border-bottom: solid 7px #c81704;
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -4%;
  z-index: 2;
}
.EasyDNNSkin_Ozone .eds_info {
  padding: 8px;
  margin: 10px 0;
  display: block;
  line-height: 30px;
  font-size: 13px;
}
.EasyDNNSkin_Ozone .eds_info::before {
  float: left;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 30px;
  text-align: center;
  margin-right: 12px;
}
.EasyDNNSkin_Ozone .eds_info.bg-primary::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_info.bg-success::before {
  content: "";
  color: #02A700;
}
.EasyDNNSkin_Ozone .eds_info.bg-info::before {
  content: "";
  color: #006BDD;
}
.EasyDNNSkin_Ozone .eds_info.bg-warning::before {
  content: "";
  color: #BCBB00;
}
.EasyDNNSkin_Ozone .eds_info.bg-danger::before {
  content: "";
  color: #C82020;
}
.EasyDNNSkin_Ozone .Normal pre {
  margin-top: 15px;
  margin-bottom: 15px;
}
.EasyDNNSkin_Ozone address {
  font-size: 15px;
}
.EasyDNNSkin_Ozone address strong {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 16px;
}
.EasyDNNSkin_Ozone .eds_form > div {
  margin-bottom: 10px;
}
.EasyDNNSkin_Ozone .eds_form label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: normal;
  width: 100px;
  vertical-align: top;
}
.EasyDNNSkin_Ozone .eds_form .btn {
  margin-left: 100px !important;
}
.EasyDNNSkin_Ozone .eds_mainTitle {
  text-align: center;
  padding: 20px 0;
}
.EasyDNNSkin_Ozone .eds_mainTitle h2 {
  font-size: 66px;
  line-height: 1;
  margin: 0 0 40px;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_mainTitle p {
  font-size: 33px;
  line-height: 1;
  color: #a4a4a4;
  font-family: "Roboto Condensed", sans-serif;
}
.EasyDNNSkin_Ozone .eds_mainTitle p + p {
  margin-top: 20px;
}

.EasyDNNSkin_Ozone .dnnPrimaryAction,
.EasyDNNSkin_Ozone .dnnSecondaryAction,
.EasyDNNSkin_Ozone .dnnTertiaryAction {
  padding: 9px 25px;
  line-height: 1;
  border-radius: 6px;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
}
.EasyDNNSkin_Ozone .dnnSecondaryAction,
.EasyDNNSkin_Ozone #journalOptionArea .journal_localFileShare .dnnSecondaryAction {
  border: solid 1px #ddd;
  background: none #fff;
  color: #c81704;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: none;
  font-weight: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 0.8;
}
.EasyDNNSkin_Ozone .dnnSecondaryAction:hover,
.EasyDNNSkin_Ozone #journalOptionArea .journal_localFileShare .dnnSecondaryAction:hover {
  color: #272621;
  border: solid 1px #ae2b1d;
  background: none #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .dnnTertiaryAction {
  border: none;
  background: none #6e6868;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 20px 10px -10px #a59b9b inset;
          box-shadow: 0 20px 10px -10px #a59b9b inset;
  color: #fff;
  line-height: 1.1;
  font-family: "PT Sans", sans-serif;
  -webkit-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}
.EasyDNNSkin_Ozone .dnnTertiaryAction:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none #988f8f;
}
.EasyDNNSkin_Ozone .dnnPrimaryAction,
.EasyDNNSkin_Ozone .journalTools #btnShare,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a {
  border: 1px solid #c81704;
  color: #c81704;
  margin: 0;
  text-shadow: none;
  background: none #fff;
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 1;
  font-weight: normal;
  font-size: 13px;
}
.EasyDNNSkin_Ozone .dnnPrimaryAction:hover,
.EasyDNNSkin_Ozone .journalTools #btnShare:hover,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a:hover {
  color: #fff !important;
  text-shadow: none;
  background: none #c81704;
  border-color: #c81704;
}
.EasyDNNSkin_Ozone .btn-toolbar + .btn-toolbar {
  margin-top: 10px;
}
.EasyDNNSkin_Ozone .eds_btn {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.EasyDNNSkin_Ozone .eds_btn:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnLarge {
  font-size: 20px;
  padding: 12px 20px;
  border-width: 2px;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnSuccess {
  background-color: #5dba5f;
  border-color: #438e41;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnSuccess:hover {
  background-color: #438e41;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnInfo {
  background-color: #bdbdbd;
  border-color: #909090;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnInfo:hover {
  background-color: #909090;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnWarning {
  background-color: #f9ab3c;
  border-color: #e78a04;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnWarning:hover {
  background-color: #e78a04;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnDanger {
  background-color: #d94e49;
  border-color: #9d241e;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnDanger:hover {
  background-color: #9d241e;
}
.EasyDNNSkin_Ozone .eds_btn.eds_btnSuccess, .EasyDNNSkin_Ozone .eds_btn.eds_btnInfo, .EasyDNNSkin_Ozone .eds_btn.eds_btnWarning, .EasyDNNSkin_Ozone .eds_btn.eds_btnDanger {
  color: #fff;
}
.EasyDNNSkin_Ozone .eds_scrollToButton {
  display: inline-block;
  text-align: center;
  border: solid 2px #fff;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 15%;
  width: 110px;
  height: 110px;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_scrollToButton {
    width: 55px;
    height: 53px;
    border-width: 1px;
  }
}
.EasyDNNSkin_Ozone .eds_scrollToButton:hover {
  background-color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_scrollToButton:hover::before {
  text-decoration: none;
}
.EasyDNNSkin_Ozone .eds_scrollToButton > span {
  display: none;
}
.EasyDNNSkin_Ozone .eds_scrollToButton::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 32px;
  line-height: 102px;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_scrollToButton::before {
    font-size: 21px;
    line-height: 52px;
  }
}
.EasyDNNSkin_Ozone .eds_scrollToButton.eds_small {
  width: 75px;
  height: 75px;
}
.EasyDNNSkin_Ozone .eds_scrollToButton.eds_small::before {
  line-height: 71px;
  font-size: 22px;
}
.EasyDNNSkin_Ozone .eds_scrollToButton.eds_scrollDown::before {
  content: "";
}
.EasyDNNSkin_Ozone .eds_scrollToButton.eds_scrollUp::before {
  content: "";
}

/* Animate.css - http://daneden.me/animate
 * * Licensed under the MIT license.
 * * Copyright (c) 2013 Daniel Eden,
 * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.bounceOnHover:hover {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

.flashOnHover:hover {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.pulseOnHover:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.shakeOnHover:hover {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

.swingOnHover:hover {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

.tadaOnHover:hover {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

.wobbleOnHover:hover {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.bounceInOnHover:hover {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

.bounceInDownOnHover:hover {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

.bounceInLeftOnHover:hover {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

.bounceInRightOnHover:hover {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

.bounceInUpOnHover:hover {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

.bounceOutOnHover:hover {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

.bounceOutDownOnHover:hover {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

.bounceOutLeftOnHover:hover {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

.bounceOutRightOnHover:hover {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

.bounceOutUpOnHover:hover {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeInOnHover:hover {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeInDownOnHover:hover {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

.fadeInDownBigOnHover:hover {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.fadeInLeftOnHover:hover {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

.fadeInLeftBigOnHover:hover {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fadeInRightOnHover:hover {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

.fadeInRightBigOnHover:hover {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUpOnHover:hover {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

.fadeInUpBigOnHover:hover {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.fadeOutOnHover:hover {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

.fadeOutDownOnHover:hover {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

.fadeOutDownBigOnHover:hover {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

.fadeOutLeftOnHover:hover {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

.fadeOutLeftBigOnHover:hover {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

.fadeOutRightOnHover:hover {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

.fadeOutRightBigOnHover:hover {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.fadeOutUpOnHover:hover {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

.fadeOutUpBigOnHover:hover {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

.flipOnHover:hover {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

.flipInXOnHover:hover {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.flipInYOnHover:hover {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

.flipOutXOnHover:hover {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

.flipOutYOnHover:hover {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.lightSpeedInOnHover:hover {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.lightSpeedOutOnHover:hover {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

.rotateInOnHover:hover {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

.rotateInDownLeftOnHover:hover {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

.rotateInDownRightOnHover:hover {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

.rotateInUpLeftOnHover:hover {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

.rotateInUpRightOnHover:hover {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

.rotateOutOnHover:hover {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

.rotateOutDownLeftOnHover:hover {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

.rotateOutDownRightOnHover:hover {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

.rotateOutUpLeftOnHover:hover {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

.rotateOutUpRightOnHover:hover {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInDownOnHover:hover {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

.slideInLeftOnHover:hover {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.slideInRightOnHover:hover {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

.slideOutLeftOnHover:hover {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

.slideOutRightOnHover:hover {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.slideOutUpOnHover:hover {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

.hingeOnHover:hover {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

.rollInOnHover:hover {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

.rollOutOnHover:hover {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

.EasyDNNSkin_Ozone .eds_animationDemo p {
  background-color: #ddd;
  border-radius: 6px;
  border: solid 1px #ccc;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}
.EasyDNNSkin_Ozone .eds_animationDemo.eds_animationOnViewDemo p {
  padding: 50px 0;
}
.EasyDNNSkin_Ozone .eds_demoCode {
  padding: 10px 0;
}
.EasyDNNSkin_Ozone .eds_demoCode .eds_openButton::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 5px;
}
.EasyDNNSkin_Ozone .eds_marginBottom {
  margin-bottom: 7px;
}
.EasyDNNSkin_Ozone .eds_glyphicons {
  margin: 0;
  padding: 0;
}
.EasyDNNSkin_Ozone .eds_glyphicons li {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 10px 0;
  margin: 0;
  list-style-type: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_Ozone .eds_glyphicons li {
    width: 47%;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_Ozone .eds_glyphicons li {
    width: auto;
    display: block;
  }
}

.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #eee;
  border-left-width: 1px;
  border-left-color: #eeeeee;
  border-left-width: 0.25rem;
  border-radius: 0.25rem;
}
.bd-callout.bd-callout-warning {
  border-left-color: #f0ad4e;
}
.bd-callout.bd-callout-danger {
  border-left-color: #d9534f;
}

.eds_demoCode {
  margin: 15px 0;
}
.eds_demoCode pre {
  margin: 0;
}
.eds_demoCode pre + pre {
  margin-top: 10px;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.eds_example [class^=border] {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  margin: 0.25rem;
  background-color: #f5f5f5;
  border: 1px solid;
}
.eds_example::after {
  display: block;
  clear: both;
  content: "";
}
.eds_example .close {
  float: none;
}
.eds_example .bd-highlight {
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.15);
}
.eds_example .eds_btn {
  margin: 10px;
}
.eds_example .progress + .progress {
  margin-top: 10px;
}
.eds_example.example-row-flex-cols .row {
  min-height: 10rem;
  background-color: rgba(255, 0, 0, 0.1);
}
.eds_example.example-row-flex-cols .row + .row {
  margin-top: 1rem;
}
.eds_example .fixed-top,
.eds_example .sticky-top,
.eds_example .fixed-bottom {
  position: static;
}

.eds_gridExample .eds_example .row > .col,
.eds_gridExample .eds_example .row > [class^=col-] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.2);
}

.eds_buttonDemo .eds_btn {
  margin: 0.5rem;
}

.bd-example > .alert + .alert, .bd-example > .nav + .nav,
.bd-example > .navbar + .navbar,
.bd-example > .progress + .btn,
.bd-example > .progress + .progress {
  margin-top: 1rem;
}

.cheatsheet-set article.icon {
  border-bottom: dotted 1px #eee;
}
.cheatsheet-set article.icon > div,
.cheatsheet-set article.icon > dl,
.cheatsheet-set article.icon > dl dt,
.cheatsheet-set article.icon > dl dd {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}
.cheatsheet-set article.icon > div span {
  font-size: 20px;
}
.cheatsheet-set article.icon > dl dt,
.cheatsheet-set article.icon > dl dd {
  font-size: 14px;
  font-family: Arial;
}
.cheatsheet-set article.icon > dl dd:last-child {
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 13px;
  background-color: #F5F5F5;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.personalBarContainer ~ .EasyDNNSkin_Ozone .eds_sideHeader, .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeader, .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_headerActive .eds_sideHeader {
  left: 80px;
}
@media handheld, only screen and (max-width: 641px), only screen and (max-device-width: 641px) {
  .personalBarContainer ~ .EasyDNNSkin_Ozone .eds_sideHeader, .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeader, .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_headerActive .eds_sideHeader {
    left: 0;
  }
}
.personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger {
  left: 110px;
}
@media handheld, only screen and (max-width: 641px), only screen and (max-device-width: 641px) {
  .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger {
    left: 30px;
  }
}
.personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger {
  left: 410px;
}
@media handheld, only screen and (max-width: 641px), only screen and (max-device-width: 641px) {
  .personalBarContainer ~ .EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerActive .eds_sideHeaderTriger {
    left: 330px;
  }
}

.dnnEditState .EasyDNNSkin_Ozone .eds_headerContainer .eds_fixedHeader {
  position: static;
}

.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail .eds_thCaption > a {
  height: auto;
  position: relative;
  width: auto;
  font-size: 1rem;
  line-height: 1.3;
  opacity: 1;
  text-indent: 0;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style1 img {
  opacity: 0.8;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle {
  color: #c81704;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thTitle::after {
  top: 0;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style1 .eds_thCaption > .eds_thDescription {
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style2 img {
  -webkit-transform: translate3d(0, -80px, 0);
  transform: translate3d(0, -80px, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style3::after {
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style4 img {
  opacity: 0.35;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thTitle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style5::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style5 img {
  opacity: 0.6;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style5 .eds_thCaption > .eds_thTitle {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style5 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style6 img {
  opacity: 0.35;
  -webkit-transform: scale3d(2, 2, 1);
  transform: scale3d(2, 2, 1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style6 .eds_thCaption > .eds_thTitle,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style6 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style7::before, .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style7::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style7 img {
  opacity: 0.35;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style7 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style8::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(-10%, 110%, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style8 img {
  opacity: 0.35;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style8 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style9 img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style9 .eds_thCaption > .eds_thDescription {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style10::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style10 img {
  opacity: 0.35;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_animatedTumbnail.eds_style10 .eds_thCaption > .eds_thDescription {
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox1,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox2 {
  position: static;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox1 .eds_flipBox,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox2 .eds_flipBox {
  height: auto !important;
  position: static;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox {
  height: auto !important;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox .eds_front,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_flipBox .eds_behind {
  overflow: visible;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
  z-index: auto;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > span,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > span {
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > span::before,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > span::before {
  opacity: 0;
  visibility: hidden;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > span::after,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > span::after {
  opacity: 1;
  visibility: visible;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > ul,
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > ul {
  display: block !important;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > ul > li::after {
  opacity: 0;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > ul > li > a {
  visibility: visible;
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > ul > li > a::after {
  width: auto;
  right: 0;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle1 > ul > li > a::before {
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > ul > li .eds_icon {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  font-size: 15px;
  visibility: visible;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > ul > li img.eds_icon {
  width: 34px;
  height: 34px;
  padding: 7px;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > ul > li > a {
  color: #fff;
  text-shadow: none;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenuStyle2 > ul > li > a::after {
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > span {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > span::before {
  opacity: 0;
  visibility: hidden;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > span::after {
  opacity: 1;
  visibility: visible;
  color: #fff;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > span:hover::after {
  color: #c81704;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li {
  background-color: #c81704;
  opacity: 1;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li > a {
  color: #fff;
  text-decoration: none;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li .eds_icon {
  z-index: 3;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(1) {
  -webkit-transform: translate(0px, -150px);
  transform: translate(0px, -150px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(1) {
    -webkit-transform: translate(0px, -70px);
    transform: translate(0px, -70px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(2) {
  -webkit-transform: translate(105px, -105px);
  transform: translate(105px, -105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(2) {
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(3) {
  -webkit-transform: translate(150px, 0px);
  transform: translate(150px, 0px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(3) {
    -webkit-transform: translate(70px, 0px);
    transform: translate(70px, 0px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(4) {
  -webkit-transform: translate(105px, 105px);
  transform: translate(105px, 105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(4) {
    -webkit-transform: translate(50px, 50px);
    transform: translate(50px, 50px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(5) {
  -webkit-transform: translate(0, 150px);
  transform: translate(0, 150px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(5) {
    -webkit-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(6) {
  -webkit-transform: translate(-105px, 105px);
  transform: translate(-105px, 105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(6) {
    -webkit-transform: translate(-50, 50px);
    transform: translate(-50px, 50px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(7) {
  -webkit-transform: translate(-150px, 0px);
  transform: translate(-150px, 0px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(7) {
    -webkit-transform: translate(-70px, 0px);
    transform: translate(-70px, 0px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(8) {
  -webkit-transform: translate(-105px, -105px);
  transform: translate(-105px, -105px);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_circularMenu > ul li:nth-child(8) {
    -webkit-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenu {
  position: relative;
  bottom: auto;
  left: auto;
  top: auto;
  right: auto;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_floatingMenu.eds_circularMenu {
  top: 150px;
  left: 150px;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox .eds_info_1 {
  background-color: #d91600;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox .eds_info_1 > h3 {
  color: #fff;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox .eds_info_1 > p {
  color: #4b0a03;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox .eds_info_1 > img {
  border-color: #c81704;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox .eds_info_2 {
  top: 100%;
  height: auto;
  color: #fff;
  padding: 10px 20px;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox2 .eds_info_1 .eds_info_2 {
  visibility: visible;
  position: static;
}
.edsBB__wrapper.edsBB__interfaceLoaded .note-editor .eds_infoBox2 .boxTitle {
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  background-color: #ec1601;
  -webkit-box-shadow: 0 -40px 20px -20px #9f1808 inset;
          box-shadow: 0 -40px 20px -20px #9f1808 inset;
}

/* Version 15 */
@import url(https://fonts.google.com/specimen/Source+Sans+Pro);
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNY8HIJmAci.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNY8HMJmAci.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNY8H0JmA.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04WohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04WogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04WouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4mohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4mogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4mouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs0wH8RnA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs1wH8RnA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs7wH8.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5GohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5GogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5GouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5mohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5mogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5mouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO452ohvTobdw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO452ogvTobdw.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO452ouvTo.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b_s0wH8RnA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b_s1wH8RnA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b_s7wH8.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-os6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-os6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-os51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-ks6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-ks6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-ks51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_A8s52Hs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_Ass52Hs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_DMs5.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8s6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8s6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8s51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0s6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0s6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0s51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-ws6FospT4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-ws6VospT4.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-ws51os.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwH8.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Vos.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4los.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs5.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41os.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Fos.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Vos.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5los.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451os.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s5.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPDg.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc5Q.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpAQ.woff2") format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHk.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs_.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41oq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451oq.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s_.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPCA.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4w.woff") format('woff');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4w.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBw.woff") format('woff');
}


@import url("https://fonts.google.com/specimen/Source+Sans+Pro");

/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5Xw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5Xw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5Xw.woff2") format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5Xo.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5Xo.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5Xo.woff") format('woff');
}


/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0-ExdGM.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0aExdGM.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yExdGM.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0KExQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OqtLQ0Z.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OCtLQ0Z.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0O6tLQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yExQ.woff2") format('woff2');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OCtLQ.woff2") format('woff2');
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yEww.woff") format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OCtKw.woff") format('woff');
}



.EasyDNNSkin_Ozone
{
	background-color: #f2f2f2;
}

.EasyDNNSkin_Ozone h1,
.EasyDNNSkin_Ozone .h1,
.EasyDNNSkin_Ozone h2,
.EasyDNNSkin_Ozone .h2,
.EasyDNNSkin_Ozone h3,
.EasyDNNSkin_Ozone .h3,
.EasyDNNSkin_Ozone h4,
.EasyDNNSkin_Ozone .h4,
.EasyDNNSkin_Ozone h5,
.EasyDNNSkin_Ozone .h5,
.EasyDNNSkin_Ozone h6,
.EasyDNNSkin_Ozone .h6
{
	font-family: "League Spartan";
	color: #2a2a2a;
	line-height: 1.9rem;
	font-weight: 500;
}

.EasyDNNSkin_Ozone h1,
.EasyDNNSkin_Ozone .h1
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 40px;
	line-height: 2rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone h2,
.EasyDNNSkin_Ozone .h2
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 34px;
	line-height: 2rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone h3,
.EasyDNNSkin_Ozone .h3
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 28px;
	line-height: 2rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone h4,
.EasyDNNSkin_Ozone .h4
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 22px;
	line-height: 2rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone h5,
.EasyDNNSkin_Ozone .h5
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 17px;
	line-height: 2rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone h6,
.EasyDNNSkin_Ozone .h6
{
	text-transform: uppercase;
	font-family: "League Spartan";
	color: #4b4b4b;
	font-size: 16px;
	line-height: 2rem;
	font-weight: bold;
}

body,
.EasyDNNSkin_Ozone .Normal
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 1.3rem;
	line-height: 1.9rem;
}

#Body
{
	background-color: #e9e9e9;
	background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_fractallines2_light.png");
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground
{
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer1 .eds_headerBackground
{
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground
{
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground
{
	background-color: #e9e5dd;
	background-image: none;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer4 .eds_headerBackground
{
	background-color: #ffffff;
	border-bottom-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLanguageBg,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer
{
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerBanner .Normal,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_headerBanner
{
	font-family: "Roboto Condensed";
	color: #595959;
	font-size: 18px;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner .Normal,
.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_headerBackground .eds_header .eds_headerBanner
{
	color: #aaaaaa;
	font-size: 16px;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo
{
	background-color: #272621;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_logo::after
{
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language .eds_languageText
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/language/icon1/predefined/language.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language:hover .eds_languageText
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language .eds_languageText
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/language/icon2/predefined/languageWhite.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language:hover .eds_languageText
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div
{
	border-width: 1px;
	border-style: solid;
	border-color: #cd1301;
	border-radius: 2px;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_language > div
{
	border-width: 1px;
	border-style: solid;
	border-color: #cd1301;
	background-color: #121212;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div > span
{
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_language > div > span.selected
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/loginLogout/icon1/predefined/login.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/loginLogout/icon1/predefined/loginWhite.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .loginGroup > a:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/register/icon1/predefined/register.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/register/icon2/predefined/registerWhite.png");
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons1/predefined/message.png");
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/userMenu/notifications/icons1/predefined/notification.png");
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userMessages a span,
.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a span
{
	background-color: #e71601;
	color: #ffffff;
	border-radius: 8px;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton
{
	background-color: #8c442a;
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/search1/searchButton/background/predefined/searchIcon.png");
	box-shadow: none;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchButton:hover
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	border-radius: 2px;
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.34);
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton
{
	background-color: #d9b91a;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .eds_searchButton2
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/search2/searchButton/predefined/searchIcon.png");
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input
{
	border-color: #ffffff;
	border-radius: 2px;
	background-color: #fdfdfd;
	font-family: "PT Sans";
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .header2search .searchInputContainer > input:focus
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search .eds_searchButton
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/search3/searchButton/predefined/searchIcon.png");
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_searchContainer .eds_searchClose:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_headerBackground .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton
{
	background-color: #d9b91a;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	border-radius: 4px;
	background-color: rgba(18, 18, 18, 0.23);
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2.eds_headerContainer3 .eds_search > div .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader7Triger
{
	border-color: #8c442a;
	border-radius: 10px;
}

.EasyDNNSkin_Ozone .eds_sideHeader7Triger .eds_headerOpen,
.EasyDNNSkin_Ozone.eds_fixedSideHeader.eds_headerOnClickOpen.eds_rightSideHeader.eds_headerActive .eds_sideHeader7Triger .eds_headerClose
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_sideHeader7Triger:hover > i
{
	color: #d9b91a !important;
}

.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground,
.EasyDNNSkin_Ozone .eds_fixedHeader.eds_headerStyle8 .eds_headerBackground .eds_Header8Pane
{
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_sideHeader8Triger,
.EasyDNNSkin_Ozone .eds_header8LanguageTriger,
.EasyDNNSkin_Ozone .eds_Header8PaneTriger,
.EasyDNNSkin_Ozone .eds_header8SearchPanelTriger,
.EasyDNNSkin_Ozone .eds_header8UserPanelTriger
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader8Triger:hover,
.EasyDNNSkin_Ozone .eds_header8LanguageTriger:hover,
.EasyDNNSkin_Ozone .eds_Header8PaneTriger:hover,
.EasyDNNSkin_Ozone .eds_header8SearchPanelTriger:hover,
.EasyDNNSkin_Ozone .eds_header8UserPanelTriger:hover
{
	color: #272621;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel
{
	background-color: #1b1b1b;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel .eds_header8searchTitleContainer
{
	background-color: #121212;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel .eds_header8searchTitleContainer .eds_header8SearchTitle
{
	color: #8c442a;
	font-size: 23px;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch
{
	border-color: #575757;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton::before
{
	color: #575757;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch .SearchButton:hover::before
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview
{
	border-color: #d9b91a;
	border-radius: 0px;
	background-color: #272727;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li
{
	border-top-color: #636261;
}

.EasyDNNSkin_Ozone .eds_header8SearchPanel #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel
{
	background-color: #121212;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li + li.userDisplayName a
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li + li.userDisplayName a:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a::before
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .loginGroup a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a::before
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userDisplayName a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userProfileImg > a > img
{
	border-color: #000000;
	box-shadow: 0px 0px 1px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a strong::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a strong::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a strong,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a strong
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a:hover strong,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a:hover strong
{
	color: #c0c0c0;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a span,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications a span
{
	background-color: #8c442a;
	border-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	color: #ffffff;
	opacity: 0.7;
}

.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userMessages a:hover span,
.EasyDNNSkin_Ozone .eds_header8UserPanel .eds_header8UserLogin .registerGroup > ul li.userNotifications:hover a span
{
	opacity: 1;
}

.EasyDNNSkin_Ozone .eds_header8Language
{
	background-color: #000000;
	box-shadow: 0px 0px 3px 0px #000000;
	border-radius: 3px;
}

.EasyDNNSkin_Ozone .eds_header8Language .language-object > span img
{
	border-color: #8c442a;
	border-radius: 50%;
}

.EasyDNNSkin_Ozone .eds_header8Language .language-object > span:hover img
{
	border-color: #8c442a;
	border-radius: 3px;
}

.EasyDNNSkin_Ozone .eds_header8Language .language-object > span.selected img
{
	border-color: #ffffff;
	border-radius: 3px;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_sideWrapper
{
	background-color: #0d0906;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_sideHeaderPane,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_sideHeaderPane .Normal
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span
{
	border-color: #ffffff;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span.selected
{
	border-color: #ffffff;
	box-shadow: 0px 0px 9px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span img
{
	opacity: 0.5;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span:hover img
{
	opacity: 1;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_language > div > span.selected img
{
	opacity: 1;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a
{
	text-decoration: underline;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li + li.userDisplayName a:hover
{
	color: #e3e2e2;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup > a::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup > a:hover::before
{
	color: #e3e2e2;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup > a
{
	text-decoration: underline;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .loginGroup > a:hover
{
	color: #e3e2e2;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userDisplayName a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg > a > img
{
	border-color: #f6c606;
	border-radius: 0px;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userProfileImg > a:hover > img
{
	border-radius: 0px;
	background-color: #e3e2e2;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a strong,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a strong
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover strong,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover strong
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a span,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a span
{
	background-color: #f6c606;
	border-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	color: #ffffff;
	opacity: 0.7;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userMessages a:hover span,
.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_userLogin .registerGroup > ul li.userNotifications a:hover span
{
	opacity: 1;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer
{
	background-color: #212121;
	border-top-color: #2d2c2c;
	border-bottom-color: #2d2c2c;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input
{
	font-family: "Source Sans Pro";
	color: #ffffff;
	font-size: 17px;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .searchInputContainer > input:focus
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch .SearchButton:hover::before
{
	color: #f6c606;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview
{
	border-color: #f6c606;
	border-radius: 0px;
	background-color: #272727;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li
{
	font-family: "Source Sans Pro";
	color: #e3e2e2;
	border-top-color: #636261;
}

.EasyDNNSkin_Ozone .eds_sideHeader .eds_header .eds_searchContainer #dnn_dnnSearch_ClassicSearch ul.searchSkinObjectPreview > li:hover
{
	color: rgba(227, 226, 226, 0.67);
}

.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger
{
	border-color: #636261;
	border-radius: 0px;
	background-color: #0d0907;
}

.EasyDNNSkin_Ozone.eds_fixedSideHeader .eds_sideHeaderTriger:hover
{
	border-radius: 8px;
}

.EasyDNNSkin_Ozone .eds_sideHeader7Close
{
	border-color: #d9b91a;
	border-radius: 10px;
}

.EasyDNNSkin_Ozone .eds_sideHeader7Close:hover::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideHeader8Close
{
	border-color: #d9b91a;
	border-radius: 10px;
}

.EasyDNNSkin_Ozone .eds_sideHeader8Close:hover::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_pageDetails
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/pagedetails/background/predefined/coffe.jpg");
	background-position: 50% 89%;
}

.EasyDNNSkin_Ozone .eds_pageDetails::after
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_pattern_pixel_slash3_dark.png");
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/header/pagedetails/background4/predefined/road2.jpg");
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e9e9e;
}

.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb,
.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadcrumbSeparator
{
	background-color: rgba(0, 0, 0, 0.27);
}

.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb
{
	font-family: "Roboto Condensed";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadCrumb:hover
{
	text-decoration: none;
	color: #e49908;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb
{
	font-family: "PT Sans";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb:hover
{
	text-decoration: none;
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_breadCrumbs .eds_breadcrumbSeparator
{
	color: #e49908;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadcrumbSeparator
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageTitle > span
{
	background-color: rgba(91, 69, 48, 0.74);
	border-top-width: 0px;
	border-top-style: solid;
	border-top-color: transparent;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: transparent;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #ffffff;
	border-radius: 0px;
	font-size: 30px;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_pageTitle > span::after
{
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails2 .eds_titleBreadcrumbsContainer .eds_pageTitle > span
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_pageDetails .eds_pageDescription > span
{
	background-color: rgba(0, 0, 0, 0.31);
	border-top-width: 0px;
	border-top-style: solid;
	border-top-color: transparent;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: transparent;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #ffffff;
	border-radius: 0px;
	font-size: 22px;
}

.EasyDNNSkin_Ozone .eds_currentDate
{
	border-width: 1px;
	border-style: solid;
	border-color: #e49908;
	border-radius: 2px;
	background-color: #8c442a;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer
{
	background-color: rgba(91, 69, 48, 0.7);
	border-radius: 4px;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_pageTitle > span
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb
{
	font-family: "PT Sans";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadCrumb:hover
{
	text-decoration: none;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_pageDetails.eds_pageDetails3 .eds_titleBreadcrumbsContainer .eds_breadCrumbs .eds_breadcrumbSeparator
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li .edsmm_itemContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger
{
	font-family: "Roboto Condensed";
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground .eds_header .eds_menuBg
{
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg
{
	background-color: #8c442a;
	box-shadow: none;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer2 .eds_headerBackground
{
	border-bottom-color: #e49908;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::before
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_headerContainer.eds_headerContainer5 .eds_menuType5bg::after
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li > span .edsmm_itemContainer
{
	color: #ffffff;
	line-height: 50px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li > span .edsmm_itemContainer
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li > span .edsmm_itemContainer
{
	color: #ffffff;
	line-height: 58px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after
{
	border-color: #8c442a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer::after,
.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType4 .raMenuWrapper > ol > li.edsmm_active
{
	background-color: #d9b91a;
	box-shadow: inset 0px 120px 60px -60px #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li:hover > span .edsmm_itemContainer
{
	background-color: #5d4636;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #a85e2c;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol li.edsmm_hasChild > span::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div
{
	background-color: #d9b91a;
	background-image: none;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu > div::before
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_fractallines2_light.png");
	background-repeat: no-repeat;
	opacity: 0.35;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li:hover > span .edsmm_itemContainer
{
	background-color: #8c442a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span .edsmm_itemContainer
{
	border-bottom-width: 7px;
	border-bottom-style: solid;
	border-bottom-color: #8c442a;
	font-size: 35px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span
{
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #2a2a2a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li.edsmm_hasChild > span::after
{
	color: #ffffff;
	font-size: 33px;
	line-height: 49px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span::before
{
	color: #ffc149;
	font-size: 18px;
	line-height: 25px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer:hover
{
	background-color: rgba(91, 69, 48, 0.9) !important;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li.edsmm_hasChild > span::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer
{
	font-size: 18px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger
{
	color: #272621;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2.raMenuOpened .raMenuTriggerWrapper .raMenuTrigger
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5.raMenuOpened .raMenuTriggerWrapper .raMenuTrigger
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #272621;
}

.EasyDNNSkin_Ozone .responsAbilityMenu .raMenuTriggerWrapper .raMenuTrigger:hover::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger:hover::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened.eds_menuType2 .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger:hover::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.raMenuOpened.eds_menuType5 .raMenuTriggerWrapper .raMenuTrigger::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li .edsmm_itemContainer
{
	font-family: "Source Sans Pro";
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li > span .edsmm_itemContainer
{
	font-family: "League Spartan";
	color: #d9b91a;
	font-size: 1.3rem;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li:hover > span .edsmm_itemContainer
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_itemContainer
{
	text-shadow: none !important;
	color: #000000 !important;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.raItemOpened > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li
{
	border-top-color: #2d2d2d;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_hasChild > span .edsmm_childIndicator::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_hasChild > span .edsmm_childIndicator:hover::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_active > span .edsmm_childIndicator::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div
{
	background-color: transparent;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li > span .edsmm_itemContainer
{
	font-family: "League Spartan";
	color: #d9b91a;
	font-size: 1.3rem;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li:hover > span .edsmm_itemContainer
{
	color: rgba(217, 185, 26, 0.85);
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li.edsmm_active > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li.raItemOpened > span .edsmm_itemContainer
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer ol li.edsmm_hasChild > span .edsmm_childIndicator::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer ol li.edsmm_hasChild > span .edsmm_childIndicator:hover::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li > div .edsmm_menuListsContainer > ol > li:hover > span .edsmm_itemContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li:hover > span .edsmm_itemContainer,
.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer:hover
{
	background-color: rgba(24, 125, 89, 0.41) !important;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span .edsmm_itemContainer
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #060606;
	font-size: 18px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > span
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2a2a2a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper ol li.edsmm_hasChild.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn > div > div > ol > li > div ol li > span .edsmm_itemContainer
{
	font-size: 15px;
}

.EasyDNNSkin_Ozone .responsAbilityMenu.sideMenu .raMenuWrapper > ol > li.edsmm_megaMenu.edsmm_multiColumn .edsmm_level_1 > .edsmm_menuListsContainer > ol > li > div ol li > div ol li > span .edsmm_itemContainer
{
	font-size: 13px;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground
{
	background-color: rgba(217, 185, 26, 0.11);
	background-image: none;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h1,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h1,
.EasyDNNSkin_Ozone .eds_contentBellowBackground h2,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h2,
.EasyDNNSkin_Ozone .eds_contentBellowBackground h3,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h3,
.EasyDNNSkin_Ozone .eds_contentBellowBackground h4,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h4,
.EasyDNNSkin_Ozone .eds_contentBellowBackground h5,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h5,
.EasyDNNSkin_Ozone .eds_contentBellowBackground h6,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h6
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h1,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h1
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h2,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h2
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h3,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h3
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h4,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h4
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h5,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h5
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground h6,
.EasyDNNSkin_Ozone .eds_contentBellowBackground .h6
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellowBackground .Normal,
.EasyDNNSkin_Ozone .eds_contentBellowBackground
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1
{
	background-color: rgba(19, 96, 71, 0.09);
	background-image: none;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1::before
{
	opacity: 0;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground1::after
{
	background-image: none;
	animation: eds_OzoneSkinAnimatedBackground 25s linear infinite;
	-ms-animation: eds_OzoneSkinAnimatedBackground 25s linear infinite;
	-moz-animation: eds_OzoneSkinAnimatedBackground 25s linear infinite;
	-webkit-animation: eds_OzoneSkinAnimatedBackground 25s linear infinite;
	opacity: 0.5;
}

.EasyDNNSkin_Ozone .eds_pBackground1 h1,
.EasyDNNSkin_Ozone .eds_pBackground1 .h1,
.EasyDNNSkin_Ozone .eds_pBackground1 h2,
.EasyDNNSkin_Ozone .eds_pBackground1 .h2,
.EasyDNNSkin_Ozone .eds_pBackground1 h3,
.EasyDNNSkin_Ozone .eds_pBackground1 .h3,
.EasyDNNSkin_Ozone .eds_pBackground1 h4,
.EasyDNNSkin_Ozone .eds_pBackground1 .h4,
.EasyDNNSkin_Ozone .eds_pBackground1 h5,
.EasyDNNSkin_Ozone .eds_pBackground1 .h5,
.EasyDNNSkin_Ozone .eds_pBackground1 h6,
.EasyDNNSkin_Ozone .eds_pBackground1 .h6
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_pBackground1 .Normal,
.EasyDNNSkin_Ozone .eds_pBackground1
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .eds_contentBellow5Background
{
	background-color: #f2f2f2;
}

.EasyDNNSkin_Ozone .eds_contentBellow5Background h1,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h1,
.EasyDNNSkin_Ozone .eds_contentBellow5Background h2,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h2,
.EasyDNNSkin_Ozone .eds_contentBellow5Background h3,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h3,
.EasyDNNSkin_Ozone .eds_contentBellow5Background h4,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h4,
.EasyDNNSkin_Ozone .eds_contentBellow5Background h5,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h5,
.EasyDNNSkin_Ozone .eds_contentBellow5Background h6,
.EasyDNNSkin_Ozone .eds_contentBellow5Background .h6
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_contentBellow5Background .Normal,
.EasyDNNSkin_Ozone .eds_contentBellow5Background
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2
{
	background-image: none;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2::before
{
	opacity: 0;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2::after
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/sharedBackgrounds/background_image_roundbusiness_dark.png");
	background-repeat: no-repeat;
	animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
	-ms-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
	-moz-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
	-webkit-animation: eds_OzoneSkinAnimatedBackground 0s linear infinite;
	opacity: 0.9;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h1,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h1,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h2,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h2,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h3,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h3,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h4,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h4,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h5,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h5,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 h6,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .h6
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2 .Normal,
.EasyDNNSkin_Ozone .eds_paralaxBackground.eds_pBackground2
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .eds_bottomBannerBg
{
	background-color: rgba(166, 133, 33, 0.12);
}

.EasyDNNSkin_Ozone .eds_bottomBannerBg h1,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h1,
.EasyDNNSkin_Ozone .eds_bottomBannerBg h2,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h2,
.EasyDNNSkin_Ozone .eds_bottomBannerBg h3,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h3,
.EasyDNNSkin_Ozone .eds_bottomBannerBg h4,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h4,
.EasyDNNSkin_Ozone .eds_bottomBannerBg h5,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h5,
.EasyDNNSkin_Ozone .eds_bottomBannerBg h6,
.EasyDNNSkin_Ozone .eds_bottomBannerBg .h6
{
	color: #4b4b4b;
}

.EasyDNNSkin_Ozone .eds_bottomBannerBg .Normal,
.EasyDNNSkin_Ozone .eds_bottomBannerBg
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .edsFooterBackground,
.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox
{
	background-color: #000000;
}

.EasyDNNSkin_Ozone .edsFooterBackground h1,
.EasyDNNSkin_Ozone .edsFooterBackground .h1,
.EasyDNNSkin_Ozone .edsFooterBackground h2,
.EasyDNNSkin_Ozone .edsFooterBackground .h2,
.EasyDNNSkin_Ozone .edsFooterBackground h3,
.EasyDNNSkin_Ozone .edsFooterBackground .h3,
.EasyDNNSkin_Ozone .edsFooterBackground h4,
.EasyDNNSkin_Ozone .edsFooterBackground .h4,
.EasyDNNSkin_Ozone .edsFooterBackground h5,
.EasyDNNSkin_Ozone .edsFooterBackground .h5,
.EasyDNNSkin_Ozone .edsFooterBackground h6,
.EasyDNNSkin_Ozone .edsFooterBackground .h6
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h1,
.EasyDNNSkin_Ozone .edsFooterBackground .h1
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h2,
.EasyDNNSkin_Ozone .edsFooterBackground .h2
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h3,
.EasyDNNSkin_Ozone .edsFooterBackground .h3
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h4,
.EasyDNNSkin_Ozone .edsFooterBackground .h4
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h5,
.EasyDNNSkin_Ozone .edsFooterBackground .h5
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground h6,
.EasyDNNSkin_Ozone .edsFooterBackground .h6
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground .Normal,
.EasyDNNSkin_Ozone .edsFooterBackground
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_footerList li
{
	font-family: "Source Sans Pro";
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 300;
}

.EasyDNNSkin_Ozone .eds_footerList li a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_footerList li a:hover
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_footerList li span
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .edsFooterBackground .footerBoxContainer .footerBox::after
{
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(255, 255, 255, 0.13);
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #187d59;
}

.EasyDNNSkin_Ozone .edsCopyrightBg
{
	background-color: #232222;
}

.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright
{
	font-family: "Source Sans Pro";
	color: #f2f2f2;
	font-size: 1.1rem;
	line-height: 1.9rem;
}

.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright > a
{
	text-decoration: underline;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .edsCopyrightBg .edsCopyright > a:hover
{
	color: rgba(255, 255, 255, 0.5);
}

.EasyDNNSkin_Ozone .eds_customFont
{
	font-family: "Source Sans Pro";
}

.eds_primaryColor
{
	color: #2a2a2a !important;
}

.EasyDNNSkin_Ozone .eds_mainTitle h2
{
	font-family: "League Spartan";
	font-size: 66px;
}

.EasyDNNSkin_Ozone .eds_mainTitle p
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 33px;
}

.EasyDNNSkin_Ozone ul.eds_listCircle > li::before,
.EasyDNNSkin_Ozone ul.eds_listStar > li::before,
.EasyDNNSkin_Ozone ul.eds_listCheckSquare > li::before,
.EasyDNNSkin_Ozone ul.eds_listChevronCircle > li::before,
.EasyDNNSkin_Ozone ul.eds_listCircleO > li::before,
.EasyDNNSkin_Ozone ul.eds_listCheck > li::before,
.EasyDNNSkin_Ozone ul.eds_listCheckSquareO > li::before,
.EasyDNNSkin_Ozone ul.eds_listPaperclip > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listCircle > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listStar > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listCheckSquare > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listChevronCircle > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listCircleO > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listCheck > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listCheckSquareO > li::before
{
	color: #0d0d0d;
}

.EasyDNNSkin_Ozone ul.eds_listPaperclip > li::before
{
	color: #0d0d0d;
}

a,
.EasyDNNSkin_Ozone #journalEditor #journalClose::before,
.EasyDNNSkin_Ozone #linkClose::before,
.EasyDNNSkin_Ozone .miniclose::before,
.EasyDNNSkin_Ozone .minidel::before
{
	text-decoration: underline;
	color: #2a2a2a;
}

a:hover
{
	color: rgba(42, 42, 42, 0.75);
}

.EasyDNNSkin_Ozone hr
{
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #bfbfbf;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle2
{
	border-bottom-style: solid;
	border-bottom-color: #bfbfbf;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle2::after
{
	border-bottom-color: #8c442a;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle3
{
	border-bottom-style: solid;
	border-bottom-color: #bfbfbf;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle3::after,
.EasyDNNSkin_Ozone hr.eds_hrStyle3::before
{
	border-bottom-color: #8c442a;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle4
{
	border-bottom-style: solid;
	border-bottom-color: #bfbfbf;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle4::after
{
	border-bottom-color: #8c442a;
}

.EasyDNNSkin_Ozone hr.eds_hrStyle4::before
{
	border-bottom-color: #8c442a;
}

.EasyDNNSkin_Ozone .page-header h1,
.EasyDNNSkin_Ozone .page-header h2,
.EasyDNNSkin_Ozone .page-header h3,
.EasyDNNSkin_Ozone .page-header h4,
.EasyDNNSkin_Ozone .page-header h5,
.EasyDNNSkin_Ozone .page-header h6
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .page-header h1 small,
.EasyDNNSkin_Ozone .page-header h2 small,
.EasyDNNSkin_Ozone .page-header h3 small,
.EasyDNNSkin_Ozone .page-header h4 small,
.EasyDNNSkin_Ozone .page-header h5 small,
.EasyDNNSkin_Ozone .page-header h6 small
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .page-header
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #bfa41b;
}

.EasyDNNSkin_Ozone .eds_btn
{
	border-color: #0d0d0d;
	background-color: #0d0d0d;
	font-family: "Source Sans Pro";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_btn:hover
{
	border-color: rgba(13, 13, 13, 0.84);
	background-color: rgba(13, 13, 13, 0.95);
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnSuccess
{
	border-color: #438e41;
	background-color: #5dba5f;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnSuccess:hover
{
	background-color: #438e41;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnInfo
{
	border-color: #909090;
	background-color: #bdbdbd;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnInfo:hover
{
	background-color: #909090;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnWarning
{
	border-color: #e78a04;
	background-color: #f9ab3c;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnWarning:hover
{
	background-color: #e78a04;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnDanger
{
	border-color: #9d241e;
	background-color: #d94e49;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_btn.eds_btnDanger:hover
{
	background-color: #9d241e;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .dnnPrimaryAction,
.EasyDNNSkin_Ozone .journalTools #btnShare,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #ffffff;
	font-family: "Source Sans Pro";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnPrimaryAction:hover,
.EasyDNNSkin_Ozone .journalTools #btnShare:hover,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a:hover
{
	border-color: #d9b91a;
	background-color: #d9b91a;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .dnnSecondaryAction
{
	border-width: 1px;
	border-style: solid;
	border-color: #dddddd;
	background-color: #ffffff;
	text-transform: uppercase;
	font-family: "Source Sans Pro";
	color: #d9b91a;
	font-size: 16px;
}

.EasyDNNSkin_Ozone .dnnSecondaryAction:hover
{
	border-color: #ae2b1d;
	background-color: #ffffff;
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnTertiaryAction
{
	background-color: #6e6868;
	box-shadow: inset 0px 20px 10px -10px #a59b9b;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.18);
	font-family: "Source Sans Pro";
	color: #ffffff;
	font-size: 12px;
}

.EasyDNNSkin_Ozone .dnnTertiaryAction:hover
{
	background-color: #988f8f;
}

.EasyDNNSkin_Ozone .eds_faButtons > a
{
	color: #000000;
}

.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a
{
	opacity: 1;
}

.EasyDNNSkin_Ozone .eds_faButtons.eds_invertIcons > a:hover
{
	opacity: 0.3;
}

.EasyDNNSkin_Ozone .eds_scrollToButton
{
	border-color: #ffffff;
	border-radius: 15%;
	background-color: rgba(0, 0, 0, 0.35);
}

.EasyDNNSkin_Ozone .eds_scrollToButton:hover
{
	border-radius: 15%;
	background-color: rgba(0, 0, 0, 0.5);
}

.EasyDNNSkin_Ozone .eds_scrollToButton::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_scrollToButton.eds_small
{
	border-radius: 15%;
}

.EasyDNNSkin_Ozone .eds_scrollToButton.eds_small:hover
{
	border-radius: 15%;
}

.EasyDNNSkin_Ozone .eds_scrollToButton.eds_small::before
{
	font-size: 22px;
}

.EasyDNNSkin_Ozone .carousel-indicators li
{
	border-width: 2px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .carousel-indicators li.active
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Tabs
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav
{
	border-bottom-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li.edsTabulator_active
{
	border-bottom-color: #ffffff;
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li
{
	border-right-color: #d9b91a;
	font-family: "Roboto Condensed";
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2
{
	border-width: 1px;
	border-style: solid;
	border-color: #0d0d0d;
	background-color: transparent;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .edsTabulator_tabsWrapper .edsTabulator_tab
{
	color: #2a2a2a;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .eds_tabsNav
{
	border-bottom-color: #0d0d0d;
	background-color: #155a46;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .eds_tabsNav > li
{
	border-right-color: #0d0d0d;
	font-family: "Source Sans Pro";
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .eds_tabsNav > li.edsTabulator_active
{
	background-color: #656464;
	box-shadow: inset 0px -25px 13px -13px #0d0d0d;
	text-shadow: none;
	color: #f3dc6a;
}

.EasyDNNSkin_Ozone .eds_Tabs.eds_Tabs2 .eds_tabsNav > li:hover
{
	color: rgba(255, 255, 255, 0.82);
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title
{
	font-family: "Source Sans Pro";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title,
.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title::after
{
	border-color: #0c6249;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title::after
{
	background-color: transparent;
	color: #0c6249;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section .edsAccordion_title:hover::after
{
	background-color: #0c6249;
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Accordion .edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	background-color: #0c6249;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title
{
	font-family: "Source Sans Pro";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_title::after,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content
{
	border-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section.edsAccordion_active .edsAccordion_title,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	border-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion2 .edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	background-color: #8c442a;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title
{
	text-transform: uppercase;
	font-family: "Source Sans Pro";
	color: #4b4b4b;
	font-size: 20px;
	line-height: 1rem;
	font-weight: bold;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title::after
{
	border-bottom-color: #0c6249;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title:hover,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title:hover::after
{
	border-bottom-color: #0c6249;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section.edsAccordion_active .edsAccordion_title,
.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	border-bottom-color: #0c6249;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section .edsAccordion_title::after
{
	background-color: transparent;
}

.EasyDNNSkin_Ozone .eds_Accordion.eds_Accordion3 .edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	background-position: 50% -28px;
}

.eds_fontIcon
{
	background-color: #d9b91a;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .fontIcon > h3
{
	color: #6a6a6a;
}

.EasyDNNSkin_Ozone .fontIcon .fontIconDescription
{
	color: #989898;
}

.EasyDNNSkin_Ozone .fontIcon > span
{
	color: #d9b91a;
	background-color: #f2f2f2;
	border-width: 1px;
	border-style: solid;
	border-color: #cfcfcf;
	box-shadow: inset 0px 0px 0px 4px #ffffff;
}

.EasyDNNSkin_Ozone .fontIcon:hover > span
{
	color: #d9b91a;
	background-color: #8c442a;
	border-color: transparent;
}

.EasyDNNSkin_Ozone .fontIcon.darkStyle > h3
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .fontIcon.darkStyle .fontIconDescription
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .fontIcon.darkStyle > span
{
	color: #000000;
	background-color: rgba(0, 0, 0, 0.1);
	border-width: 4px;
	border-style: solid;
	border-color: #000000;
	box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 0.1);
}

.EasyDNNSkin_Ozone .fontIcon.darkStyle:hover > span
{
	color: #ffffff;
	background-color: #000000;
}

.EasyDNNSkin_Ozone .img-thumbnail
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .img-circle-thumbnail
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone img-thumbnail
{
	border-color: #dddddd;
}

.EasyDNNSkin_Ozone img-thumbnail:hover
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_thumbnail
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_thumbnail:hover::after
{
	background-color: rgba(248, 173, 32, 0.77);
}

.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail:hover
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_thumbnail.eds_edsCircleThumbnail:hover::after
{
	background-color: rgba(91, 69, 48, 0.62);
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #000000;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover > img
{
	opacity: 0.8;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover .eds_thCaption > .eds_thTitle
{
	color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style1:hover .eds_thCaption > .eds_thTitle::after
{
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2
{
	border-color: #eea223;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thDescription
{
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style2 .eds_thCaption > .eds_thDescription
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: transparent;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3 .eds_thCaption > .eds_thTitle::after
{
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style3::after
{
	background-color: rgba(238, 162, 35, 0.76);
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style4 .eds_thCaption > .eds_thDescription
{
	border-width: 2px;
	border-style: solid;
	border-color: #ffffff;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5:hover > img
{
	opacity: 0.4;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style5::before
{
	border-width: 2px;
	border-style: solid;
	border-color: #ffffff;
	border-radius: 0px;
	box-shadow: 0px 0px 0px 100px rgba(255, 255, 255, 0.2);
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style6 .eds_thCaption > .eds_thDescription
{
	border-width: 2px;
	border-style: solid;
	border-color: #ffffff;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::before
{
	border-top-width: 2px;
	border-top-style: dashed;
	border-top-color: #ffffff;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::after
{
	border-left-width: 2px;
	border-left-style: dashed;
	border-left-color: #ffffff;
	border-right-width: 2px;
	border-right-style: dashed;
	border-right-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::before,
.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style7::after
{
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8 .eds_thCaption > .eds_thDescription
{
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style8::before
{
	background-color: rgba(255, 255, 255, 0.5);
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style9 .eds_thCaption > .eds_thDescription
{
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10
{
	border-color: #eea223;
	border-radius: 0px;
	background-color: #eea223;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10:hover > img
{
	opacity: 0.2;
}

.EasyDNNSkin_Ozone .eds_animatedTumbnail.eds_style10::before
{
	border-width: 2px;
	border-style: solid;
	border-color: #ffffff;
	border-radius: 0px;
}

.EasyDNNSkin_Ozone .eds_box.eds_box_1
{
	background-color: #d9b91a;
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_box.eds_box_2
{
	border-width: 1px;
	border-style: solid;
	border-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_box.eds_box_3
{
	background-color: rgba(255, 255, 255, 0.85);
	border-width: 1px;
	border-style: solid;
	border-color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_box.eds_box_4
{
	background-color: rgba(0, 0, 0, 0.7);
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_box.eds_box_5
{
	background-color: #8c442a;
	box-shadow: 0px 10px 25px 3px rgba(0, 0, 0, 0.51);
}

.EasyDNNSkin_Ozone .eds_box.eds_box_5,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h1,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h1,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h2,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h2,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h3,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h3,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h4,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h4,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h5,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h5,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 h6,
.EasyDNNSkin_Ozone .eds_box.eds_box_5 .h6
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > h3
{
	font-family: "Source Sans Pro";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > h3
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > p
{
	color: #d9b91a;
	font-size: 11px;
}

.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > p
{
	color: #4b0a03;
}

.EasyDNNSkin_Ozone .eds_infoBox .eds_info_1 > img
{
	border-width: 1px;
	border-style: solid;
	border-color: #e5e5e5;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1 > img
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_1,
.EasyDNNSkin_Ozone .eds_infoBox .eds_info_2
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_infoBox .eds_info_2
{
	box-shadow: inset 0px -50px 50px -25px #d79924;
}

.EasyDNNSkin_Ozone .eds_infoBox:hover .eds_info_2
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_infoBox2 .boxTitle
{
	font-family: "Source Sans Pro";
	font-size: 20px;
}

.EasyDNNSkin_Ozone .eds_infoBox2:hover .boxTitle
{
	color: #ffffff;
	background-color: #d9b91a;
	box-shadow: inset 0px -40px 20px -20px #d6961c;
}

.EasyDNNSkin_Ozone .eds_infoBox2 .eds_info_1
{
	font-family: "Source Sans Pro";
	background-color: transparent;
	background-image: none;
	background-repeat: repeat;
	background-position: 0% 0%;
}

.EasyDNNSkin_Ozone .eds_infoBox2 .eds_info_1 .eds_info_2
{
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
}

.EasyDNNSkin_Ozone .eds_priceTable section
{
	background-color: #f1f1f1;
}

.EasyDNNSkin_Ozone .eds_priceTable section,
.EasyDNNSkin_Ozone .eds_priceTable section h2,
.EasyDNNSkin_Ozone .eds_priceTable section ul li
{
	border-color: #c9c9c9;
}

.EasyDNNSkin_Ozone .eds_priceTable section h2
{
	font-family: "Source Sans Pro";
	color: #7e7e7e;
	font-size: 32px;
	box-shadow: inset 0px 1px 0px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_priceTable section .price
{
	font-family: "Source Sans Pro";
	font-size: 68px;
	font-weight: bold;
}

.EasyDNNSkin_Ozone .eds_priceTable section ul li
{
	font-family: "Source Sans Pro";
	box-shadow: inset 0px 1px 0px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_priceTable section .btn
{
	font-family: "Source Sans Pro";
	color: #7e7e7e;
	font-size: 24px;
	box-shadow: inset 0px -60px 60px -60px rgba(0, 0, 0, 0.4),inset 0px 1px 0px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_priceTable section .btn:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section
{
	background-color: #ffffff;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.4);
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section h2
{
	color: #7e7e7e;
	font-size: 32px;
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section .price
{
	font-size: 68px;
	font-weight: bold;
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section ul li
{
	box-shadow: inset 0px 1px 0px 0px #ffffff;
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section .btn
{
	color: #ffffff;
	font-size: 24px;
	background-color: #8c442a;
	box-shadow: inset 0px -60px 60px -60px rgba(0, 0, 0, 0.6);
}

.EasyDNNSkin_Ozone .eds_priceTable .eds_bestValue section .btn:hover
{
	background-color: #453424;
}

.EasyDNNSkin_Ozone .eds_sideMenu ul li a
{
	font-family: "Roboto Condensed";
	color: #272621;
}

.EasyDNNSkin_Ozone .eds_sideMenu ul li a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideMenu ul li.eds_active > a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .eds_sideMenu > ul > li > a
{
	font-family: "Source Sans Pro";
	font-size: 16px;
}

.EasyDNNSkin_Ozone .eds_sideMenu ul li ul li a
{
	font-family: "Source Sans Pro";
	font-size: 14px;
}

.EasyDNNSkin_Ozone .eds_sideMenu ul li
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #f2f2f2;
}

.eds_floatingMenuStyle1 > ul > li::before
{
	background-color: #d9b91a;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.eds_floatingMenuStyle1 > ul > li:hover::before
{
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.eds_floatingMenuStyle1 > ul > li > a::before
{
	border-left-color: #d9b91a;
}

.eds_floatingMenuStyle1 > ul > li > a
{
	font-family: "Source Sans Pro";
	color: #ffffff !important;
}

.eds_floatingMenuStyle1 > ul > li > a::after,
.eds_floatingMenuStyle1 > ul > li::after
{
	background-color: rgba(0, 0, 0, 0.5);
}

.eds_floatingMenuStyle1 > span
{
	background-color: #d9b91a;
	border-radius: 8px;
}

.eds_floatingMenuStyle1 > span::before,
.eds_floatingMenuStyle1 > span::after
{
	color: #ffffff;
}

.eds_floatingMenuStyle2 > ul > li::before
{
	background-color: #d9b91a;
}

.eds_floatingMenuStyle2 > ul > li::after
{
	background-color: #d9b91a;
}

.eds_floatingMenuStyle2 > ul > li .eds_icon
{
	background-color: #d9b91a;
	border-radius: 18px;
}

.eds_floatingMenuStyle2 > ul > li > a
{
	color: #d9b91a;
}

.eds_floatingMenuStyle2 > ul > li:hover > a,
.eds_floatingMenuStyle2 > ul > li.edsfnl_active > a
{
	color: #ffffff;
}

.eds_floatingMenuStyle2 > ul > li > a::after
{
	background-color: rgba(0, 0, 0, 0.4);
}

.eds_floatingMenuStyle2 > span
{
	background-color: #d9b91a;
	border-radius: 50%;
}

.eds_floatingMenuStyle2 > span::before,
.eds_floatingMenuStyle2 > span::after
{
	color: #ffffff;
}

.eds_circularMenu > span
{
	background-color: #d9b91a;
}

.eds_circularMenu > span:hover
{
	background-color: #f8cf7d;
}

.eds_circularMenu.eds_floatingMenuActive > span
{
	background-color: #f8cf7d;
}

.eds_circularMenu > span::before
{
	color: #ffffff;
}

.eds_circularMenu > span:hover::before
{
	color: #ffffff;
}

.eds_circularMenu.eds_floatingMenuActive > span::after
{
	color: #ffffff;
}

.eds_circularMenu.eds_floatingMenuActive > span:hover::after
{
	color: #d9b91a;
}

.eds_circularMenu.eds_floatingMenuActive > ul li
{
	background-color: #d9b91a;
}

.eds_circularMenu > ul li,
.eds_circularMenu.eds_floatingMenuActive > ul li:hover,
.eds_circularMenu.eds_floatingMenuActive > ul li.edsfnl_active
{
	background-color: #f8cf7d;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfoWrap
{
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo h3 a
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo h3 a:hover
{
	color: #8c442a;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo
{
	font-size: 12px;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .dgdGroupQuickInfo ul li
{
	color: #777373;
	font-size: 15px;
}

.EasyDNNSkin_Ozone .dgdAvatar
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .console
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .console .console-none div h3
{
	color: #8c442a;
	font-size: 16px;
}

.EasyDNNSkin_Ozone .console-mouseon h3
{
	color: #d9b91a !important;
}

.EasyDNNSkin_Ozone .console .console-none div
{
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #d9b91a;
}

.EasyDNNSkin_Ozone .console .console-none.active h3
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: transparent;
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch .mdSearchBar,
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch .mdSearchBar .dnnPrimaryAction
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .mdSearch input[type='text']
{
	font-family: "PT Sans";
	color: #272621;
	font-size: 14px;
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/socialPagesElements/search/searchButton/icon/predefined/searchButton2Grey.png");
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .dnnPrimaryAction:hover
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/socialPagesElements/search/searchButton/icon/predefined/searchIcon.png");
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm
{
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm label
{
	font-size: 12px;
}

.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type='text'],
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type='text']:hover,
.EasyDNNSkin_Ozone .dnnMemberDirectory .mdAdvancedSearchForm input[type='text']:focus
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone #mdMemberList > li
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdDisplayName a
{
	font-family: "Roboto Condensed";
	color: #272621;
}

.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdDisplayName a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdEmail a
{
	color: #272621;
}

.EasyDNNSkin_Ozone .mdMemberList .MdMemberInfo li.mdEmail a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdMemberImg
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li a,
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li p
{
	color: #4b0a03;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li a:hover
{
	background-color: #c1881e;
	box-shadow: none;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFriendRequest a::before,
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFollow a::before,
.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a::before
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFriendRequest a::before
{
	font-size: 16px;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdFollow a::before
{
	font-size: 13px;
}

.EasyDNNSkin_Ozone #mdMemberList > li .mdMemberDetails .mdHoverActions > li.mdComposeMessage a::before
{
	font-size: 19px;
}

.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent,
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent span.tooltipArrow,
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent .mdHoverActions,
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent .mdHoverActions > li
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent,
.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent span.tooltipArrow
{
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .mdMemberList .mdHoverContent
{
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
}

.EasyDNNSkin_Ozone #UserProfileImg img
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnAdminTabNav,
.EasyDNNSkin_Ozone .dnnAdminTabNav li.ui-tabs-active a,
.EasyDNNSkin_Ozone .dnnAdminTabNav li.ui-state-focus a
{
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .dnnAdminTabNav li a
{
	color: #272621;
}

.EasyDNNSkin_Ozone .dnnAdminTabNav li a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone #smMainContent .dnnAdminTabNav li a span
{
	background-color: #e71601;
	color: #ffffff;
}

.EasyDNNSkin_Ozone #smMainContent .dnnFormExpandContent .ComposeMessage
{
	text-transform: uppercase;
	font-family: "Roboto Condensed";
	font-size: 15px;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a:hover
{
	background-color: #d9b91a;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a span
{
	font-family: "Roboto Condensed";
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li > a:hover span
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > a::after
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > a:hover::after
{
	color: #ffffff;
}

.EasyDNNSkin_Ozone .messageControls .dnnButtonGroup > li.selectDrop > ul
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #ffffff;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.7);
}

.EasyDNNSkin_Ozone .smListings > ul > li
{
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #a8a4a4;
	background-color: #f3f3f3;
}

.EasyDNNSkin_Ozone .smListings dl .subject
{
	font-family: "Roboto Condensed";
	font-size: 15px;
}

.EasyDNNSkin_Ozone .smListings dl .meta
{
	font-family: "Roboto Condensed";
	font-size: 13px;
}

.EasyDNNSkin_Ozone .smListings dl .message
{
	color: #757575;
	font-size: 12px;
}

.EasyDNNSkin_Ozone .smListings .smTimeStamped
{
	color: #757575;
	font-size: 12px;
}

.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .smListings > ul > li > ul > li .profileImg span
{
	border-color: #ffffff;
}

.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle,
.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle:hover
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbdee6;
	background-color: #e7ebf1;
	box-shadow: inset 0px 1px 0px 0px #ffffff;
}

.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::before
{
	border-width: 1px;
	border-style: solid;
	border-color: #cbd0da;
	background-color: #eaedf3;
	box-shadow: 0px 3px 4px 0px #b5b9c1;
}

.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle:hover::before
{
	background-color: #ffffff;
}

.EasyDNNSkin_Ozone .smListings .messages > li .ActiveToggle::after
{
	text-shadow: 1px 1px 1px #ffffff;
	color: #a01203;
}

.EasyDNNSkin_Ozone textarea#replyMessage,
.EasyDNNSkin_Ozone textarea#replyMessage:hover,
.EasyDNNSkin_Ozone textarea#replyMessage:focus
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
	background-color: #f3f3f3;
	color: #333333;
}

.EasyDNNSkin_Ozone .journalTools,
.EasyDNNSkin_Ozone .journalTools #journalOptionArea,
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar > span::before
{
	color: #adadad;
}

.EasyDNNSkin_Ozone .journalTools #journalEditor #tbar > span:hover::before
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_localFileShare > span,
.EasyDNNSkin_Ozone .journalTools #journalOptionArea .journal_onlineFileShare > span
{
	color: #969696;
}

.EasyDNNSkin_Ozone .journalTools #journalEditor #journalContent,
.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt .cmteditarea
{
	background-color: #f3f3f3;
}

.EasyDNNSkin_Ozone #journalItems .journalitem > p
{
	color: #a6a3a3;
}

.EasyDNNSkin_Ozone #journalItems .journalitem > p .authorname a
{
	font-family: "Roboto Condensed";
	color: #272621;
}

.EasyDNNSkin_Ozone #journalItems .journalitem > p .authorname a:hover
{
	color: #d9b91a;
}

.EasyDNNSkin_Ozone #journalItems .journalitem > div i
{
	color: #424242;
}

.EasyDNNSkin_Ozone #journalItems .journalitem .journalfooter
{
	font-family: "Roboto Condensed";
	color: #a6a3a3;
}

.EasyDNNSkin_Ozone #journalItems .journalitem .jphoto img
{
	border-width: 1px;
	border-style: solid;
	border-color: #d9b91a;
}

.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt li p
{
	font-size: 11px;
}

.EasyDNNSkin_Ozone #journalItems .journalrow .journalitem .jcmt li abbr
{
	font-family: "Roboto Condensed";
	font-size: 11px;
}

.eds_backToTop
{
	border-color: #848484;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.22);
}

.eds_backToTop:hover
{
	border-radius: 5px;
	background-color: #848484;
}

.eds_backToTop::before
{
	font-size: 23px;
	line-height: 49px;
}

.eds_pageLoader
{
	background-color: #000000;
}

.eds_pageLoader .eds_preloadPortalTitle
{
	color: #ffffff;
}

.eds_pageLoader .eds_pageAnimation
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/pageLoader/animation/background/predefined/preloadImage.png");
	border-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.eds_pageLoader .eds_pageAnimation::before
{
	border-top-color: #8c442a;
	border-right-color: #8c442a;
	border-bottom-color: #ffffff;
	border-left-color: #ffffff;
	border-top-left-radius: 30%;
	border-top-right-radius: 50%;
	border-bottom-right-radius: 30%;
	border-bottom-left-radius: 50%;
}

.eds_pageLoader.eds_pageLoader2
{
	background-color: #ffffff;
}

.eds_pageLoader.eds_pageLoader2 .eds_customImage
{
	background-image: url("/Portals/_default/skins/ozone/assets/images/pageLoader2/customImage/predefined/715.gif");
}

.eds_pageLoader.eds_pageLoader2 .eds_preloadPortalTitle
{
	color: #000000;
}

.eds_pageLoader .eds_customText
{
	color: #8c442a;
}






/*!
 *  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}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNnews/static/font-awesome/css/font-awesome.min.css");
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/vtwNVMP8y9C17vLvIBNZI_Y6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/9kaD4V2pNPMMeUVBHayd7vY6323mHUZFJMgTvxaG2iE.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: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/ATKpv8nLYAKUYexo8iqqrg.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;
}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/kTYfCWJhlldPf5LnG4ZnHCEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/g46X4VH_KHOWAAa-HpnGPiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7iEAvth_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: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/0XxGQsSc1g4rdRdjJKZrNPk_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;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nE8xhg-WlD4iG4AP-V7QxYA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nN_eC2PfU-cUGGN7U-FIfKc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLvM2QJLsjx6Keu1D2MYodo.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nNd5cRMOq5PeG3VabknWPxo.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLpX8dGXLalyu5OokvgDQcs.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPVFL0ofnRu5Y2lP-UpEUGU.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: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBQ_Gf4FfI8J4SYljBAylk.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;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDrvev4WAjW489CRDHIkJ90.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsCGXDOnx9ptx3UTSPTrfsgk.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsAZ98xO_Wnt-JIem4AuLGfs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsE1G989qbVg6RT5ly5jB8V8.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsJ84zb0nVte6liF9gGtpo1Y.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsD86pq2NkPzVgw_9lpT6RGI.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: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDAdhzWOYhqHvOZMRGaEyPo.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;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nDW5FUgIgejJvrHuLWqrSMw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nA30BZHTGu2N_DqssQcMQNQ.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPDoBG10JtAX-GAwn6iwU1Y.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nGhQuge17febRYSUkWKdLWA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBtmDLrZTTOm3p1EhiGCXc.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nEV356qNqHCUb41pS3zqMSE.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: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nHm2hrkyco9jQ3NKMXpgOBg.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: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/7nBxcqTeiPvFX1XVBk6VGw.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7vk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nFBvb3f1rSHBccuxwv45BuQ.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsL0XspSvAl7ZHo2ORvFbbnU.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPJ02wFZLBBkWNCvnE5Eqks.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/GdZvpAq9shJukTEvSQbePw.woff") format("woff");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7hsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nCj3Mi2hOMP9GNHlaDA9WRI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsK8NE7_Gi-Xz52ZQ_AwfA78.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nJT5GEmoOtNsejy4tIPLwv0.woff") format("woff");
}
.eds_news_Ozone {
  margin-bottom: 30px;
}
.eds_news_Ozone *,
.eds_news_Ozone *::before,
.eds_news_Ozone *::after {
  box-sizing: border-box;
}
.eds_news_Ozone h1,
.eds_news_Ozone h2,
.eds_news_Ozone h3,
.eds_news_Ozone h4,
.eds_news_Ozone h5,
.eds_news_Ozone h6,
.eds_news_Ozone th,
.eds_news_Ozone .in_article_image .image_title {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone h1, .eds_news_Ozone h2, .eds_news_Ozone h3, .eds_news_Ozone h4, .eds_news_Ozone h5, .eds_news_Ozone h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.1;
}
.eds_news_Ozone h1 {
  font-size: 36px;
}
.eds_news_Ozone h2 {
  font-size: 30px;
}
.eds_news_Ozone h3 {
  font-size: 24px;
}
.eds_news_Ozone h4 {
  font-size: 18px;
}
.eds_news_Ozone h5 {
  font-size: 14px;
}
.eds_news_Ozone h6 {
  font-size: 12px;
}
.eds_news_Ozone p {
  margin: 0 0 15px;
  padding: 0;
}
.eds_news_Ozone ul, .eds_news_Ozone ol {
  margin-left: 15px;
}
.eds_news_Ozone ul {
  list-style-type: disc;
}
.eds_news_Ozone ul ul {
  list-style-type: circle;
}
.eds_news_Ozone ul ul ul {
  list-style-type: square;
}
.eds_news_Ozone ol {
  list-style-type: decimal;
}
.eds_news_Ozone ol ol {
  list-style-type: upper-roman;
}
.eds_news_Ozone ol ol ol {
  list-style-type: lower-roman;
}
.eds_news_Ozone .eds_openModal {
  cursor: pointer;
}
.eds_news_Ozone .edn_clearFix:after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_news span, .eds_news_Ozone.eds_subCollection_news a, .eds_news_Ozone.eds_subCollection_news li, .eds_news_Ozone.eds_subCollection_news td, .eds_news_Ozone.eds_subCollection_news table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_news a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news a > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_articleSummary {
  font-size: 13px;
  line-height: 1.3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleTitle {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle {
  color: #424242;
  font-size: 16px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 5px 15px 10px 0;
  position: relative;
  border: solid 1px #c81704;
  padding: 3px;
  position: relative;
  overflow: hidden;
  line-height: 0;
  -webkit-transition: all 250ms linear;
  -khtml-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer:hover {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-indent: -99999px;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 3px;
  right: 3px;
  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_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink::before {
  line-height: 1;
  font-family: "FontAwesome";
  content: "";
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  right: 5px;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
  display: table;
  margin-top: 3px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: block;
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
  background-color: #c81704;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
  display: block;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
    display: inline;
    padding: 0 5px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
  position: relative;
  display: table-cell;
  overflow: hidden;
  text-indent: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a::after {
  position: absolute;
  content: "";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s linear;
  -khtml-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a .edn_mediaLink {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #fff;
  opacity: 0;
  border: solid 1px #fff;
  border-radius: 3px;
  padding: 5px;
  line-height: 1;
  font-size: 12px;
  z-index: 2;
  -webkit-transition: opacity 0.3s linear;
  -khtml-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover::after,
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover .edn_mediaLink {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer img {
  max-width: 100%;
  height: auto;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer::before {
  content: "";
  display: inline-block;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  color: #B0B0B0;
  top: 50%;
  left: 50%;
  margin: 0 0 0 -18px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions {
  line-height: 1;
  font-size: 13px;
  position: relative;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a,
.eds_news_Ozone.eds_subCollection_news .admin_action {
  display: inline-block;
  margin: 10px 5px 10px 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  box-shadow: 0 0 2px 0 #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover::before,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover::before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a::before,
.eds_news_Ozone.eds_subCollection_news .admin_action::before {
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  opacity: 0.8;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit {
  color: #f89e00;
  border-color: #e78d00;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit::before,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article {
  color: #619c1c;
  border-color: #4c771d;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article::before,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails {
  font-size: 12px;
  line-height: 1.2;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -10%;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_readMoreButtonWrapper {
  margin: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .fb-comments, .eds_news_Ozone.eds_subCollection_news .fb-comments iframe[style], .eds_news_Ozone.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Ozone.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article_map {
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox {
  clear: none !important;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
  margin-left: 20px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
    margin-left: 17px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  background-color: #B9B9B9;
  cursor: pointer;
  padding: 6px 15px 5px 10px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  margin: 5px 2px;
  position: relative;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton {
    padding: 6px 8px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::after {
  content: "";
  border-left: dotted 1px #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
  font: 14px/1 "FontAwesome";
  color: #fff;
  content: "";
  vertical-align: middle;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
    padding-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
  color: #fff;
  line-height: 1.4;
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-top: 1px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton:hover {
  background-color: #a5a5a5;
}
.eds_news_Ozone.eds_subCollection_news .addthis_inline_share_toolbox,
.eds_news_Ozone.eds_subCollection_news .edNews_fbLike,
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share .edn_socialShareButton {
  font-size: 18px;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share > div {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share:hover > div {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails {
  padding: 10px;
  margin: 10px 0;
  border-top: 1px solid #cac7c7;
  border-bottom: 1px solid #cac7c7;
  box-shadow: 0 2px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
  background-color: #f8f8f8;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventRegistrationModalTrigger {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation {
  padding: 5px 0 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation::before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span::before {
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventLocation::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventDate::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox {
  border: solid 2px #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px 15px 10px;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span {
  position: relative;
  padding: 0 0 6px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span::after {
  border-bottom: 3px solid #cd1301;
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul {
  margin: 20px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 5px 20px;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li::before {
  color: #c81704;
  content: "";
  font: 13px/1.3 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li a {
  margin-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li span {
  font-style: italic;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
  margin-left: -9px;
  margin-right: -9px;
  line-height: 0;
  font-size: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
  padding: 0 9px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  line-height: 0;
  height: 175px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    display: block;
    border: none;
    padding: 0 0 6px;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li + li {
  border-left: dashed 1px #acacac;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
  max-width: 100%;
  display: block;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    float: left;
    margin: 2px 10px 5px 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
  border: 1px dashed #bfbfbf;
  background-color: #EDEDED;
  box-shadow: 0 0 0 5px #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
  color: #424344;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: solid 1px #F7F5F5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li::before {
  content: "";
  font-size: 16px;
  color: #504e4e;
  line-height: 1.1;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_doc::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_docx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odt::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xls::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xlsx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ods::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_zip::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_rar::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_7z::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wav::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wma::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_flac::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp3::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_png::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_gif::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpeg::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpeg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp4::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xvid::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wmv::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogv::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mov::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_avi::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mkv::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ppt::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pptx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odp::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
  color: #999;
}

.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border: solid 1px #E5E5E5;
  border-radius: 4px;
  padding: 5px;
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 5px 30px;
  border-bottom: solid 1px #eee;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon::before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr:last-child td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  display: inline-block;
  border: 1px solid #e78a04;
  background-color: #f9ab3c;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #e78a04;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding: 5px 15px 5px 40px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label::before {
  width: 25px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label {
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #c81704;
  border-radius: 5px;
  background-color: #fff;
  color: #c81704;
  overflow: hidden;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  -webkit-transition: padding 200ms linear;
  -khtml-transition: padding 200ms linear;
  -moz-transition: padding 200ms linear;
  -ms-transition: padding 200ms linear;
  -o-transition: padding 200ms linear;
  transition: padding 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label::before {
  background-color: #dbdbdb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  color: #fff;
  font-family: "FontAwesome";
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  -webkit-transition: width 200ms linear;
  -khtml-transition: width 200ms linear;
  -moz-transition: width 200ms linear;
  -ms-transition: width 200ms linear;
  -o-transition: width 200ms linear;
  transition: width 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label::before {
  background-color: #619c1c;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label::before {
  background-color: #d61603;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label::before {
  background-color: #f89e00;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a {
  text-align: right;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  background-color: #f8f8f8;
  padding: 3px 10px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span {
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span::before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity linear 400ms;
  -khtml-transition: opacity linear 400ms;
  -moz-transition: opacity linear 400ms;
  -ms-transition: opacity linear 400ms;
  -o-transition: opacity linear 400ms;
  transition: opacity linear 400ms;
  line-height: 0;
  font-size: 0;
  z-index: 9999;
  margin-bottom: 3px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip:hover .edn_toolTipContent {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 1px transparent;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  max-width: 400px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport::after {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  margin-left: 5px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:hover::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails {
  background-color: #e5e5e5;
  border: solid 1px #cac7c7;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff inset;
  padding: 15px;
  margin: 15px 0 0;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails::after {
  content: "";
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > img {
  float: left;
  margin: 0 15px 5px 0;
  background-color: #f8f8f8;
  padding: 7px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button {
  margin: 0 0 0 7px;
  vertical-align: baseline;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button::before {
  content: "";
  color: #504e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .edn_connectWith {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button {
  display: inline-block;
  margin: 10px 0 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 28px;
  min-height: 28px;
  padding-left: 7px;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio {
  border: 1px solid #c81704;
  background: none #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #c81704;
  line-height: 26px;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  margin: -2px 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social {
  border: solid 1px #8d8989;
  color: #8d8989;
  line-height: 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.facebook::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.twitter::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.linked_in::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.google_plus::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.youtube::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.instagram::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.website::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails + [class*="article_list_wrapper"] {
  margin-top: 25px;
}
.eds_news_Ozone .edn_module_title {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
  font-size: 24px;
  line-height: 1.1;
}
.eds_news_Ozone .fa {
  font-family: "FontAwesome" !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_news_Ozone.eds_subCollection_calendar {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar span, .eds_news_Ozone.eds_subCollection_calendar a, .eds_news_Ozone.eds_subCollection_calendar li, .eds_news_Ozone.eds_subCollection_calendar td, .eds_news_Ozone.eds_subCollection_calendar table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_calendar a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_calendar a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  width: 50%;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_subCollection_calendar .fc {
  border: solid 1px #c81704 !important;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: solid 1px #c81704;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  font: normal normal 22px/1 "Roboto Condensed", sans-serif;
  color: #c81704;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #504e4e;
  border-color: #c81704;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_rss::before, .eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.events_rss::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #c81704;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #c81704;
  content: "";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc-widget-header {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #c81704;
  padding: 14px 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc,
.eds_news_Ozone.eds_subCollection_calendar .fc th,
.eds_news_Ozone.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  color: #fff !important;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #c81704;
  font-size: 11px;
  color: #504e4e;
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #504e4e;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #c81704;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.selected > a,
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > a:hover {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.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_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.today::after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  margin-top: 25px;
  border-top: solid 1px #dcdcdc;
  padding-top: 25px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div {
  border-bottom: solid 1px #ddd;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse::before {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div.edn_archiveByYear a.edn_archiveLink {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
  color: #504e4e;
  text-decoration: none;
  display: block;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink {
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink {
  font-weight: bold;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse {
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse::before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-family: "FontAwesome";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse.collapse::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li ul li > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list > ul > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events {
  margin-top: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  float: right;
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .rss::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .export::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li::before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  color: #c81704;
  font-family: "FontAwesome";
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  color: #504e4e;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #c81704;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
}

.eds_news_Ozone.eds_subCollection_news .child_categories {
  margin-bottom: 40px;
}
.eds_news_Ozone.eds_subCollection_news .edn_categoryInfo {
  margin: 20px 0 30px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory {
  margin: 7px;
  padding: 5px;
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  background-color: #e5e5e5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption > span {
  display: inline-block;
  padding: 5px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  color: #504e4e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory:hover > img {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #747474;
  text-decoration: none;
  display: inline-block;
  border-bottom: solid 0 transparent;
  margin-bottom: 2px;
  -webkit-transition: border-color 200ms linear;
  -khtml-transition: border-color 200ms linear;
  -moz-transition: border-color 200ms linear;
  -ms-transition: border-color 200ms linear;
  -o-transition: border-color 200ms linear;
  transition: border-color 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:hover {
  border-bottom-color: #c81704;
  border-bottom-width: 2px;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:last-child {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i {
  display: none;
  margin: 0 7px;
  font-family: "FontAwesome";
  font-size: 17px;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i + a + i {
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_categoryMenu {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu div, .eds_news_Ozone.eds_subCollection_categoryMenu span, .eds_news_Ozone.eds_subCollection_categoryMenu a, .eds_news_Ozone.eds_subCollection_categoryMenu li {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_categoryMenu ul {
  margin: 0 !important;
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div {
  clear: both;
  overflow: hidden;
  padding: 3px 0 3px 90px;
  border-bottom: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_articlecount, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_rss, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_image, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.expand_collapse {
  display: inline-block;
  vertical-align: top;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  cursor: pointer;
  height: auto !important;
  visibility: visible !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse::before {
  content: "";
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 14px;
  margin: 0 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
  color: #504e4e;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image > img {
  border: solid 1px #c81704;
  padding: 2px;
  -webkit-transition: border 200ms linear;
  -khtml-transition: border 200ms linear;
  -moz-transition: border 200ms linear;
  -ms-transition: border 200ms linear;
  -o-transition: border 200ms linear;
  transition: border 200ms linear;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover > img {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 15px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 45px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 60px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 75px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #000;
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper {
  height: 50px;
  overflow: auto;
  padding: 20px 0;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div {
  padding: 5px 7px 5px 0;
  margin-right: 7px;
  border-bottom: none;
  border-right: solid 1px #ddd;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div .expand_collapse::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .edn_category {
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .hasChild ul .edn_category {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li ul {
  display: inline-block !important;
  height: auto !important;
  overflow: visible !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span {
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  text-align: center;
  border: solid 1px #eee;
  background-color: #F7F7F7;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span::before {
  font-family: "FontAwesome";
  color: #A9A6A6;
  font-size: 16px;
  line-height: 27px;
  -webkit-transition: color 200ms ease;
  -khtml-transition: color 200ms ease;
  -moz-transition: color 200ms ease;
  -ms-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span:hover::before {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_leftOffset .edn_scrollLeft {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_rightOffset .edn_scrollRight {
  opacity: 1;
  visibility: visible;
}

.eds_news_Ozone.eds_subCollection_news .article_comments {
  margin: 15px 0 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment + .comment_list {
  padding-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list {
  margin-bottom: 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  padding-left: 50px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div {
  float: left;
  margin: 0 20px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div img {
  border: 1px solid #504e4e;
  border-radius: 50%;
  padding: 3px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > div {
  color: #424242;
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > time {
  color: #999;
  font-size: 12px;
  display: block;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions {
  text-align: right;
  clear: both;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a {
  display: inline-block;
  border: 1px solid #909090;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  background-color: #bdbdbd;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover {
  background-color: #909090;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete {
  background-color: #d94e49;
  border-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover {
  background-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment.level {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .right_side {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes {
  float: left;
  width: 40px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div {
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > input,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > span {
  display: block;
  margin: 0 auto;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list + .add_comment {
  margin-top: 25px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
  padding: 10px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.left {
  font-family: "Roboto Condensed", sans-serif;
  width: 15%;
  color: #424242;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.right {
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"],
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"] {
  max-width: 300px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea {
  max-width: 370px;
  font-size: 13px;
  min-height: 110px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper {
  border-top: 1px solid #d7d7d7;
  padding-top: 25px;
  clear: both;
  margin-top: 40px;
  margin: 40px auto 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_numberOfComments {
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 20px 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer {
  font-size: 0;
  line-height: 0;
  margin-bottom: 30px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:first-child, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_userAvatar {
  float: left;
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > span {
  font-family: "PT Sans", sans-serif;
  color: #000;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > div {
  margin: 10px 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails .edNews_commentText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions {
  text-align: right;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span {
  cursor: pointer;
  color: #8b8b8b;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  padding: 10px 20px;
  border-radius: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span:hover {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span + span {
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editComment, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentCancelTrigger {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__deleteComment {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentSaveTrigger {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > .edNews__childCommentsContainer {
  margin: 0 0 0 50px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__commentContent {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews_commentActions.main {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_comment {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage {
  box-sizing: border-box;
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  color: #ac171e;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 16px;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: Arial;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;
  font-family: "PT Sans", sans-serif;
  color: #504e4e;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #c81704;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage > a,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  font-family: "PT Sans", sans-serif;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {
  font-family: "PT Sans", sans-serif;
  box-sizing: border-box;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {
  font-family: "PT Sans", sans-serif;
  background-color: #c81704;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 16px;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: "FontAwesome";
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "";
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div {
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div img {
  width: 65px;
  height: 65px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper textarea {
  float: left;
  height: 65px;
  margin-top: -65px;
  padding-left: 75px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__replyingToComment .edNews_addComment .edNews__replyingToMessage {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment::after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment::after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment::after {
  position: absolute;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/loadingBigger.gif") center center no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__itemCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger {
  margin: 30px auto;
  text-align: center;
  border: solid 1px #d7d7d7;
  border-left: none;
  border-right: none;
  color: #8b8b8b;
  font-family: "PT Sans", sans-serif;
  line-height: 1;
  font-size: 12px;
  display: block;
  padding: 10px 30px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -khtml-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews_actionIcon {
  color: #bababa;
  font-size: 20px;
  margin-right: 10px;
  transition: color 300ms;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger {
  display: inline-block;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger > * {
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger + .edNews__commentVoting_trigger {
  margin-left: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger:hover .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_voted .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone .edNews__editCommentContainer {
  border: dashed 1px #ddd;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.eds_news_Ozone .edNews__editCommentContent {
  font-family: "PT Sans", sans-serif;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: none;
  padding: 8px;
  width: 100%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
.eds_news_Ozone .edNews__editCommentContent:focus, .eds_news_Ozone .edNews__editCommentContent:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone .edNews__editCommentContent:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone .edn_recentCommentsHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.eds_news_Ozone .edn_recentCommentsHeader > h4 {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before, .eds_news_Ozone .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone .edn__recentCommentsListContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto Condensed", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #c81704;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 "FontAwesome";
  color: #2c2c2c;
  content: "";
  margin-right: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment .edn_readMoreButton {
  float: right;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 2px 0 0;
  padding: 0;
}

.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_title {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: -1px 20px -1px -1px;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_itemsHidden {
  margin-right: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: #888;
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  -webkit-transition: color 0.1s;
  -khtml-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -ms-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  margin: 0;
  padding: 0;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: -1px;
  background: #fff;
  z-index: 10000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  display: block;
  margin: 0;
  padding: 4px 10px 3px;
  border: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e4e4e4;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  width: 30px;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger::after {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  display: block;
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  display: block;
  text-align: center;
  position: absolute;
  top: 7px;
  transition: color 0.1s ease;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header {
  background: transparent;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
  padding-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  -webkit-transition: opacity 500ms ease 300ms;
  -khtml-transition: opacity 500ms ease 300ms;
  -moz-transition: opacity 500ms ease 300ms;
  -ms-transition: opacity 500ms ease 300ms;
  -o-transition: opacity 500ms ease 300ms;
  transition: opacity 500ms ease 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before, .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
  float: left;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
    width: auto;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide article {
  width: auto !important;
  float: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
  float: right;
  width: 48%;
  margin-left: 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide article {
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide.edn_specialFirstArticle article:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div {
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails {
  font: 10px/1.3 "Roboto Condensed", sans-serif;
  color: #808080;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a {
  color: #1b1b1b;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 {
  padding: 0;
  border: 0;
  margin: 10px 0;
  font: 18px/1.3 "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "Roboto Condensed", sans-serif;
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font: 13px/1.3 "PT Sans", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a img {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  font: 10px/1.3 "PT Sans", sans-serif, sans-serif;
  opacity: 0.9;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category {
  margin: 0 0 0 7px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a {
  display: inline-block;
  background-color: #c81704;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 20px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a {
  display: inline-block;
  color: #fff;
  background: #828282;
  padding: 4px 15px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a::before {
  content: "";
  color: #fff;
  font-family: "FontAwesome";
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.2em;
  vertical-align: top;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
  width: 48%;
  margin: 0 0 15px 4%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
    float: none;
    margin: 0 0 35px;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article .edn_metaDetails {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 {
  margin: 5px 0 7px;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article:nth-child(2n+1) {
  margin-left: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
  width: 48%;
  padding: 13px 0;
  float: left;
  margin-left: 4%;
  border-top: 1px solid #dfdfdf;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article > a {
  float: left;
  margin: 0 14px 0 0;
  border: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList.edn_biggerPadding article {
  padding: 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article {
  padding: 13px 0;
  border-top: 1px solid #dfdfdf;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article:first-child {
  border-top: none;
  padding-top: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper > article {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_noContent,
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_contentError {
  font: 16px/1.3 "PT Sans", sans-serif, sans-serif;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle {
  margin-bottom: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle figure > a img {
  width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper {
  border: solid 1px #e4e4e4;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
  float: right;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
    width: auto !important;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title {
  background: none transparent;
  display: block;
  border-bottom: solid 1px #c81704;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #c81704;
  padding: 5px 25px 4px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title + .edn_verticalListWrapper {
  margin-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
  float: left;
  width: auto;
  border: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
    float: none;
    width: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
  display: block;
  border: solid 1px #e4e4e4;
  border-left-style: none;
  border-top-style: none;
  padding: 8px 25px;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 3px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none;
  position: absolute;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_active {
  border-right-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li:first-child {
  border-top-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: block;
  white-space: normal;
  float: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
    display: inline-block;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  border-right: solid 1px #e4e4e4;
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger {
  position: static;
  padding: 9px 25px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::after {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::before {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  transition: color 0.1s ease;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList {
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList > li {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper {
  overflow: hidden;
  padding: 20px 20px 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
  float: left;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
    float: none;
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_articleTitle {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_metaDetails {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper {
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination > span {
  margin: 1px 1px 1px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock article {
  opacity: 0;
  max-width: 100%;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a > span {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a {
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child h2 > a {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) h2 > a {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_articleImage {
  -webkit-transition: all 400ms ease-in-out;
  -khtml-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_contentBlock figure > a:hover .edn_articleImage,
.eds_news_Ozone.eds_subCollection_contentBlock h2 > a:hover .edn_articleImage {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__contentBlock_itemList {
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__articleListWrapper {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article h2 > a {
  opacity: 1 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady.edn__contentBlock_loading .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredNextPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredPreviousPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .eds_noContent {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .eds_contentError {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: none;
  margin: 0 auto;
  padding: 0 50px;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_title + .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: right;
  padding: 0;
  margin-right: 30px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle + .edn_articleSubTitle {
  margin-top: -15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleSubTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a::before {
  content: "";
  font-family: "FontAwesome";
  color: #6e6e6e;
  font-size: 18px;
  padding-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
  top: 3px;
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
  border-top: dashed 1px #a8a4a4;
  border-bottom: dashed 1px #a8a4a4;
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #c81704;
  font-size: 12px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #c81704;
  border: solid 1px #c81704;
  text-decoration: none;
  margin: 2px 3px;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .at-resp-share-element .at-share-btn {
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image {
  background-color: #e5e5e5;
  border: solid 1px #d1d2d3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a {
  position: relative;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a::before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  content: "";
  border: solid 2px transparent;
  background-color: transparent;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:hover::before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_title {
  margin: 5px 0 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_description {
  color: #666161;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  clear: both;
  margin: 15px 0;
  padding: 1px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  border-bottom: solid 1px #c81704;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover {
  background-color: #EAEAEA;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover td {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding: 7px 10px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 3px 10px;
  border: none;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}

.eds_news_Ozone.eds_subCollection_news .edn_article {
  margin-bottom: 35px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_metaDetails {
  margin: 10px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary {
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
  font-size: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 1;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > div .admin_action {
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
  font-size: 15px;
  color: #504e4e;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > div .admin_action {
  position: relative;
  z-index: 3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 2;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
  font-size: 15px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
  overflow: hidden;
  position: relative;
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background-color: rgba(200, 24, 5, 0.2);
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer::after {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
  margin-bottom: 3px;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
  margin-bottom: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
  margin: 3px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 {
  margin: 3px 0;
  overflow: hidden;
  padding-bottom: 2px;
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
  font-size: 13px;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
  margin: 0;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments::before {
  font-size: 14px;
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions > a {
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet {
  float: left;
  padding: 0 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet::before {
  font-family: "FontAwesome";
  color: #c81704;
  font-size: 10px;
  line-height: 0;
  content: "";
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox {
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
  padding: 1.5%;
  line-height: 0;
  font-size: 0;
  max-width: 97%;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  min-height: 100px;
  background-color: #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle {
  font-size: 20px;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after {
  content: "";
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  -webkit-transition: all 400ms linear;
  -khtml-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSubTitle {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption h2.edn_articleTitle::after {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSubTitle {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails > span {
  float: right;
  margin: 0 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section {
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer {
  margin: 0;
  float: none;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a:hover:after {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent {
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleTitle {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleSummary {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time {
  line-height: 1;
  font-size: 13px;
  color: #969696;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation::before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time::before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section {
  position: relative;
  display: table;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  border-style: solid;
  border-width: 15px;
  border-left-color: #c81704;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time {
  border-right: solid 1px #bfbfbf;
  padding: 8px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span {
  display: block;
  color: #666161;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div {
  overflow: hidden;
  padding: 8px 8px 8px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_articleTitle {
  font-size: 19px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation::before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMoreButtonWrapper {
  text-align: left;
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover {
  background-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time::before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::before {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
  width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_sss > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover .edn_sss > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
  float: left;
  margin-top: 20px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
    width: 100% !important;
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
  float: left;
  width: 31.3%;
  padding-left: 3%;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
    width: 100%;
    padding: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
  padding-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
  width: 23.5%;
  padding-left: 2%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 48%;
    padding: 0 1% !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption {
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
    clear: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
  box-sizing: content-box;
  width: 32%;
  padding: 0 0 20px 2%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0 0 20px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList {
  margin-bottom: 0;
  padding: 5px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
  font-size: 16px;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
  margin-bottom: 5px;
  margin-top: 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
  margin: 0 0 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 -1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    float: left;
    width: 48% !important;
    padding-right: 1% !important;
    padding-left: 1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    float: none;
  }
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
  display: table;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
  display: table-cell;
  vertical-align: top;
  width: 140px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: inline-block;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock {
  color: #666161;
  font-size: 40px;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  padding-bottom: 20px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    background: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
  box-sizing: content-box;
  -moz-box-sizing: border-box;
  padding: 0 8px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
  width: 29px;
  height: 29px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: solid 8px #e2e2e2;
  overflow: hidden;
  margin-top: -5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a > img {
  width: 100%;
  border-radius: 50%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
  margin-left: 30px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-radius: 6px;
  margin-bottom: 35px;
  margin-top: -5px;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 0;
    margin-top: 10px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before {
  position: absolute;
  content: "";
  top: 15px;
  left: -11px;
  width: 20px;
  height: 20px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-right: none !important;
  border-top: none !important;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header {
  border-bottom: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 #eee;
  padding: 10px 25px;
  background: transparent;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time::before {
  content: "";
  color: #c81704;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport {
  margin-right: 20px;
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover::after {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a {
  color: #666161;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > div {
  padding: 5px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #8a8a8a;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
  background: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
  background-color: #ececec;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent::before {
  background-color: #ececec;
}

.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList {
  width: 250px;
  margin: 0;
  padding: 0;
  float: left;
  position: fixed;
  height: 600px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track {
  background: transparent;
  position: relative;
  height: 100%;
  width: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb {
  height: 20px;
  width: 10px;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background ease 0.2s;
  border-radius: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb > .end {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: dashed 1px #ddd;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #646262;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a:hover {
  color: #c81704;
  text-decoration: none;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li.edNews__active > a {
  color: #000;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList + div {
  margin-left: 280px;
}

.eds_news_Ozone.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  border: solid 1px #c81704;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pager > span,
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  display: inline-block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #c81704;
  border-right: none !important;
  border-bottom: none !important;
  border-top: none !important;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pagination a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_subCollection_news .article_pagination a:hover {
  color: #fff;
  background-color: #FF9387;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  margin-left: -1px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager {
  float: right;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:first-child {
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.next::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.last::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.last::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.first::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.first::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::before {
  font-family: "FontAwesome";
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.last::after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.first::before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.prev::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling {
  float: none;
  border: none;
  margin: 0 -10px;
  padding: 20px 10px;
  overflow: visible;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a {
  border: solid 1px #c81704 !important;
  border-radius: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
  float: left;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover, .eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  text-align: center;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  position: relative;
  padding: 0;
  background: none transparent;
  box-shadow: none;
  overflow: hidden;
  width: 75%;
  display: inline-block;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger > span {
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  font-size: 15px;
  display: block;
  padding: 7px 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer {
  background-color: #fff;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  opacity: 0;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Ozone.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;
  -webkit-transition: all 500ms ease;
  -khtml-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Ozone.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;
  -webkit-transition: padding 600ms ease;
  -khtml-transition: padding 600ms ease;
  -moz-transition: padding 600ms ease;
  -ms-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 240px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -webkit-transition: left 500ms ease, opacity 800ms;
  -khtml-transition: left 500ms ease, opacity 800ms;
  -moz-transition: left 500ms ease, opacity 800ms;
  -ms-transition: left 500ms ease, opacity 800ms;
  -o-transition: left 500ms ease, opacity 800ms;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -webkit-transition: right 500ms ease, opacity 800ms;
  -khtml-transition: right 500ms ease, opacity 800ms;
  -moz-transition: right 500ms ease, opacity 800ms;
  -ms-transition: right 500ms ease, opacity 800ms;
  -o-transition: right 500ms ease, opacity 800ms;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Ozone.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_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_Ozone .edn_pagination {
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid #c81704;
  text-align: right;
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone .edn_pagination > span {
  padding: 0;
  margin: 1px 0 0 1px;
  border: 0;
  background: #c81704;
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.eds_news_Ozone .edn_pagination > span::after {
  font: 18px/1.3 "FontAwesome";
  color: #fff;
  display: block;
  text-align: center;
  display: block;
  padding: 0 11px 1px;
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_previousPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_previousPage::after {
  content: "";
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_nextPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_nextPage::after {
  content: "";
}

.qtip.edn_calendarbox_Ozone {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #c81704;
  width: 500px;
  max-width: 95%;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Ozone p, .qtip.edn_calendarbox_Ozone span, .qtip.edn_calendarbox_Ozone li, .qtip.edn_calendarbox_Ozone a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Ozone .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a:hover {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > img {
  float: left;
  margin: 3px 10px 7px 0;
  padding: 3px;
  border: solid 1px #c81704;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location::before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
  font-family: "FontAwesome";
  color: #c81704;
  font-style: normal;
  font-weight: normal;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a:hover {
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png");
  height: 16px;
  left: 2px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -16px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_Ozone.eds_subCollection_news .article_rating + .edn_ArticleVoting {
  margin-left: 50px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .article_rating + .edn_ArticleVoting {
    margin-left: 0;
    display: block;
    text-align: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 "PT Sans", sans-serif;
  cursor: pointer;
}
.eds_news_Ozone.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_Ozone.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_Ozone.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_Ozone.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}

.eds_news_Ozone.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none 0 none;
  -khtml-transition: none 0 none;
  -moz-transition: none 0 none;
  -ms-transition: none 0 none;
  -o-transition: none 0 none;
  transition: none 0 none;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_search div, .eds_news_Ozone.eds_subCollection_search span, .eds_news_Ozone.eds_subCollection_search a, .eds_news_Ozone.eds_subCollection_search label, .eds_news_Ozone.eds_subCollection_search input {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_search a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_search a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 50% !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .search_input::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input {
  float: left;
  padding: 0 10px;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:focus {
  border: none;
  outline: none;
  background: none #fff;
  box-shadow: none;
  color: #848484;
  line-height: 28px;
  height: 30px;
  font-size: 13px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search {
  padding: 0 5px;
  line-height: 29px;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  border-radius: 0 !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search {
  width: auto;
  clear: both;
  border: 1px solid #c81704 !important;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline-block;
  padding-left: 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .search_input .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif");
  background-repeat: none;
  background-position: 90% 10%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  padding-right: 35px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  outline: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35px;
  z-index: 1;
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before {
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  font-family: "FontAwesome";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  margin-top: 1px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Ozone.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_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Ozone.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;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 28px;
  height: 30px;
  color: #848484;
  font-size: 13px;
  width: 100%;
  background: none #fff;
  font-family: "PT sans";
  margin: 0;
  padding: 0 10px;
  box-shadow: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 45px;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  padding: 2px;
  background-color: #d6d6d6;
  height: 13px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7 #c7c7c7 #d3d3d3;
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: block;
  height: 7px;
  border-radius: 4px;
  background-color: #c3c3c3;
  border: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #c81704;
  border-style: solid;
  border-width: 1px;
  border-color: #931103 #931103 #bf1604;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #eeeff0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-color: #d4d8de;
  height: 20px;
  width: 20px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 50%;
  box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c71704;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #c81704;
  position: absolute;
  white-space: nowrap;
  top: 25px;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  top: 25px;
  font-size: 12px;
  line-height: 1;
  color: #a8a8a8;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label::before {
  background-position: 0 bottom;
  content: "";
  font-size: 8px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  outline: none;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  height: 30px;
  line-height: 28px;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-left: none;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 30px;
  padding: 0 11px;
  color: #c81704;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a {
  display: inline-block;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 29px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit {
  border: 1px solid #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 21px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset {
  border: solid 1px #ddd;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover {
  color: #504e4e;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a + a {
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Ozone.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_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #c81704;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  width: auto;
  padding: 7px 9px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count::before {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #b4b4b4;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 "PT Sans", sans-serif;
  display: inline-block;
  border: solid 1px #a0a0a0;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: #504e4e;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  width: 0;
  overflow: hidden;
  background-color: #c81704;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7px 0;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  border: solid 4px transparent;
  border-left-color: #fff;
  margin-top: -4px;
  transition: left 300ms ease 200ms;
}
.eds_news_Ozone .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_Ozone .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Ozone {
  padding: 0px;
  border: 1px solid #c81704;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Ozone ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Ozone ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Ozone ul li span a {
  padding: 2px 10px;
  display: block;
  font-size: 12px;
  color: #504e4e;
  text-decoration: none;
  border: solid 1px transparent;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.EDN_search.theme_Ozone ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Ozone ul li.acSelect a {
  background-color: #f8f8f8;
  border-color: #d4d4d4 transparent;
  color: #c81704;
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.eds_news_Ozone.eds_subCollection_tagCloud div, .eds_news_Ozone.eds_subCollection_tagCloud a, .eds_news_Ozone.eds_subCollection_tagCloud span {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a {
  border: solid 1px #c81704;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 5px 5px 0;
  display: inline-block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span {
  display: inline-block;
  color: #c81704;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: bold;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span:first-child {
  background-color: #c81704;
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #c81704;
}

.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_title {
  cursor: pointer;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion {
    height: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section {
  margin: 0 0 5px;
  padding: 0;
  border: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  color: #504e4e;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover::after {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title::after {
  position: absolute;
  content: "";
  right: 1%;
  bottom: 5px;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #c81704;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title::after {
  content: "";
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
  padding-right: 30px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header {
  margin: 0;
  padding: 0;
  border: none;
  padding: 10px 30px 10px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header::after {
  top: auto;
  bottom: 50%;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3 {
  font-size: 18px;
  color: #504e4e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header .edn_metaDetails {
  margin: 5px 0 10px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
  margin: 0 10px 5px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_metaDetails {
  margin: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edsAccordion_active > header {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3:last-child > header {
  border: none !important;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion {
  border: none;
  position: relative;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
  float: right;
  clear: right;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
    float: none;
    width: auto !important;
    clear: both;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header::after {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3 {
  color: #7c7c7c;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails {
  margin: 0 0 5px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
  padding-right: 35px;
  opacity: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding: 0;
    position: static;
    width: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
  position: relative;
  background-color: #c81704;
  padding-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
    display: none;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3 {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before {
  position: absolute;
  content: "";
  width: 0;
  left: -14px;
  right: auto;
  border-width: 14px 7px;
  border-style: solid;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  top: 50%;
  margin-top: -14px;
  bottom: auto;
  display: block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
  visibility: visible;
  opacity: 1;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft > header {
  float: left;
  clear: left;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft .edsAccordion_contentWrapper {
  padding-right: 0;
  padding-left: 35px;
  left: auto;
  right: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft.edsAccordion_active > header::before {
  left: auto;
  right: -14px;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::after, .eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::before {
  display: block;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone .edsTabulator .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  border: solid 1px #c81704;
  border-bottom: none !important;
  padding: 7px 10px;
  margin: 0;
  line-height: 1;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone .edsTabulator .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li + li {
  border-left: none !important;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:first-child {
  border-radius: 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:last-child {
  border-radius: 0 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:hover {
  color: #c81704;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0;
  bottom: 100%;
  border: solid 1px #c81704;
  border-radius: 0 5px 5px 5px;
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  height: auto;
  bottom: 0;
}

.eds_news_Ozone.eds_subCollection_news .edn_sss {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  background-color: rgba(27, 25, 21, 0.5);
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext::before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover::before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover::before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  left: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext {
  right: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover,
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover {
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > div {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > img + img ~ div {
  display: block;
}

.eds_news_Ozone.eds_subCollection_news.eds_print .article_gallery,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_comments,
.eds_news_Ozone.eds_subCollection_news.eds_print .fb-comments,
.eds_news_Ozone.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_Ozone.eds_subCollection_news.eds_print .admin_action,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Ozone.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_aditionalBox,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_authorGroupDetails,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_galleryLink,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_pager,
.eds_news_Ozone.eds_subCollection_news.eds_print .detailsArticleDefaultWithTabs,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation,
.eds_news_Ozone.eds_subCollection_news.eds_print [class*="eds_GravityGallery_"] {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_title {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .eds_tabsNav {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative !important;
  visibility: visible !important;
  top: auto !important;
  padding: 0 !important;
  border: none !important;
  opacity: 1 !important;
}

@import url(https://fonts.google.com/specimen/Source+Sans+Pro?query=source+sans+pro);
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZDM1dJgs.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZDc1dJgs.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PZA81d.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpAQ.woff2") format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpAQ.woff2") format('woff2');
}

@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBw.woff") format('woff');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("//fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBw.woff") format('woff');
}


@import url("https://fonts.google.com/specimen/Source+Sans+Pro?query=source+sans+pro");

/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBD5XxxKA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBK5XxxKA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBC5XxxKA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBN5XxxKA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBB5XxxKA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5XxxKA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5Xw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5Xw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5Xw.woff2") format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyXsosBA5Xo.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5Xo.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBA5Xo.woff") format('woff');
}



.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h1,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h2,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h3,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h4,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h5,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h6,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news th,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .in_article_image .image_title
{
	font-family: "League Spartan";
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h1
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h2
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h3
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h4
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h5
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news h6
{
	font-family: "League Spartan";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 1.3rem;
	line-height: 2.3rem;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news a
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news a:hover
{
	color: rgba(42, 42, 42, 0.72);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a
{
	text-transform: uppercase;
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 0.99rem;
	font-style: normal;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a:hover
{
	color: rgba(42, 42, 42, 0.72);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div .edn_articleTitle a
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div:hover .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 h2.edn_articleTitle
{
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a
{
	font-family: "League Spartan";
	font-size: 25px;
	font-weight: 900;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle
{
	color: #2a2a2a;
	font-size: 33px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle
{
	color: #2a2a2a;
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a
{
	color: #2a2a2a;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a:hover
{
	color: #8f620b;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a
{
	color: #2a2a2a;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a
{
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_simpleArticle6Bullet::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultTabs .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .edn_article.edn_articleDetails h1.edn_articleTitle
{
	text-transform: uppercase;
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
	font-size: 19px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article .edn_articleSubTitle
{
	text-transform: uppercase;
	font-family: "Source Sans Pro";
	color: #247a60;
	font-size: 1.7rem;
	line-height: 1.9rem;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article .edn_articleSummary
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 1.3rem;
	line-height: 1.9rem;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle
{
	color: #2a2a2a;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after
{
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle
{
	color: #9f9f9f;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a
{
	color: #2a2a2a;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:hover h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle:hover h2.edn_articleTitle
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle .edn_articleSubTitle
{
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock
{
	color: #666161;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active > section
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud .edn_module_title
{
	color: #e49816;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud > div a span:first-child
{
	background-color: #e49816;
	color: #ffffff;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud > div a:hover span:first-child
{
	background-color: #ffffff;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud > div a
{
	border-color: #e49816;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud > div a span
{
	color: #5b4530;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_tagCloud > div a:hover span
{
	color: #e49816;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_module_title
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_rss::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_rss:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category
{
	font-family: "Source Sans Pro";
	color: #504e4e;
	font-size: 21px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover
{
	color: #797878;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:hover::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn_verticalListWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary
{
	color: #504e4e;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .bread_crumbs > a
{
	font-family: "Roboto Condensed";
	color: #747474;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .bread_crumbs > a:hover
{
	border-bottom-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .bread_crumbs > a:last-child
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .bread_crumbs > i
{
	font-size: 17px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_categoryInfo h1.edn_articleTitle
{
	font-family: "League Spartan";
	font-size: 36px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_categoryInfo
{
	font-family: "League Spartan";
	font-size: 130px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_catalogCategory
{
	background-color: #e5e5e5;
	box-shadow: inset 0px 0px 0px 1px #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_catalogCategory > figcaption > span
{
	background-color: #ffffff;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.6);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_eventDetails
{
	border-radius: 0px;
	box-shadow: inset 0px 2px 0px 0px #ffffff,inset 0px -2px 0px 0px #ffffff;
	font-family: "Source Sans Pro";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_eventDetails .edn_eventPrice
{
	font-family: "Roboto Condensed";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_calendarExport::after
{
	text-shadow: none;
	color: #504e4e;
	font-size: 13px;
	line-height: 1.3;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_calendarExport:hover::after
{
	text-shadow: none;
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_eventDetails .edn_eventLocation::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBarWrapper > h4
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span > label
{
	border-width: 1px;
	border-radius: 5px;
	color: #825703;
	font-size: 15px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label::before
{
	background-color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label::before
{
	background-color: #d61603;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label::before
{
	background-color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before
{
	border-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::before
{
	border-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > time
{
	box-shadow: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time
{
	background-color: #5b4530;
	box-shadow: none;
	border-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time
{
	box-shadow: none;
	border-color: #7d0f03;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation
{
	font-family: "Source Sans Pro";
	color: #636262;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation::before
{
	color: #636262;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
	font-family: "Source Sans Pro";
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover
{
	border-color: #5b4530;
	background-color: #ffffff;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer
{
	border-color: rgba(42, 42, 42, 0.09);
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer:hover
{
	border-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 .edn_mediaContainer::after
{
	background-color: rgba(200, 24, 5, 0.2);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_mediaContainer.edn_withTime > a::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticle2WithAccordion .edn_mediaContainer.edn_withTime > a::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_mediaContainer.edn_withTime > a::after
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > .edn_mediaLink
{
	border-color: #ffffff;
	border-radius: 3px;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > time
{
	background-color: #2a2a2a;
	box-shadow: none;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span
{
	font-family: "League Spartan";
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child
{
	font-family: "League Spartan";
	font-size: 26px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span.edn_monthName
{
	font-family: "League Spartan";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child
{
	font-family: "League Spartan";
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_metaDetails
{
	text-transform: capitalize;
	font-family: "Source Sans Pro";
	color: #6e6e6e;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a::before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails > time::before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listEventDetails
{
	font-family: "Source Sans Pro";
	color: #969696;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listEventDetails > span::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails
{
	background-color: #000000;
	opacity: 0.7;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberOfVievs::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberComments::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager.edn_articleScrolling a
{
	border-color: #2a2a2a !important;
	border-radius: 4px;
	background-color: #ffffff;
	font-family: "Source Sans Pro";
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager.edn_articleScrolling a:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager.edn_articleScrolling .edn_toolTip:hover .edn_toolTipContent
{
	font-family: "Source Sans Pro" !important;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i
{
	color: #bababa;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i
{
	color: #37b1ab;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_ArticleVoting > span:hover > i
{
	color: #37b1ab;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags
{
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #a8a4a4;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #a8a4a4;
	font-family: "Roboto Condensed";
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a
{
	border-color: #2a2a2a;
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover
{
	border-color: #2a2a2a;
	background-color: #ffffff;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title
{
	color: #2a2a2a;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #593e09;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title::after
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3
{
	color: #2a2a2a;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3
{
	color: #563900;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time
{
	color: #888888;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before
{
	border-right-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a
{
	border-color: #e2e2e2;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png");
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before
{
	border-color: #bcbcbc;
	background-color: #dadada;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent::before
{
	background-color: #ececec;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary
{
	color: #8a8a8a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a
{
	color: #da9510;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a:hover
{
	color: #535353;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header
{
	border-bottom-color: #bcbcbc;
	box-shadow: 0px 1px 0px 0px #eeeeee;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport
{
	color: #555555;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport::after
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover::after
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .in_article_image
{
	border-color: #d1d2d3;
	border-radius: 4px;
	background-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .in_article_image .image_title
{
	color: #2a2a2a;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .in_article_image .image_description
{
	color: #666161;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .in_article_image .image_wrapper > a:hover::before
{
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants
{
	border-color: #e5e5e5;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2a2a2a;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader th
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #eeeeee;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr:hover
{
	background-color: #eaeaea;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_listOfAttendants > table tr:hover td
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments
{
	border-color: #e5e5e5;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2 span::after
{
	border-bottom-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li a
{
	font-family: "Source Sans Pro";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails
{
	font-family: "Source Sans Pro";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docExtension
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription
{
	color: #999999;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li
{
	border-bottom-color: #f7f5f5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks
{
	border-color: #2a2a2a;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2 span::after
{
	border-bottom-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li a
{
	font-family: "Source Sans Pro";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li span
{
	font-family: "Source Sans Pro";
	font-style: italic;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles
{
	border-color: #bfbfbf;
	border-radius: 4px;
	background-color: #ededed;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2
{
	color: #2a2a2a;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2 span::after
{
	border-bottom-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a
{
	color: #424344;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a span
{
	font-family: "Roboto Condensed";
	color: #424344;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a:hover span
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li + li
{
	border-left-color: #acacac;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 4px #ffffff;
	background-color: #e5e5e5;
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails > h4 .button::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.contact,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.full_bio
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.social
{
	border-color: #8d8989;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.social:hover
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.social::before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails .button.social:hover::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .num_of_comment
{
	border-color: #2a2a2a;
	border-radius: 4px;
	color: #5b4530;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment article > section > h4
{
	color: #e59908;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment article > section > div
{
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment article > section > time
{
	color: #999999;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment article > div img
{
	border-color: #e59908;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment .actions > a
{
	border-color: #909090;
	background-color: #bdbdbd;
	font-family: "Roboto Condensed";
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover
{
	background-color: #909090;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete
{
	border-color: #9d241e;
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover
{
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment > h3
{
	color: #2a2a2a;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment > div
{
	border-color: #2a2a2a;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Roboto Condensed";
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"],
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:focus,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:focus
{
	border-color: #2a2a2a;
	border-radius: 6px;
	color: #666666;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box .submit
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_readMore.edn_readMoreButton
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
	font-family: "Source Sans Pro";
	color: #5b4530;
	font-size: 17px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination span
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination table
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination a
{
	background-color: transparent;
	font-family: "Source Sans Pro";
	color: #5b4530;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination a:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .article_pagination span
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger
{
	border-color: #2a2a2a;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger > span
{
	font-family: "Source Sans Pro";
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay::before
{
	color: #2a2a2a;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eeeeee;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eeeeee;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a:hover
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a span::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a:hover span::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a span
{
	font-family: "Source Sans Pro";
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edn_articlesRssWrapper a:hover span
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edsTabulator .eds_tabsNav > li
{
	border-color: #2a2a2a;
	color: #b4b4b4;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edsTabulator .eds_tabsNav > li:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .edsTabulator .eds_tabsNav > li.edsTabulator_active
{
	background-color: #eb1601;
	box-shadow: inset 0px -25px 13px -13px #cb1400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount
{
	background-color: #5b4530;
	border-radius: 10px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	color: #848484;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .do_search,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .do_search::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input .do_search:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search
{
	border-color: #2a2a2a !important;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search > span
{
	text-transform: uppercase;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search > span:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .search_input.button_outside .do_search:hover::before
{
	color: #ffffff;
}

.EDN_search.theme_Ozone.custom_sanhnr652kw
{
	background-color: #ffffff;
	border-color: #2a2a2a;
	box-shadow: none;
}

.EDN_search.theme_Ozone.custom_sanhnr652kw ul li span a
{
	color: #5b4530;
	font-size: 12px;
}

.EDN_search.theme_Ozone.custom_sanhnr652kw ul li span a:hover
{
	color: #2a2a2a;
}

.EDN_search.theme_Ozone.custom_sanhnr652kw .acSelect a
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span
{
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after ,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before
{
	color: #2a2a2a;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input
{
	color: #848484;
	font-size: 13px;
	border-color: #d4d4d4;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #d6d6d6;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c7c7c7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #c7c7c7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d3d3d3;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c7c7c7;
	border-radius: 6px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #2a2a2a;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c68507;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #c38307;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #f9b023;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #bc7e07;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #2a2a2a;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	color: #a8a8a8;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid
{
	background-color: #c3c3c3;
	border-width: 1px;
	border-style: solid;
	border-color: #bcbcbc;
	border-radius: 4px;
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #d4d8de;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	box-shadow: inset 0px 6px 6px 0px rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider::before
{
	background-color: #9f6c0b;
	border-radius: 50%;
	box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #966912;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label::before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #a27011;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	color: #848484;
	border-color: #d4d4d4;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	border-right-color: #d4d4d4;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit
{
	background-color: #ffffff;
	border-color: #2a2a2a;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit
{
	color: #5b4530;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset
{
	background-color: #ffffff;
	border-color: #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover
{
	background-color: #2a2a2a;
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #5b4530;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_item
{
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search span.ednSbl_item
{
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item
{
	border-color: #2a2a2a;
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_count
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc
{
	border-color: #2a2a2a !important;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_styledSelect > span
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_styledSelect > span::after
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_styledSelect > span select
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_styledSelect > span::after 
{
	color: #2a2a2a;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-toolbar h2
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #ffffff;
	border-bottom-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-next-button
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-next-button:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-next-button::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-widget-header
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc .fc-week-number a
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-widget-header th.fc-week-number
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc td.fc-week-number
{
	border-right-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #5b4530;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts > a
{
	color: #5b4530;
	border-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover
{
	background-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #2a2a2a;
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events > a
{
	color: #ffa100;
	border-color: #ffa100;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover
{
	background-color: #ffa100;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #2a2a2a;
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after
{
	border-top-width: 3px;
	border-top-color: #dddddd;
	border-right-width: 1px;
	border-right-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	border-left-width: 1px;
	border-left-color: #dddddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc td.fc-day-top a:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button
{
	border-color: #2a2a2a;
	border-radius: 4px;
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-button.fc-state-active
{
	border-color: #ffa100;
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event
{
	background-color: transparent;
	border-color: #2a2a2a;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event:hover
{
	background-color: transparent;
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events
{
	background-color: transparent;
	border-color: #ffa100;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: transparent;
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{
	border-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-unthemed .fc-divider
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-heading .fc-widget-header
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item td a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .fc-list-item td a:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .edn_module_title
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list
{
	border-top-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink
{
	color: #504e4e;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul > li .expand_collapse::before
{
	color: #5d4636;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span
{
	border-radius: 10px;
	background-color: #5b4530;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:hover::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events ul li > a
{
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events ul li > a:hover
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_calendar .archive_list.events ul li::before
{
	color: #5b4530;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw
{
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #ffa100;
	border-radius: 0px;
	box-shadow: none;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content div.title span,
.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content div.title span a
{
	color: #ffa100;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content div.title span a:hover
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > p.title a
{
	color: #5b4530;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > p.title a:hover
{
	color: #2a2a2a;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > p.title
{
	color: #5b4530;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article_list > li > a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article_list > li > a:hover
{
	color: #2a2a2a;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article_list > li
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article_list > li > p
{
	color: #999999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > .content
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article img
{
	border-color: #2a2a2a;
	border-radius: 0px;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > a
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
	color: #5b4530;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > a:hover
{
	background-color: #2a2a2a;
	color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.custom_sanhnr652kw .qtip-content .wrapper > .article > p.location::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink
{
	border-color: #2a2a2a;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink > span
{
	color: #b47d11;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink::before
{
	color: #b47d11;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #2a2a2a;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #b47d11;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay::before
{
	color: #2a2a2a;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	color: #2a2a2a;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #2a2a2a;
	border-radius: 0px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	border-color: #e49915;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone
{
	border-radius: 6px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	background-color: rgba(255, 255, 255, 0.7);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation::after
{
	color: #c7c7c7;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:hover::after
{
	color: #e49915;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 5px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover
{
	border-color: #e49915;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on
{
	border-color: #e49915;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li::after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on::after
{
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .navigation_button
{
	border-radius: 3px;
	background-color: #e49915;
	box-shadow: inset 0px 48px 48px -48px #f5ba53;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .navigation_button::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover::before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
	color: #855c15;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .title_box
{
	font-size: 18px;
	background-color: rgba(149, 149, 149, 0.5);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport .overview,
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport p
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box
{
	background-color: rgba(54, 54, 54, 0.5);
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb
{
	border-color: #e49915;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay .indicator::before
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > time
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a
{
	background-color: #828282;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a
{
	background-color: #5b4530;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown
{
	background-color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_header
{
	border-top-color: #e4e4e4;
	border-bottom-color: #e4e4e4;
	border-right-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_title
{
	background-color: #5b4530;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title
{
	border-bottom-color: #5b4530;
	border-radius: 0px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span
{
	background-color: #5b4530;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li
{
	color: #888888;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red
{
	color: #db313c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow
{
	color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink
{
	color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray
{
	color: #808080;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown
{
	color: #2a2a2a;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_pagination
{
	border-top-color: #5b4530;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_pagination > span
{
	border-radius: 0px;
	background-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_contentBlock .edn_mainWrapper::after
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentsHeader
{
	border-bottom-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentsHeader > h4
{
	background-color: #5b4530;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentContainer .edNews_userAvatar
{
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor
{
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor:hover
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentContainer .edNews__commentContent
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentDate
{
	color: #999999;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink
{
	color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink:hover
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink::before
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_pagination
{
	border-top-color: #5b4530;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_pagination > span
{
	border-radius: 0px;
	background-color: #5b4530;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_recentComments .edn__recentCommentsListContainer::after
{
	color: #5b4530;
}



.eds_containers_Press > h2 .LabelEditTextClass {
  color: #333 !important;
}
.eds_containers_Press > .eds_containerTitleWrapper {
  margin: 0;
  padding: 0;
}
.eds_containers_Press .eds_containerIcon,
.eds_containers_Press .eds_containerTitle {
  display: inline-block;
  vertical-align: middle;
}
.eds_containers_Press .eds_containerIcon {
  margin-right: 10px;
}
.eds_containers_Press.eds_templateGroup_default {
  padding: 1rem 0;
}
.eds_containers_Press.eds_templateGroup_default > h2 {
  font-size: 0;
  line-height: 0;
  border-bottom: solid 1px #3f3f3f;
}
.eds_containers_Press.eds_templateGroup_default > h2 > span {
  position: relative;
  display: inline-block;
}
.eds_containers_Press.eds_templateGroup_default > h2 > span::after {
  content: "";
  display: block;
  border-bottom: solid 3px #3f3f3f;
  right: 0;
  bottom: -2px;
  left: 0;
  position: absolute;
}
.eds_containers_Press.eds_templateGroup_default > h2 .eds_containerTitle {
  color: #3f3f3f;
  font-size: 1.5rem;
  line-height: 1.3;
  display: inline-block;
  vertical-align: middle;
  padding: 0.8rem 1rem 0.8rem 0;
}
.eds_containers_Press.eds_templateGroup_default > div {
  padding: 1.5rem 0;
}
.eds_containers_Press.eds_templateGroup_verticalTitle > div {
  position: relative;
}
.eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 {
  background-color: #fc4c3b;
  position: absolute;
  top: -20px;
  bottom: -20px;
  padding: 20px;
  width: 80px;
  left: 0;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 576px) {
  .eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 {
    width: 50px;
  }
}
@media (min-width: 1200px) {
  .eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 {
    left: auto;
    right: calc(100% + 60px);
  }
}
.eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 .eds_containerTitle {
  display: block;
  position: absolute;
  top: calc(50%);
  left: calc(50%);
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 .eds_containerTitle {
    font-size: 1.5rem;
  }
}
.eds_containers_Press.eds_templateGroup_verticalTitle > div > h2 .eds_containerIcon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 100%;
  height: auto;
  max-width: 90%;
}
.eds_containers_Press.eds_templateGroup_verticalTitle > div > div {
  padding: 40px 0;
  min-height: 100px;
  margin-left: 100px;
}
@media (max-width: 576px) {
  .eds_containers_Press.eds_templateGroup_verticalTitle > div > div {
    margin-left: 60px;
  }
}
@media (min-width: 1200px) {
  .eds_containers_Press.eds_templateGroup_verticalTitle > div > div {
    margin-left: 0;
  }
}
.eds_containers_Press.eds_templateGroup_titleH1 > h1, .eds_containers_Press.eds_templateGroup_titleH2 > h1 {
  font-size: 3rem;
}
.eds_containers_Press.eds_templateGroup_titleH1 > div, .eds_containers_Press.eds_templateGroup_titleH2 > div {
  padding: 2rem 0 1.5rem;
}
.eds_containers_Press.eds_templateGroup_titleH3 > div, .eds_containers_Press.eds_templateGroup_titleH4 > div {
  padding: 1rem 0;
}
.eds_containers_Press.eds_templateGroup_boxedTitle {
  padding: 1rem 0;
}
.eds_containers_Press.eds_templateGroup_boxedTitle > h2 {
  font-size: 0;
  line-height: 0;
}
.eds_containers_Press.eds_templateGroup_boxedTitle > h2 > span {
  display: inline-block;
  padding: 0.8rem 7rem 0.8rem 2rem;
  background-color: #fc4c3b;
}
.eds_containers_Press.eds_templateGroup_boxedTitle > h2 > span .eds_containerTitle {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-left: 1rem;
  display: inline-block;
  vertical-align: middle;
}
.eds_containers_Press.eds_templateGroup_boxedTitle > h2 > span .eds_containerIcon + .eds_containerTitle {
  margin-left: 1.5rem;
}
.eds_containers_Press.eds_templateGroup_boxedTitle > div {
  padding: 3rem 0 1.5rem;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper {
  text-align: center;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  min-height: 3rem;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span::before, .eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span::after {
  display: block;
  position: absolute;
  content: "";
  background: url("/Portals/_default/Containers/Press/Images/styledTitleBackground/predefined/centerTitleBg.png") repeat-x left center;
  top: 0;
  bottom: 0;
  width: 1000%;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span::before {
  right: 100%;
  background-position: right center;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span::after {
  left: 100%;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span > span {
  display: inline-block;
  position: relative;
  padding: 0.5rem 2rem;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span > span::before, .eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span > span::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 1rem;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span > span::before {
  left: 0;
  -webkit-box-shadow: 3px -3px 0px 0px #fc4c3b inset, 3px 3px 0px 0px #fc4c3b inset;
          box-shadow: 3px -3px 0px 0px #fc4c3b inset, 3px 3px 0px 0px #fc4c3b inset;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span > span::after {
  right: 0;
  -webkit-box-shadow: -3px -3px 0px 0px #fc4c3b inset, -3px 3px 0px 0px #fc4c3b inset;
          box-shadow: -3px -3px 0px 0px #fc4c3b inset, -3px 3px 0px 0px #fc4c3b inset;
}
.eds_containers_Press.eds_templateGroup_styledTitle .eds_containerTitleWrapper > span .eds_containerTitle {
  font-size: 1.5rem;
  line-height: 1.2;
}
.eds_containers_Press.eds_templateGroup_styledTitle > div {
  padding-bottom: 2rem;
}
.eds_containers_Press.eds_templateGroup_styledTitle.eds_leftTitle .eds_containerTitleWrapper {
  text-align: left;
}
.eds_containers_Press.eds_templateGroup_styledTitle.eds_leftTitle .eds_containerTitleWrapper > span {
  padding-left: 0;
}
.eds_containers_Press.eds_templateGroup_styledTitle.eds_leftTitle .eds_containerTitleWrapper > span::before {
  display: none;
}
.eds_containers_Press.eds_templateGroup_borderedTitle .eds_containerTitleWrapper {
  position: relative;
  padding: 0.6rem 1rem;
  border-bottom: solid 1px #3f3f3f;
  font-size: 0;
}
.eds_containers_Press.eds_templateGroup_borderedTitle .eds_containerTitleWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border: solid 1px #3f3f3f;
  border-right: none;
  border-bottom: none;
  width: 1rem;
}
.eds_containers_Press.eds_templateGroup_borderedTitle .eds_containerTitleWrapper .eds_containerTitle {
  font-size: 1.3rem;
  line-height: 1.1;
  color: #fc4c3b;
}
.eds_containers_Press.eds_templateGroup_borderedTitle > div {
  padding: 1rem 0;
}
.eds_containers_Press.eds_paddingTopBottom {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .eds_containers_Press.eds_paddingTopBottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.eds_containers_Press.eds_paddingBottom {
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .eds_containers_Press.eds_paddingBottom {
    padding-bottom: 2rem;
  }
}
.eds_containers_Press.eds_paddingLeftRight {
  padding: 0 2rem;
}
.eds_containers_Press.eds_paddingXY {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .eds_containers_Press.eds_paddingXY {
    padding: 2rem;
  }
}

.personalBarContainer ~ .EasyDNNSkin_Press .eds_containers_Press.eds_verticalTitle {
  margin-left: 150px;
}

/* Version 7 */


.eds_containers_NewsMagazine > h2 {
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  letter-spacing: normal;
  font-weight: normal;
}
.eds_containers_NewsMagazine > h2 .eds_containerTitle {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  padding: 8px 0;
  color: #c81704;
}
.eds_containers_NewsMagazine > h2.eds_bottomBorder {
  border-bottom: solid 1px #6c6c6c;
}
.eds_containers_NewsMagazine > div {
  margin-top: 10px;
}
.eds_containers_NewsMagazine.eds_containerBox {
  padding: 15px 20px 10px;
}
.eds_containers_NewsMagazine.eds_templateGroup_box {
  border: solid 1px #9f9f9f;
}
.eds_containers_NewsMagazine.eds_templateGroup_box > h2 .eds_containerTitle {
  padding: 0;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBackground {
  border: solid 1px #c81704;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBackground > h2 {
  margin: -15px -20px 0;
  background-color: #eb1601;
  -webkit-box-shadow: 0 -30px 15px -15px #cb1400 inset;
          box-shadow: 0 -30px 15px -15px #cb1400 inset;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBackground > h2 .eds_containerTitle {
  color: #fff;
  padding: 10px 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBackground > h2.eds_bottomBorder {
  border-bottom: solid 1px #9e1808;
}
.eds_containers_NewsMagazine.eds_templateGroup_titleWithBackgroundAndCaret {
  border: none;
}
.eds_containers_NewsMagazine.eds_templateGroup_titleWithBackgroundAndCaret > div {
  margin-top: 20px;
}
.eds_containers_NewsMagazine.eds_templateGroup_titleWithBackgroundAndCaret > h2 {
  margin: 0;
  position: relative;
  background-color: #eb1601;
  -webkit-box-shadow: 0 -30px 15px -15px #cb1400 inset;
          box-shadow: 0 -30px 15px -15px #cb1400 inset;
}
.eds_containers_NewsMagazine.eds_templateGroup_titleWithBackgroundAndCaret > h2 .eds_containerTitle {
  color: #fff;
  padding: 10px 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_containers_NewsMagazine.eds_templateGroup_titleWithBackgroundAndCaret > h2:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  border-style: solid;
  border-width: 8px 14px 0;
  border-color: #eb1601 transparent transparent;
  margin-left: -14px;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBorder {
  border: solid 1px #c81704;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBorder > h2 {
  margin: -15px -20px 0;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBorder > h2 .eds_containerTitle {
  padding: 10px 20px;
}
.eds_containers_NewsMagazine.eds_templateGroup_boxWithTitleWithBorder > h2.eds_bottomBorder {
  border-bottom: solid 1px #9e1808;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox {
  background-color: #eb1601;
  -webkit-box-shadow: 0 -200px 100px -100px #cb1400 inset;
          box-shadow: 0 -200px 100px -100px #cb1400 inset;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox.eds_containerBox {
  border-color: #c81704;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox > h2 {
  margin: -15px -20px 0;
  -webkit-box-shadow: 0px 1px 0 0 #e12d1b;
          box-shadow: 0px 1px 0 0 #e12d1b;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox > h2.eds_bottomBorder {
  border-bottom: solid 1px #6c160c;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox > h2 .eds_containerTitle {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
}
.eds_containers_NewsMagazine.eds_templateGroup_colorBox > div .Normal {
  color: #fff;
}
.eds_containers_NewsMagazine.eds_templateGroup_footer > h2 .eds_containerTitle {
  font-size: 24px;
  color: #fff;
}
.eds_containers_NewsMagazine.eds_templateGroup_footer > div .Normal {
  color: #a9a9a9;
}
.eds_containers_NewsMagazine.eds_noTitleNoPadding {
  margin-bottom: 0;
}
.eds_containers_NewsMagazine.eds_noTitleNoPadding > div {
  padding: 0;
  margin: 0;
}
.eds_containers_NewsMagazine.eds_noTitlePaddingTopBottom > div {
  padding: 30px 0 10px;
  margin: 0;
}
.eds_containers_NewsMagazine.eds_titleSeparator > h2 {
  padding-top: 15px;
  padding-bottom: 0;
  border-bottom: solid 1px #a0a0a0;
}
.eds_containers_NewsMagazine.eds_titleSeparator > h2 .eds_containerTitle {
  font-size: 28px;
  padding: 0 0 15px;
  position: relative;
}
.eds_containers_NewsMagazine.eds_titleSeparator > h2 .eds_containerTitle:after, .eds_containers_NewsMagazine.eds_titleSeparator > h2 .eds_containerTitle:before {
  content: "";
  display: inline-block;
}
.eds_containers_NewsMagazine.eds_titleSeparator > h2 .eds_containerTitle:after {
  bottom: -2px;
  border-bottom: solid 3px #c81704;
  left: 0;
  right: 0;
  position: absolute;
}
.eds_containers_NewsMagazine.eds_titleSeparator > div {
  padding-top: 15px;
  padding-bottom: 5px;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle2 > h2 .eds_containerTitle:before {
  position: absolute;
  width: 0;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent #c81704;
  bottom: 1px;
  left: 50%;
  margin-left: -3px;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle3 > h2 .eds_containerTitle:before {
  width: 40%;
  border-bottom: solid 7px #c81704;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -20%;
  z-index: 1;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle4 > h2 {
  border-bottom: dashed 1px #bfbfbf;
  padding: 8px 0;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle4 > h2 .eds_containerTitle {
  padding: 0;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle4 > h2 .eds_containerTitle:after, .eds_containers_NewsMagazine.eds_titleSeparator.eds_titleStyle4 > h2 .eds_containerTitle:before {
  display: none;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_centerTitle > h2 {
  text-align: center;
}
.eds_containers_NewsMagazine.eds_titleSeparator.eds_rightTitle > h2 {
  text-align: right;
}
.eds_containers_NewsMagazine .eds_clear {
  clear: both;
  margin: 0 !important;
  padding: 0 !important;
}

/* Version 15 */


/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
    
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
    color:#2a2a2a;
}

A:visited   {
    color:#2a2a2a;
}

A:hover {
    color: rgba(42, 42, 42, 0.75);
    text-decoration: none;
}

A:active    {
    color:#2a2a2a;
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
    /* list-style-type: disc !important;
    padding-bottom: 1rem; */
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}

/*UNIQUE CODE*/
.navbar-dark .navbar-nav .nav-link.active{
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

/*display background hero image*/
.hero-image
{   
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
/*hero image background image */
#homepage
{
    height: 80vh; /*new css unit*/
    background-position: 50% 8%;
    background-image:
    linear-gradient(94deg, rgba(0,0,0,.7) 0%, rgba(140,68,42,.5) 31%, rgba(217,185,26,.5) 100%), url("/Portals/0/Images/header-image.jpg");
    /* linear-gradient(94deg, rgba(0,0,0,.7) 0%, rgba(140,68,42,.5) 31%, rgba(217,185,26,.5) 100%), url("/Portals/0/Images/Chief%20Noon%20Inauguration%202023%20Photo%201-3.jpg"); */
    margin-bottom: -20px;
}
#homepage-hero-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}
div.animated div
{
    /* filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.9)); */
}
#homepage-hero-text .greenNavajoNation
{
    font-size: 1.8rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #8eaca5; 
    margin-bottom: 10px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.9));
    font-family: "League Spartan";
}
#homepage-hero-text p
{
    color: #ffffff;
    font-size: 3rem;
    line-height: 1;
    font-weight:bold;
    font-family: "League Spartan";
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.7));
}

/** webpages banner hero, except homepage**/
.webpage-hero-image{
    height: 40vh;
    background-position: left center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-attachment: unset;
    position: relative;
    margin-bottom: -20px;
    background-size:cover;
}
.webpage-hero-image-navajo-division-of-public-safety{
    height: 40vh;
    background-position: left center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-attachment: unset;
    position: relative;
    margin-bottom: -20px;
    background-size:cover;
}
.webpage-hero-text{
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.webpage-hero-text .pageTitle{
    font-weight: 700;
    font-size: clamp(3rem, 5vw + 1rem, 6rem);
    /* background-color: red; */
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "League Spartan";
    color: #D9B91A;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.7));
}
.webpage-hero-image-navajo-division-of-public-safety .webpage-hero-text .pageTitle{
    font-weight: 700;
    font-size: clamp(2rem, 0.286rem + 1.905vw, 3rem);
    /* background-color: red; */
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "League Spartan";
    color: #D9B91A;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.7));
}
/** various webpages **/
#meetYourNPDLeaders{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/2.27.23%20Patrol%20Car%20for%20Page%202-2.jpg");
} 
#contactUs{
    background-position: center bottom !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/replace-image.jpg");
} 
#lateral{
    background-attachment: unset;
    background-position: center !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/Lateral-Photo-2.jpg");
} 
#navajoDivisionOfPublicSafety{
    background-attachment: unset;
    background-position: center top !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/Division-of-Public-Safety-photo.jpg");
} 
#mediaWebpage{
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/Media-3.jpg");
    background-position: left 73% !important;
}
#officer-memorial{
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/Portals/0/Images/replace-image.jpg");
}
#navajo-nation-missing-persons{
background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),url("https://npd.navajo-nsn.gov/Portals/0/IMAGES/1000012857 copy.jpg?ver=Q_LoRtHWf4Fl6oYnBNj4Mg%3d%3d");
background-position: center 40%;
}
/* #navajo-nation-missing-persons{
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("https://npd.navajo-nsn.gov/Portals/0/IMAGES/1000012857 copy.jpg?ver=Q_LoRtHWf4Fl6oYnBNj4Mg%3d%3d");
background-position: center 40%;
} */

/*eds_box unique attribute*/
.eds_box2
{
    background-color: #D9B91A;
    
}

/*footer logo img*/
img.footerLogo 
{
    max-width:175px;
    width: 100%;
    height: auto;
}

/*create space - to the right side*/
.marginRight
{
    margin-right: 8px;
    
}

/*large image with text on top */
.large-image 
{
  background-image: 
  /* linear-gradient(140deg, rgba(0,0,0,.8) 0%, rgba(78,32,15,.8) 100%), url("/Portals/0/Images/7-2.jpg?ver=iHypYSuB10HvP8VQ64L0rA%3d%3d"); */
  linear-gradient(140deg, rgba(0,0,0,.5) 0%, rgba(78,32,15,.5) 100%), url("/Portals/0/Images/Recruit%20Photo.jpg");

  /* height: 600px; */
  height: 60vh;
  /* height: 80vh; */
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  /* this attribute of background-attachment:fixed, makes image 
  NOT SCROLL with page*/
  background-attachment: scroll;
  margin-bottom: -20px;
}
  
.large-image-text 
{
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 70%;
}

/* recruitment webpage - webpage title only */
.large-image-text .recruitmentWebpageTitle{
    font-size:4.2rem;
}
/* recruitment webpage - webpage title only */
.large-image .recruitmentWebpageTitle-alternate{
    /* font-size:4.2rem; */
    font-size: clamp(2.5rem, 0rem + 6.667vw, 8rem);
    /* background-color: red; */

    position: absolute;
    
    /* top: clamp(1.7rem, -6.371rem + 21.524vw, 8rem);
    left: clamp(1rem, -0.643rem + 4.381vw, 3.3rem); */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.recruitmentWebpageTitle-alternate .cta-button {
    display: inline-block;
    /* margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease; */
  }

/* line break between elements */
.lineBreak_betweenElements
{
    display: table;
    padding: 0px 0px 20px 0px;
}

/*extraLargeText Ver 2 attribute  for header Text Section of top of page*/
.extraLargeTextVer2
{
    /* font-size: 300%; */
    /* font-size: 5.5vh; */
    /* font-size: clamp(3rem, 5vw + 1rem, 6rem); */
    font-size: clamp(2.5rem, 2rem + 1.333vw, 3.2rem);
    font-weight: bold;
    line-height: 1.1;
    padding:0 5px;
    text-transform: uppercase;
    font-family:league spartan, Arial, Helvetica, sans-serif;
}

/* font-size of 1.3rem */
.fontSize1_3rem_capitalize
{
    font-size:1.3rem;
    text-transform: capitalize;
    /*font-weight: bold;*/
}
/* font-size of 1.2rem */
.fontSize1_2rem_capitalize
{
    font-size:1.2rem;
    text-transform: capitalize;
    /*font-weight: bold;*/
}


/* font-size of 1.3rem */
.fontSize1_3rem
{
    font-size:1.3rem;
    /*font-weight: bold;*/
}
/* font-size of 1.2rem */
.fontSize1_2rem
{
    font-size:1.2rem;
    /*font-weight: bold;*/
}

/* padding-to-the-right */
.paddingToTheRight
{
    padding-right: 0.8rem;
}

/* flex elements, next to each other, dynamic widths */
.container-parent
{
    display: flex;  
    align-items: center;
}
.container-parent .container-child-firstElement
{
    margin-right: 10px;
    white-space: nowrap;
    vertical-align: middle;
}
.container-parent .container-child-firstElement h4
{
    margin-top:3px;
}

/*hr special line */
.specialLine
{
    width: 100%;
    height: 2px;
    background: grey;
    margin:0;
    padding:0;

}

/*uniqueBoxes */
.box1
{
    background-color: #BFA41B;
    padding: 20px;
}
.box2
{
    background-color: #D9B91A;
    padding: 20px;
}

/*District webpage(s) - small elements feat. FaxNumber-rounded-box */
.faxNumber-rounded-box
{
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #f2ebcb; 
    padding: 15px 15px 5px 15px; 
    border-radius: 12px;

    -webkit-box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.09); 
    box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.09);

    border: 1px solid rgba(13, 13, 13, 0.1);
}

.faxNumberIcon-margins
{
    margin:0px 10px 13px 0;
}

.faxNumber-Text
{
    font-size: 20px; 
    font-weight: bold;
}

/*main webpage title*/
.mainWebpageTitle
{
    font-size: 2rem;
    color: #8C442A;
    margin-top:0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Emergency contact nums Table - on Homepage */
.EasyDNNSkin_Ozone .eds_box.eds_box_5
{
	border-radius: 15px;
    width: 90%;
    margin-left:auto;
    margin-right:auto;
}

/* block container that contains Location Districts - on Homepage */
.blockContainer_forDistrictTitles
{
    background-color: rgba(0,0,0,0.4); 
    margin:0; 
    padding: 10px 10px 0; 
    width: 100%; 
    height: auto;
    border-radius:10px;
}

.text-center
{
    text-align: center;
}
.text-right
{
    text-align: right;
}

/* On Navajo Police District webpage, edit the title text,
after the Name of person */
.jobTitleAfterFullNAME
{
    font-size:18px; 
    line-height: 2rem; 
    font-weight: 400; 
    padding-left: 2px; 
}

.jobTitleAfterFullNAME2
{
    font-size:21px; 
    line-height: 2rem; 
    font-weight: 400; 
    padding-left: 2px; 
}

/*color palettes section */
.darkBrown
{
    color: #8C442A;
}
.darkGrey
{
    color: #4b4b4b !important;
}
.white
{
    color: #ffffff;
}

/* display circle around font awesome icon, and have a background color */
.circle_withBG_color
{
    background-color: #ffffff; 
    border-radius:50%; 
    width: 2rem; 
    height:2rem; 
    margin: 0 0 0 5px
}

/*unique divider line, hr */
hr.uniqueDividerLine1
{
    width: 80%; 
    margin-left:auto; 
    margin-right:auto; 
    margin-top:30px;
}

/* box shadow for images */
img.boxShadow1
{
    -webkit-box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.2); 
    box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.2);
    
}

/*jumbotron*/
.jumbotron
{
padding: 5rem 1rem;
margin-bottom: 2rem;
background-color: rgba(233, 236, 239, 0.2);
border-radius: 0.3rem;
}

.jumbotron2
{
padding: 2rem 2rem;
margin-bottom: 2rem;
background-color: rgba(255, 255, 255, 1);
border-radius: 15px;
}

/*Media webpage - Name of individual block element */
h4.nameOfIndividualBlockElement 
{
    margin-bottom: 20px; 
    padding-bottom: 3px; 
    border-bottom: 2px solid #ffffff; 
    display:inline-block;
}

/*unique ol list css attributes */
ul.uniqueList1 li
{
    list-style-type: disc !important;
    padding-bottom: 1rem;
}

/* unique eds_box5 hyperlink attributes */
a.eds_box_5unique:link, a.eds_box_5unique:visited, a.eds_box_5unique:active
{
   color: #f7e37d;
}

a.eds_box_5unique:hover
{
   color: rgba(247, 227, 125, 0.8);
}

/*adjust large button for Boxes of Navajo Div. of Public Safety
Webpage */
.EasyDNNSkin_Ozone .eds_box.eds_withBottomButton .eds_bottomButton {
  position: absolute;
  left: 0;
  right: 0;
  /*! bottom: -14px; */
  bottom: -28px;
  text-align: center;
  
}
/* adjust border-radius for Boxes of Navajo Div. of Public Safety
Webpage */
.EasyDNNSkin_Ozone .eds_box.eds_box_2_alt
{
	border-width: 1px;
	border-style: solid;
	border-color: #155a4657;
    border-radius: 12px;
    background-color: #fff;
    min-height: 150px;
    display:flex;
    justify-content: center;
    align-items: center;
}

/* tabs when squished mobile - fix border color */
.EasyDNNSkin_Ozone .eds_Tabs .eds_tabsNav > li {
  
  border-color: #0D0D0D;
}

/*card group attributes on Navajo Nation Missing Persons Webpage @charset
START */
.border-primary2
{
    /* border-color: #8C442A !important; */
    border-color:  rgba(140, 68, 42, 0.31);
}

.btn-primary2
{
    background-color: #0D0D0D;
    border-color: #0D0D0D;
    color: #D9B91A;
    font-family: "source sans pro";
    text-transform: uppercase;
    font-size: 16px;
    padding: 6px 10px;
    border-width: 2px;
}

a.btn-primary2, a.btn-primary2:active, a.btn-primary2:visited
{
    color:#D9B91A;
    font-family: "source sans pro";
}

a.btn-primary2:hover
{
    color:#fff;
    font-family: "source sans pro";
}

.block_CallInTips
{
    background-color: rgba(18, 111, 76, 0.2);
    -webkit-box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.05);
    box-shadow: 5px 5px 20px 3px rgba(0,0,0,0.05);  
    border: solid 1px rgba(0, 0, 0, 0.13);
}

/*card group attributes on Navajo Nation Missing Persons Webpage @charset
END */

/*footer - font awesome hyperlink attributes */
a.footerFontAwesomeLinks, a.footerFontAwesomeLinks:visited, a.footerFontAwesomeLinks:active
{
    color: #ffffff;
    text-decoration: none;
}

a.footerFontAwesomeLinks:hover
{
    color:rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/*footer - hyperlink attributes */
a.footerHyperlinks, a.footerHyperlinks:visited, a.footerHyperlinks:active
{
    color:#ffffff;
    text-decoration: underline;
}

a.footerHyperlinks:hover
{
    color:rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/*footer - NUMBERED hyperlink attributes */
.biggerFontSize
{
    font-size: 20px !important;
}
a.footerNumberedHyperlinks, a.footerNumberedHyperlinks:visited, a.footerNumberedHyperlinks:active
{
    color:#ffffff;
    text-decoration: none;
    font-size: 20px;
}
a.footerNumberedHyperlinks, a.footerNumberedHyperlinks:visited, a.footerNumberedHyperlinks:active
{
    color:#ffffff;
    text-decoration: none;
    font-size: 20px;
}

a.footerNumberedHyperlinks:hover
{
    color:rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
a.footerNumberedHyperlinks.largerFontSize
{
    font-size: 1.3rem;
}


/* footer logo - NN Badge logo */
img.footerLogoNNBadge
{
    width: 150px;
    height: auto;
}

/*NUMBERED hyperlinks with NO UNDERLINE */
.linkedNumber_noUnderline
{
    text-decoration: none;
}

/* Recruitment webpage & homepage button - create lighter button against DARK BG */
a.eds_btn_yellowBtn
{
    display: inline-block;
    border: 1px solid #d9b91a;
    background-color: #00000070;
    color: #d9b91a !important;
    /* filter: drop-shadow(1px 0px 4px #000); */
    text-shadow: none;
    text-decoration: none;
    line-height: 1;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1rem, 0.286rem + 1.905vw, 2rem);
    font-weight: bold;
    text-transform: uppercase;
    /* padding: 7px 18px; */
    padding: 12px 20px;
    border-width: 2px;

    border-radius: 60px;
    box-shadow: none;
    -webkit-transition: all 200ms linear;
    -khtml-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
/*button fade-hover effect for CTA buttons or CTA */
a.eds_btn_yellowBtn:visited{
    background-color: #00000070;
    color: #d9b91a;
}
a.eds_btn_yellowBtn:hover{
    background-color: #000000;
    color: #ffffff !important;
}
a.eds_btn_yellowBtn:focus, a.eds_yellowBtn:active{
    background-color: #00000070;
    color: #ffffff;
}

/* add 3d dimension - shadow to object */
.shadow1
{
    box-shadow: 0px 10px 25px 3px rgba(0, 0, 0, 0.51);
}

.shadow2 /* weaker */
{
    box-shadow: 0px 10px 25px 3px rgba(0, 0, 0, 0.2);
}

/* change speed of animation for text animations */
#changeSpeed-slow{
    /* -webkit-transition: 3s ease-in-out left;
    -moz-transition: 3s ease-in-out left;
    -o-transition: 3s ease-in-out left;
    transition: 3s ease-in-out left; */
    animation-duration: 1.8s;
    animation-iteration-count: 1;
}
#changeSpeed-slower{
    /* -webkit-transition: 3s ease-in-out left;
    -moz-transition: 3s ease-in-out left;
    -o-transition: 3s ease-in-out left;
    transition: 3s ease-in-out left; */
    animation-duration: 2.7s;
}

/* move element to the Left */
.img-fluid_toLeft {
    max-width: 95%;
    height: auto;
    float:left;
}

/* small img of NPD image */
img.npd-badge{
    width:25px;
    height:auto;
}

/* css line underneath a TITLE */
.lineUnderTitle-green{
    padding-bottom:4px;
    border-bottom:1px solid #5f967b;
}

/* made the large Buttons, more rounded */
.EasyDNNSkin_Ozone .eds_btn.eds_btnLarge {
  border-radius: 45px;
}

/*h3 letterspacing attribute */
.EasyDNNSkin_Ozone h3,
.EasyDNNSkin_Ozone .h3
{
	letter-spacing: 1.1px;
    font-size:1.5rem;
}
.EasyDNNSkin_Ozone h2,
.EasyDNNSkin_Ozone .h2
{
	letter-spacing: 1.3px;
    word-break: break-word !important;

}

/* emergency contact numbers attibutes - icons */
.EasyDNNSkin_Ozone .fontIcon.darkStyle > span
{
	color: #fff;
	border-color: #fff;
}
/* font icon link color alternative */
/*font awesome icon - alternative*/
.EasyDNNSkin_Ozone .fontIcon.fontAlt > span {
    color: #23574B !important;
}

/* bottom footer - delete the gap, from bottom content to footer gap */
.EasyDNNSkin_Ozone .eds_contentBellowBackground .Normal, .EasyDNNSkin_Ozone .eds_contentBellowBackground {
  margin-bottom: -20px;
}
.EasyDNNSkin_Ozone .fontIcon:hover > span {
background-color: #0c6249 !important;
color: #fff !important;
}
/** h3 attribute on Missing Persons/Resources and Programs webpage **/
.fontAlt h3{
letter-spacing: 0.15rem !important;
text-transform: uppercase;
font-family: "League Spartan";
color: #4b4b4b;
font-size: 1.5rem !important;
line-height: 2rem;
font-weight: bold !important;
}
.fontAlt h3 a{
text-decoration:none;
}

/* h4 title - attributes */
.EasyDNNSkin_Ozone h4, .EasyDNNSkin_Ozone .h4 {
  letter-spacing: 1.1px;
  font-size:1.2rem !important;
  /* background-color: red; */
}

/* bottom of the page - gap between bottom page and footer */
.EasyDNNSkin_Ozone .eds_bottomBannerBg {
    margin-bottom: -20px;
  }

  /*testing for scroll to div */
 html {
  scroll-behavior: smooth;
}

/* pd-police-district-map-img Ver 1 */
.pd-district-map1{
    width: 100%;
    height: auto;
}

/* class list Ver A */
ul.listVerA li {
    margin-left:-32px;
    list-style-type: disc;
}
ul.listTriangleBullet {
list-style-position:outside;
}
ul.listTriangleBullet li{
list-style-type: "\2014";
}
ul.listTriangleBullet li span{
margin-left: 6px;
font-style:italic;
}

/* Section Title with Icon */
.sectionTitleWithIcon{
    max-width: 100%;
    height:auto;
    float:right;
    margin-right:10px;
}
.sectionTitleWithIcon .anyIcon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.sectionTitleWithIcon .anyIcon2{
    width: 70px;
    height: 70px;
    background-color:#ffffff;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #23574B;
}
.sectionTitleWithIcon h2{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: -3px;
    padding-left: 20px;
}
 
/* upcoming recruit drives date - css style */
.event-day{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}
.event-date{
    padding-left:3px;
    color: #23574b;
    font-weight:800;
    font-size: 1.4rem;
    text-transform:uppercase;
}

/* google icons */
.material-symbols-outlined {
  font-size: 2.5em;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.material-symbols-outlined .white{
    color: #ffffff;
}
.material-symbols-outlined .black{
    color: #000000;
}

/*original lateral list */
div.listLateral{
  /* counter-reset: list-number; */
}
ul.listLateral li{
  margin-left: -50px;
}
ul.listLateral li::before{
  content: "\25CF";
  padding-right: 5px;
}
ul.listLateral li.innerListLateral::before{
  content: "\25CF";
  padding-right: 5px;
}
ul.listLateral li.innerListLateral ul li.innerListLateral2 {
  width: 100%;
  margin-left:-25px;
}
ul.listLateral li.innerListLateral ul li.innerListLateral2::before {
  content: "\01F892";
  /* content: "-"; */
}
/* alternate-list*/
div.alt-list{
    counter-reset: list-number;
}
ul.alt-list li{
    list-style-type: none;
    margin-left:-36px;
}
ul.alt-list li::before{
    counter-increment: list-number;
    content: counter(list-number) ".  "; 
}
ul.alt-list li ul.inner-alt-list{
    margin-left:-17px !important;
}
ul.alt-list li ul.inner-alt-list li{
    margin-left: 15px;
}
ul.alt-list li ul.inner-alt-list li::before{
    content: "\2022";
    margin-right:3px;
}






/** paragraphs underneath the list; using the even, odd css pseudo-class **/
.paragraphs-under-list p#first-paragraph{
  padding-top:1rem;
  padding-bottom:0;
  margin-bottom:0;
  text-decoration: underline;
  /* background-color: red; */
}
.paragraphs-under-list p:nth-child(odd){
  padding-top:0rem;
  padding-bottom:0;
  margin-bottom:0;
  text-decoration: underline;
  /* background-color: blue; */
}
.paragraphs-under-list p:nth-child(even){
  padding-top:0;
  margin-top:0;
  /* background-color: green; */
}

/*lateral webpage - police image of 2 people */
.image-container {
  /* max-width: 100%;
  height: 800px; */
  max-width: 100%;
  max-height: 800px;
  border: 1px solid black;
  overflow: hidden;
  display: flex;
  align-items:flex-start;
  justify-content: center;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* opacity: .5; */
}

/** h4 title responsive **/
.EasyDNNSkin_Ozone h4, .EasyDNNSkin_Ozone .h4 {
  letter-spacing: 1.1px;
  font-size:1.55rem;
}

/** pane 2 with slight border color of top and bottom of pane 2**/
.EasyDNNSkin_Ozone .eds_contentBellowBackground{
    border: 1px solid #d7d7d7;
}

/** test with three buttons on recruitment webpage **/
.three-buttons-container{
    display:flex;
    flex-wrap:wrap;
    /* flex-wrap:nowrap; */
    justify-content: flex-start;
    align-items: flex-end;
    gap:1rem;
    position:absolute;

    bottom: clamp(0.8rem, -0.771rem + 4.19vw, 3rem);
    left: clamp(0.8rem, -0.771rem + 4.19vw, 3rem);

    
}
.three-buttons-container a {
    font-size: clamp(0.8rem, -0.771rem + 4.19vw, 2rem) !important;
    /* color: green; */
    /* background-color: red; */
}

.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  font-family:"Roboto", serif;
  font-size: 2.7rem;
  font-weight:400;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime {
  color: #4a7f08;
  font-family: "roboto", sans-serif;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content em, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content i {
  font-style:normal;
}

.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #5b4530;
	font-size: 12px;
	border: 1px solid #5b4530;
}
.eds_news_Ozone.eds_style_custom_sanhnr652kw.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover {
    color: #fff;
}

/*3 columns using css grid for missing persons 2 */
.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 10px; */
    height: auto;
    background-color: rgb(231, 231, 231);
    padding: 30px 0;
}
.child {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f0f0f0; */
    /* background-color: rgb(231, 231, 231); */
    /* border: 1px solid #ccc; */
}
.child p {
    margin: 0;
}
.vertical-stack {
    flex-direction: column;
}

/* nav pills - override default */
/* Unvisited link */
.nav-pills .nav-link:link {
  background-color: #000000; /* Keeping the background color the same */
  color: #d9b91a;
  margin-right:10px;
}

/* Visited link */
.nav-pills .nav-link:visited {
  background-color: green !important; /* Slightly darker background for visited links */
  color: red !important; /* Darker gold for visited links */
}

/* Hover state */
.nav-pills .nav-link:hover {
  background-color: #505050; /* Lighter background on hover */
  color: #fff200; /* Brighter gold on hover */
  border-color: #d9b91a; /* Changing border color on hover */
}

/* Active link (when clicked) */
.nav-pills .nav-link:active {
  background-color: #505050; /* Dark background when clicked */
  color: #ffd700; /* Brighter color when the link is clicked */
  border: 1px solid #000; /* Border changes when clicked */
}

/* Ensure active state persists */
.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}

/* npd buttons - override default buttons */
/* ... existing code ... */

/* NPD Primary Button */
.npd-button-primary {
    background-color: #8C442A ;
    color: #ffd700;
    padding: 5px 10px;
    border: 1px solid #8C442A;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Hover state */
.npd-button-primary:hover {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border:1px solid #000;
    color: #000;
}

/* Active state */
.npd-button-primary:active {
    background-color: #505050;
    transform: translateY(1px);
}

/* Focus state */
.npd-button-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

.auto-width {
    width: auto;
    min-width: min-content;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

/* eds_example breadcrumb attribute */
.eds_example{
    padding-top:2rem;
}

/*inactive-icon class for font awesome */
.inactive-icon {
  color: grey; /* Grey color for inactive */
  opacity: 0.5; /* Optional: Make it semi-transparent */
  pointer-events: none; /* Optional: Disable interaction */
}

/*red color*/
.text-danger-muted {
    color: #cc6666 !important; /* Muted red tone */
  }

/* responsive-logo */
.responsive-logo {
    max-width: 100%;
    height: auto;
    width: 300px; /* Adjust this value based on your needs */
    padding-top:2rem;
    padding-bottom:2rem;
}

/*vertically align  in the center*/
.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/*responsive pdf display*/
.responsive-pdf {
    height: 80vh; /* Adjust height dynamically */
}

/*adjust the DATASPRINGS call-to-action button*/
.EasyDNNSkin_Ozone .dnnPrimaryAction,
.EasyDNNSkin_Ozone .journalTools #btnShare,
.EasyDNNSkin_Ozone .jcmt li.cmtbtn a
{
	font-size: 1rem;
}





























/* media query breakpoints */
@media screen and (max-width: 320px) {
.webpage-hero-text .pageTitle{
    /* font-size: 3.1rem; */
    font-size: clamp(2.8rem, 5vw + 1rem, 6rem);
}
    
}

@media screen and (min-width: 321px) and (max-width: 480px) {
#homepage-hero-text .greenNavajoNation
{
    font-size: 2rem;
}
#homepage-hero-text p
{
    font-size: 3.1rem;
}
 .webpage-hero-text  {
    font-weight: 900;
    color: #D9B91A;
    line-height: .8;
}
.webpage-hero-text .pageTitle{
    font-size: 4rem;
    /* background-color: blue; */
}
.large-image{
    height: 33vh;
}
.large-image-text .recruitmentWebpageTitle{
    /* word-wrap:break-word; */
    font-size: 2.5rem;
}
a.eds_btn_yellowBtn{
    font-size: 18px;
}
#navajoDivisionOfPublicSafety .webpage-hero-text .pageTitle{
    font-size: 3rem !important;
}
}

@media screen and (max-width: 568px) and (orientation: landscape){
    #homepage-hero-text .greenNavajoNation
{
    font-size: 2.3rem !important;
    /* background-color: red; */
}
#homepage-hero-text p
{
    font-size: 3.5rem !important;
    /* background-color: blue; */
}
}

@media screen and (min-width: 481px) and (max-width: 768px){
#homepage-hero-text .greenNavajoNation
{
    font-size:3.5rem;
}
#homepage-hero-text p
{
    font-size: 4rem;
}
.webpage-hero-text{
    font-weight: 900;
    color: #D9B91A;
}
.webpage-hero-text .pageTitle{
    font-size: 4.1rem;
}
.large-image-text .recruitmentWebpageTitle{
    /* word-wrap:break-word; */
    font-size: 3rem;
}
}


@media screen and (min-width: 481px) and (orientation: landscape) {
    .webpage-hero-text {
    font-weight: 900;
    color: #D9B91A;
}
    .webpage-hero-text .pageTitle{
    /* font-size: 3.6rem; */
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
}
    
}


@media screen and (min-width: 667px) and (orientation: landscape) {
    .webpage-hero-text {
    font-weight: 900;
    color: #D9B91A;
    }
    .webpage-hero-text .pageTitle{
    font-size: 3.2rem;
    }
    
    
}


@media screen and (min-width: 760px) and (orientation: landscape) {
    .webpage-hero-text {
    font-weight: 900;
    color: #D9B91A;
    }
    .webpage-hero-text .pageTitle{
    /* font-size: 3rem !important; */
    font-size: clamp(3rem, 5vw + 1rem, 6rem);
    /* background-color: red; */
    }
    

    
    
}


@media screen and (min-width: 883px) and (orientation: landscape) {
    .webpage-hero-text {
    font-weight: 900;
    color: #D9B91A;
}
    .webpage-hero-text .pageTitle{
    /* font-size: 3.5rem !important; */
    font-size: clamp(3rem, 5vw + 1rem, 6rem);
    /* background-color: blue; */
    }
    
}

@media screen and (min-width: 915px) and (orientation: landscape) {
.large-image-text {
  
}
.lineBreak_betweenElements {
  
}
.large-image-text .recruitmentWebpageTitle{
    
}
.large-image-text h1{
    
}
a.eds_btn_yellowBtn{
}
}





@media screen and (max-width: 768px){
    .parent{
    grid-template-columns: 1fr;
    }
    .responsive-logo {
        width: 250px; /* Smaller size for mobile */
    }
}
@media screen and (min-width: 769px) and (max-width:992px){
#homepage-hero-text .greenNavajoNation
{
    font-size:3.5rem;
}
#homepage-hero-text p
{
    font-size: 6.5rem;
}
    .webpage-hero-text{
    font-size: 4.2rem;
    font-weight: 900;
    color: #D9B91A;
}
.webpage-hero-text .pageTitle{
    font-size: 4.2rem;
}

}


@media screen and (min-width: 800px) and (orientation: landscape) {
    .webpage-hero-text {
    font-weight: 900;
    color: #D9B91A;
}
    .webpage-hero-text .pageTitle{
    font-size: 3.8rem;
}
}

@media screen and (min-width: 993px) and (max-width: 1200px){
#homepage-hero-text .greenNavajoNation
{
    font-size:3.5rem;
}
#homepage-hero-text p
{
    font-size: 6.5rem;
}
.webpage-hero-text{
    font-size: 4.5rem;
    font-weight: 900;
    color: #D9B91A;
}
.webpage-hero-text .pageTitle{
    font-size: 4.2rem;
}
}

@media screen and (min-width: 1201px) and (max-width: 2560px){
#homepage-hero-text .greenNavajoNation
{
    font-size:5.5rem;
}
#homepage-hero-text p
{
    font-size: 8rem;
}
.webpage-hero-text{
    font-size: 5rem;
    font-weight: 900;
    color: #D9B91A;
}
.webpage-hero-text .pageTitle{
    font-size: 6rem;
}
#navajoDivisionOfPublicSafety .webpage-hero-text .pageTitle{
    font-size: 4.5rem !important;
}
}

@media screen and (min-width: 2561px) {
#homepage-hero-text .greenNavajoNation
{
    font-size:9rem;
}
#homepage-hero-text p
{
    font-size: 15rem;
}
.webpage-hero-text{
    font-size: 6rem;
    font-weight: 900;
    color: #D9B91A;
}
.webpage-hero-text .pageTitle{
    font-size: 6rem;
}

}



 

  







































































































































































































































































































































































































































































































































/* Home Page style */
.banner-container {
    background: #00a4e3 url("/Portals/0/Images/background_header.gif") no-repeat center center;
    padding: 25px 0;
    min-height: 255px;
	display: table;
}
.banner-container h2 {
    font-weight: bold;
    font-size: 33px;
    color: #fff;
    font-family: Arial;
    text-align: right;
    margin: 25px 0;
}
.banner-container span {
    font-size: 18px;
    color: #fff;
    line-height: 150%;
    text-align: right;
    font-family: Arial;
}
.intro-container {
    background: -moz-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d3d3d3), color-stop(100%, #e6e6e6));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* W3C */
    
    margin: -10px;
    margin-top: 10px;
}
.intro-container *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.intro-container .main {
    margin: 50px 0;
}
.intro-container .main h2 {
    font-size: 30px;
    color: #47292a;
    font-weight: normal;
    font-family: Arial;
    text-align: center;
}
.intro-container .main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.intro-container .main ul li {
    margin-top: 15px;
    padding: 0 7.5px;
}
.intro-container .main ul li a {
    background-repeat: no-repeat;
    background-position: center 38px;
}
.intro-container .main ul li > a {
    display: block;
    position: relative;
    border: 1px solid #c5c5c5;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fafafa;
    text-decoration: none;
}
.intro-container .main ul li a span.overlay {
    background-color: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: opacity 3s ease-out;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 3s ease-out;
    transition: opacity 0.2s ease-out;
    padding: 0 10px 20px 10px;
    color: #fff;
    font-family: Arial;
    font-size: 14px;
    display: table-cell;
    vertical-align: middle;
    height: 235px;
    position: relative;
    z-index: 1;
}
.intro-container .main ul li a span.overlay p {
    margin: 0;
    font-size: 18px;
}
.intro-container .main ul li a span.overlay label {
    text-transform: uppercase;
    font-family: Arial;
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
    background: url("/Portals/0/Images/icon-btn-sm-circle-arrow.png") no-repeat right center;
    padding-right: 18px;
    display: block;
    float: left;
    cursor: pointer;
}
.intro-container .main ul li a:hover span.overlay,
.intro-container .main ul li a:focus span.overlay,
.intro-container .main ul li a:active span.overlay {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    -moz-transition: opacity 3s ease-in;
    -webkit-transition: opacity 0.2s ease-in;
    -o-transition: opacity 3s ease-in;
    transition: opacity 0.2s ease-in;
}
.intro-container .main ul li a span.text {
    display: block;
    height: 65px;
    line-height: 65px;
    margin-top: -65px;
    background-color: #47292a;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: Arial Bold;
    text-transform: uppercase;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.intro-container .main ul li.docs a::after {
    content:"\e233";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .main ul li.community a::after {
    content:"\e135";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .main ul li.code a::after {
    content:"\e079 \e080";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .main ul li.forums a::after {
    content:"\e111";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .main ul li.blogs a::after {
    content:"\e122";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .main ul li.extensions a::after {
    content:"\e136";
    font-family: "Glyphicons Halflings";
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 146px;
    position: relative;
    line-height: 0;
    font-size: 80px;
    color: #47292a;
    z-index: 0;
}
.intro-container .social {
    margin-top: 30px;
}
.intro-container .social .social-links {
    text-align: center;
}
.intro-container .social .social-links h3 {
    font-family: Arial;
    font-size: 17px;
}
.intro-container .social .social-links ul {
    list-style: none;
    width: 152px;
    margin: 0 auto;
}
.intro-container .social .social-links ul li {
    width: 29px;
    height: 29px;
    background-size: 100% 100%;
    margin-top: 0;
    margin-left: 10px;
}
.intro-container .social .social-links ul li a {
    display: block;
    height: 100%;
    border: none;
    background: transparent;
    width: 29px;
    margin-left: -7px;
    text-indent: -100px;
    overflow: hidden;
}
.intro-container .social .social-links ul li.facebook {
    background-image: url("/Portals/0/Images/icon-social-facebook.png");
}
.intro-container .social .social-links ul li.linkedin {
    background-image: url("/Portals/0/Images/icon-social-linkedin.png");
}
.intro-container .social .social-links ul li.twitter {
    background-image: url("/Portals/0/Images/icon-social-twitter.png");
}
.intro-container .social .social-links ul li.youtube {
    background-image: url("/Portals/0/Images/icon-social-youtube.png");
}

.platform-intro p {
    padding: 23px;
    font-size: 18px;
    color: #47292a;
    background-color: #fafafa;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    line-height: 164%;
    margin: 29px -9px 0 -6px
}
.intro-container .main ul li a span.text {
    font-size: 28px;
}
.col-md-12 {
    float: left;
}
@media (max-width: 1199px) {
    .banner-container h2 {
        font-size: 25px;
    }
    .intro-container .main ul li a span.overlay label {
        font-size: 20px
    }
    .intro-container .main ul li a span.text {
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .banner-container img {
        right: 135px;
    }
    .intro-container .main h2 {
        font-size: 38px;
    }
}
@media (min-width: 769px) and (max-width: 979px) {
    .intro-container .main ul li a span.text {
        font-size: 18px;
    }
}
@media (min-width: 769px) and (max-width: 788px) {
    .intro-container .main ul li a span.overlay p,
    .intro-container .main ul li a span.overlay label {
        font-size: 9px;
    }
}
@media (max-width: 768px) {
    .banner-container {
        min-height: 205px;
        min-width: 0px;
    }
    .banner-container h2 {
        font-size: 20px;
        color: #fff;
        margin-top: 20px;
        font-family: Arial;
        max-width: auto;
        float: none;
        text-align: center;
    }
    .banner-container span {
        margin-right: 0;
        font-size: 14px;
        color: #fff;
        line-height: 24px;
        text-align: center;
        display: inline-block;
        font-family: Arial;
        max-width: auto;
        float: none;
    }
    .banner-container img {
        display: none;
    }
    .banner-container {
        background: #00a4e3 url("/Portals/0/Images/background_header.gif") no-repeat center center;
        padding: 25px 0;
    }
    .platform-intro p {
        clear: both;
        font-size: 16px;
        color: #47292a;
        background-color: #fafafa;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #c5c5c5;
        padding: 15px;
        margin: 10px -14px 25px -10px;
        line-height: 22px;
    }
}
@media(max-width: 640px) {
    .platform-intro p {
        margin: 10px -15px 0 -10px;
    }
}
ul li {
    list-style-type: none;
}

.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;
}



/*!
 *  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}

@charset "UTF-8";
@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 * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  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;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial;
  font-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 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;
  -moz-box-sizing: border-box;
  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 input[type="submit"] {
  background: none #189fd3;
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px;
  color: #fff !important;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 48px;
  text-shadow: none !important;
  padding: 0 30px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  text-transform: none;
  margin: 0;
  height: auto;
  transition: all 100ms linear;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type="submit"]:hover {
  background: none #2cb3e7;
}
.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_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: "";
}
.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: "";
  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: "";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "";
}
.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: "";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "";
}
.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: "";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.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;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.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: "";
}
.news .edn_userDashboard a.article_manager::before {
  content: "";
}
.news .edn_userDashboard a.event_manager::before {
  content: "";
}
.news .edn_userDashboard a.approve_articles::before {
  content: "";
}
.news .edn_userDashboard a.approve_comments::before {
  content: "";
}
.news .edn_userDashboard a.category_manager::before {
  content: "";
}
.news .edn_userDashboard a.dashboard::before {
  content: "";
}
.news .edn_userDashboard a.settings::before {
  content: "";
}
.news .edn_userDashboard a.author_profile::before {
  content: "";
}
.news .edn_userDashboard a.themeSettings::before {
  content: "";
}

