﻿
@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 */


/*

WillStrohl.Injection Module for DotNetNuke
Version: 02.00.00
Author: Will Strohl
E-Mail: will.strohl@gmail.com
Website: http://www.willstrohl.com

Copyright 2009-2015 Will Strohl

*/
table.dnnGrid.wns_inj_injectiontable { width:100%; }
    table.dnnGrid.wns_inj_injectiontable.wns_inj_border, .wns_inj_fullwidth { width:100%; }
    table.dnnGrid.wns_inj_injectiontable.wns_inj_border tr td { padding:2px 4px 2px 4px; }
    .wns_inj_col_edit { width:30px; }
    .wns_inj_col_editlarge { width:70px; }
    .wns_inj_col_editlarger { width:150px; }
    .wns_inj_col_editmove { width:110px; }
    .wns_inj_header td { font-weight:bold; }
    .wns_inj_left.wns_inj_col_edit, .wns_inj_right.wns_inj_col_edit { display:inline; width:20px; height:20px; }

.wnsInjectionContent { height: 20em; width: 45em !important; }

#divCommand { margin-top: 1.0em; }

.wnsActions { padding: 0;margin: 0; }

.wnsActions li {
    padding: 0;
    margin: 0 1em 0 0;
    display: inline;
    list-style-type: none;
}

.wnsFormInfoMessage {
    width: 60%; 
    margin-right: 3.0em;
}

.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;
        }

@import url(https://fonts.googleapis.com/css?family=Overlock:400,700,900,400italic,700italic,900italic);



@import url("//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css");@import url("//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css");
 @import url("//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");

@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

/* mods added */

.triggerAnimation{
	opacity:0;
}
.triggerAnimation.animated{
	opacity:1;
}
.animated {
  -webkit-animation-duration:1s;
          animation-duration:1s;
  -webkit-animation-fill-mode:both;
          animation-fill-mode:both;
}
.animated.infinite {
  -webkit-animation-iteration-count:infinite;
          animation-iteration-count:infinite;
}
.animated.hinge {
  -webkit-animation-duration:2s;
          animation-duration:2s;
}
@-webkit-keyframes bounce {
  0%,20%,53%,80%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
  40%,43% {
    -webkit-transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
            transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
    -webkit-transform:translate3d(0,-30px,0);
            transform:translate3d(0,-30px,0);
  }
  70% {
    -webkit-transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
            transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
    -webkit-transform:translate3d(0,-15px,0);
            transform:translate3d(0,-15px,0);
  }
  90% {
    -webkit-transform:translate3d(0,-4px,0);
            transform:translate3d(0,-4px,0);
  }
}
@keyframes bounce {
  0%,20%,53%,80%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
  40%,43% {
    -webkit-transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
            transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
    -webkit-transform:translate3d(0,-30px,0);
            transform:translate3d(0,-30px,0);
  }
  70% {
    -webkit-transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
            transition-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);
    -webkit-transform:translate3d(0,-15px,0);
            transform:translate3d(0,-15px,0);
  }
  90% {
    -webkit-transform:translate3d(0,-4px,0);
            transform:translate3d(0,-4px,0);
  }
}
.bounce {
  -webkit-animation-name:bounce;
          animation-name:bounce;
  -webkit-transform-origin:center bottom;
      -ms-transform-origin:center bottom;
          transform-origin:center bottom;
}
@-webkit-keyframes flash {
  0%,50%,100% {
    opacity:1;
  }
  25%,75% {
    opacity:0;
  }
}
@keyframes flash {
  0%,50%,100% {
    opacity:1;
  }
  25%,75% {
    opacity:0;
  }
}
.flash {
  -webkit-animation-name:flash;
          animation-name:flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  50% {
    -webkit-transform:scale3d(1.05,1.05,1.05);
            transform:scale3d(1.05,1.05,1.05);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  50% {
    -webkit-transform:scale3d(1.05,1.05,1.05);
            transform:scale3d(1.05,1.05,1.05);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
.pulse {
  -webkit-animation-name:pulse;
          animation-name:pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  30% {
    -webkit-transform:scale3d(1.25,0.75,1);
            transform:scale3d(1.25,0.75,1);
  }
  40% {
    -webkit-transform:scale3d(0.75,1.25,1);
            transform:scale3d(0.75,1.25,1);
  }
  50% {
    -webkit-transform:scale3d(1.15,0.85,1);
            transform:scale3d(1.15,0.85,1);
  }
  65% {
    -webkit-transform:scale3d(.95,1.05,1);
            transform:scale3d(.95,1.05,1);
  }
  75% {
    -webkit-transform:scale3d(1.05,.95,1);
            transform:scale3d(1.05,.95,1);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  30% {
    -webkit-transform:scale3d(1.25,0.75,1);
            transform:scale3d(1.25,0.75,1);
  }
  40% {
    -webkit-transform:scale3d(0.75,1.25,1);
            transform:scale3d(0.75,1.25,1);
  }
  50% {
    -webkit-transform:scale3d(1.15,0.85,1);
            transform:scale3d(1.15,0.85,1);
  }
  65% {
    -webkit-transform:scale3d(.95,1.05,1);
            transform:scale3d(.95,1.05,1);
  }
  75% {
    -webkit-transform:scale3d(1.05,.95,1);
            transform:scale3d(1.05,.95,1);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
.rubberBand {
  -webkit-animation-name:rubberBand;
          animation-name:rubberBand;
}
@-webkit-keyframes shake {
  0%,100% {
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
  10%,30%,50%,70%,90% {
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0);
  }
  20%,40%,60%,80% {
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0);
  }
}
@keyframes shake {
  0%,100% {
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
  10%,30%,50%,70%,90% {
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0);
  }
  20%,40%,60%,80% {
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0);
  }
}
.shake {
  -webkit-animation-name:shake;
          animation-name:shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform:rotate3d(0,0,1,15deg);
            transform:rotate3d(0,0,1,15deg);
  }
  40% {
    -webkit-transform:rotate3d(0,0,1,-10deg);
            transform:rotate3d(0,0,1,-10deg);
  }
  60% {
    -webkit-transform:rotate3d(0,0,1,5deg);
            transform:rotate3d(0,0,1,5deg);
  }
  80% {
    -webkit-transform:rotate3d(0,0,1,-5deg);
            transform:rotate3d(0,0,1,-5deg);
  }
  100% {
    -webkit-transform:rotate3d(0,0,1,0deg);
            transform:rotate3d(0,0,1,0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform:rotate3d(0,0,1,15deg);
            transform:rotate3d(0,0,1,15deg);
  }
  40% {
    -webkit-transform:rotate3d(0,0,1,-10deg);
            transform:rotate3d(0,0,1,-10deg);
  }
  60% {
    -webkit-transform:rotate3d(0,0,1,5deg);
            transform:rotate3d(0,0,1,5deg);
  }
  80% {
    -webkit-transform:rotate3d(0,0,1,-5deg);
            transform:rotate3d(0,0,1,-5deg);
  }
  100% {
    -webkit-transform:rotate3d(0,0,1,0deg);
            transform:rotate3d(0,0,1,0deg);
  }
}
.swing {
  -webkit-transform-origin:top center;
      -ms-transform-origin:top center;
          transform-origin:top center;
  -webkit-animation-name:swing;
          animation-name:swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  10%,20% {
    -webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
            transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
  }

  30%,50%,70%,90% {
    -webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
            transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
  }
  40%,60%,80% {
    -webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
            transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
  10%,20% {
    -webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
            transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
  }
  30%,50%,70%,90% {
    -webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
            transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
  }
  40%,60%,80% {
    -webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
            transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
  }
  100% {
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
.tada {
  -webkit-animation-name:tada;
          animation-name:tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform:none;
            transform:none;
  }
  15% {
    -webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
            transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
  }
  30% {
    -webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);
            transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);
  }
  45% {
    -webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
            transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
  }
  60% {
    -webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);
            transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);
  }
  75% {
    -webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
            transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform:none;
            transform:none;
  }
  15% {
    -webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
            transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
  }
  30% {
    -webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);
            transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);
  }
  45% {
    -webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
            transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
  }
  60% {
    -webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);
            transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);
  }
  75% {
    -webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
            transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
.wobble {
  -webkit-animation-name:wobble;
          animation-name:wobble;
}
@-webkit-keyframes bounceIn {
  0%,20%,40%,60%,80%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  20% {
    -webkit-transform:scale3d(1.1,1.1,1.1);
            transform:scale3d(1.1,1.1,1.1);
  }
  40% {
    -webkit-transform:scale3d(.9,.9,.9);
            transform:scale3d(.9,.9,.9);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(1.03,1.03,1.03);
            transform:scale3d(1.03,1.03,1.03);
  }
  80% {
    -webkit-transform:scale3d(.97,.97,.97);
            transform:scale3d(.97,.97,.97);
  }
  100% {
    opacity:1;
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
@keyframes bounceIn {
  0%,20%,40%,60%,80%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  20% {
    -webkit-transform:scale3d(1.1,1.1,1.1);
            transform:scale3d(1.1,1.1,1.1);
  }
  40% {
    -webkit-transform:scale3d(.9,.9,.9);
            transform:scale3d(.9,.9,.9);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(1.03,1.03,1.03);
            transform:scale3d(1.03,1.03,1.03);
  }
  80% {
    -webkit-transform:scale3d(.97,.97,.97);
            transform:scale3d(.97,.97,.97);
  }
  100% {
    opacity:1;
    -webkit-transform:scale3d(1,1,1);
            transform:scale3d(1,1,1);
  }
}
.bounceIn {
  -webkit-animation-name:bounceIn;
          animation-name:bounceIn;
  -webkit-animation-duration:.75s;
          animation-duration:.75s;
}
@-webkit-keyframes bounceInDown {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-3000px,0);
            transform:translate3d(0,-3000px,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(0,25px,0);
            transform:translate3d(0,25px,0);
  }
  75% {
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0);
  }
  90% {
    -webkit-transform:translate3d(0,5px,0);
            transform:translate3d(0,5px,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes bounceInDown {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-3000px,0);
            transform:translate3d(0,-3000px,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(0,25px,0);
            transform:translate3d(0,25px,0);
  }
  75% {
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0);
  }
  90% {
    -webkit-transform:translate3d(0,5px,0);
            transform:translate3d(0,5px,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
.bounceInDown {
  -webkit-animation-name:bounceInDown;
          animation-name:bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(-3000px,0,0);
            transform:translate3d(-3000px,0,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(25px,0,0);
            transform:translate3d(25px,0,0);
  }
  75% {
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0);
  }
  90% {
    -webkit-transform:translate3d(5px,0,0);
            transform:translate3d(5px,0,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes bounceInLeft {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(-3000px,0,0);
            transform:translate3d(-3000px,0,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(25px,0,0);
            transform:translate3d(25px,0,0);
  }
  75% {
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0);
  }
  90% {
    -webkit-transform:translate3d(5px,0,0);
            transform:translate3d(5px,0,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
.bounceInLeft {
  -webkit-animation-name:bounceInLeft;
          animation-name:bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(3000px,0,0);
            transform:translate3d(3000px,0,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(-25px,0,0);
            transform:translate3d(-25px,0,0);
  }
  75% {
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0);
  }
  90% {
    -webkit-transform:translate3d(-5px,0,0);
            transform:translate3d(-5px,0,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes bounceInRight {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(3000px,0,0);
            transform:translate3d(3000px,0,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(-25px,0,0);
            transform:translate3d(-25px,0,0);
  }
  75% {
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0);
  }
  90% {
    -webkit-transform:translate3d(-5px,0,0);
            transform:translate3d(-5px,0,0);
  }
  100% {
    -webkit-transform:none;
            transform:none;
  }
}
.bounceInRight {
  -webkit-animation-name:bounceInRight;
          animation-name:bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,3000px,0);
            transform:translate3d(0,3000px,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0);
  }
  75% {
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0);
  }
  90% {
    -webkit-transform:translate3d(0,-5px,0);
            transform:translate3d(0,-5px,0);
  }
  100% {
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
}
@keyframes bounceInUp {
  0%,60%,75%,90%,100% {
    -webkit-transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
            transition-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);
  }
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,3000px,0);
            transform:translate3d(0,3000px,0);
  }
  60% {
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0);
  }
  75% {
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0);
  }
  90% {
    -webkit-transform:translate3d(0,-5px,0);
            transform:translate3d(0,-5px,0);
  }
  100% {
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
  }
}
.bounceInUp {
  -webkit-animation-name:bounceInUp;
          animation-name:bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform:scale3d(.9,.9,.9);
            transform:scale3d(.9,.9,.9);
  }
  50%,55% {
    opacity:1;
    -webkit-transform:scale3d(1.1,1.1,1.1);
            transform:scale3d(1.1,1.1,1.1);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform:scale3d(.9,.9,.9);
            transform:scale3d(.9,.9,.9);
  }
  50%,55% {
    opacity:1;
    -webkit-transform:scale3d(1.1,1.1,1.1);
            transform:scale3d(1.1,1.1,1.1);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
}
.bounceOut {
  -webkit-animation-name:bounceOut;
          animation-name:bounceOut;
  -webkit-animation-duration:.75s;
          animation-duration:.75s;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0);
  }
  40%,45% {
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0);
  }
  40%,45% {
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
}
.bounceOutDown {
  -webkit-animation-name:bounceOutDown;
          animation-name:bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity:1;
    -webkit-transform:translate3d(20px,0,0);
            transform:translate3d(20px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity:1;
    -webkit-transform:translate3d(20px,0,0);
            transform:translate3d(20px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
}
.bounceOutLeft {
  -webkit-animation-name:bounceOutLeft;
          animation-name:bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity:1;
    -webkit-transform:translate3d(-20px,0,0);
            transform:translate3d(-20px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity:1;
    -webkit-transform:translate3d(-20px,0,0);
            transform:translate3d(-20px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
}
.bounceOutRight {
  -webkit-animation-name:bounceOutRight;
          animation-name:bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0);
  }
  40%,45% {
    opacity:1;
    -webkit-transform:translate3d(0,20px,0);
            transform:translate3d(0,20px,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0);
  }
  40%,45% {
    opacity:1;
    -webkit-transform:translate3d(0,20px,0);
            transform:translate3d(0,20px,0);
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
}
.bounceOutUp {
  -webkit-animation-name:bounceOutUp;
          animation-name:bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
.fadeIn {
  -webkit-animation-name:fadeIn;
          animation-name:fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-100%,0);
            transform:translate3d(0,-100%,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-100%,0);
            transform:translate3d(0,-100%,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInDown {
  -webkit-animation-name:fadeInDown;
          animation-name:fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInDownBig {
  -webkit-animation-name:fadeInDownBig;
          animation-name:fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0);
            transform:translate3d(-100%,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0);
            transform:translate3d(-100%,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInLeft {
  -webkit-animation-name:fadeInLeft;
          animation-name:fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name:fadeInLeftBig;
          animation-name:fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0);
            transform:translate3d(100%,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0);
            transform:translate3d(100%,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInRight {
  -webkit-animation-name:fadeInRight;
          animation-name:fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInRightBig {
  -webkit-animation-name:fadeInRightBig;
          animation-name:fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,100%,0);
            transform:translate3d(0,100%,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,100%,0);
            transform:translate3d(0,100%,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInUp {
  -webkit-animation-name:fadeInUp;
          animation-name:fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.fadeInUpBig {
  -webkit-animation-name:fadeInUpBig;
          animation-name:fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0;}
}
@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0;}
}
.fadeOut {
  -webkit-animation-name:fadeOut;
          animation-name:fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,100%,0);
            transform:translate3d(0,100%,0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,100%,0);
            transform:translate3d(0,100%,0);
  }
}
.fadeOutDown {
  -webkit-animation-name:fadeOutDown;
          animation-name:fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name:fadeOutDownBig;
          animation-name:fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0);
            transform:translate3d(-100%,0,0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0);
            transform:translate3d(-100%,0,0);
  }
}
.fadeOutLeft {
  -webkit-animation-name:fadeOutLeft;
          animation-name:fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name:fadeOutLeftBig;
          animation-name:fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0);
            transform:translate3d(100%,0,0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0);
            transform:translate3d(100%,0,0);
  }
}
.fadeOutRight {
  -webkit-animation-name:fadeOutRight;
          animation-name:fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name:fadeOutRightBig;
          animation-name:fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-100%,0);
            transform:translate3d(0,-100%,0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-100%,0);
            transform:translate3d(0,-100%,0);
  }
}
.fadeOutUp {
  -webkit-animation-name:fadeOutUp;
          animation-name:fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name:fadeOutUpBig;
          animation-name:fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);
            transform:perspective(400px) rotate3d(0,1,0,-360deg);
    -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
  }
  40% {
    -webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
            transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
  }
  50% {
    -webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
            transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
  80% {
    -webkit-transform:perspective(400px) scale3d(.95,.95,.95);
            transform:perspective(400px) scale3d(.95,.95,.95);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);
            transform:perspective(400px) rotate3d(0,1,0,-360deg);
    -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
  }
  40% {
    -webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
            transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    -webkit-animation-timing-function:ease-out;
            animation-timing-function:ease-out;
  }
  50% {
    -webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
            transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
  80% {
    -webkit-transform:perspective(400px) scale3d(.95,.95,.95);
            transform:perspective(400px) scale3d(.95,.95,.95);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility:visible;
          backface-visibility:visible;
  -webkit-animation-name:flip;
          animation-name:flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);
            transform:perspective(400px) rotate3d(1,0,0,90deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
    opacity:0;
  }
  40% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);
            transform:perspective(400px) rotate3d(1,0,0,-20deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
  }
  60% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);
            transform:perspective(400px) rotate3d(1,0,0,10deg);
    opacity:1;
  }
  80% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);
            transform:perspective(400px) rotate3d(1,0,0,-5deg);
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);
            transform:perspective(400px) rotate3d(1,0,0,90deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
    opacity:0;
  }
  40% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);
            transform:perspective(400px) rotate3d(1,0,0,-20deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
  }
  60% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);
            transform:perspective(400px) rotate3d(1,0,0,10deg);
    opacity:1;
  }
  80% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);
            transform:perspective(400px) rotate3d(1,0,0,-5deg);
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility:visible !important;
          backface-visibility:visible !important;
  -webkit-animation-name:flipInX;
          animation-name:flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);
            transform:perspective(400px) rotate3d(0,1,0,90deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
    opacity:0;
  }
  40% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);
            transform:perspective(400px) rotate3d(0,1,0,-20deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
  }
  60% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);
            transform:perspective(400px) rotate3d(0,1,0,10deg);
    opacity:1;
  }
  80% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);
            transform:perspective(400px) rotate3d(0,1,0,-5deg);
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);
            transform:perspective(400px) rotate3d(0,1,0,90deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
    opacity:0;
  }
  40% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);
            transform:perspective(400px) rotate3d(0,1,0,-20deg);
    -webkit-transition-timing-function:ease-in;
            transition-timing-function:ease-in;
  }
  60% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);
            transform:perspective(400px) rotate3d(0,1,0,10deg);
    opacity:1;
  }
  80% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);
            transform:perspective(400px) rotate3d(0,1,0,-5deg);
  }
  100% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility:visible !important;
          backface-visibility:visible !important;
  -webkit-animation-name:flipInY;
          animation-name:flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
  30% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);
            transform:perspective(400px) rotate3d(1,0,0,-20deg);
    opacity:1;
  }
  100% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);
            transform:perspective(400px) rotate3d(1,0,0,90deg);
    opacity:0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
  30% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);
            transform:perspective(400px) rotate3d(1,0,0,-20deg);
    opacity:1;
  }
  100% {
    -webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);
            transform:perspective(400px) rotate3d(1,0,0,90deg);
    opacity:0;
  }
}
.flipOutX {
  -webkit-animation-name:flipOutX;
          animation-name:flipOutX;
  -webkit-animation-duration:.75s;
          animation-duration:.75s;
  -webkit-backface-visibility:visible !important;
          backface-visibility:visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
  30% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);
            transform:perspective(400px) rotate3d(0,1,0,-15deg);
    opacity:1;
  }
  100% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);
            transform:perspective(400px) rotate3d(0,1,0,90deg);
    opacity:0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform:perspective(400px);
            transform:perspective(400px);
  }
  30% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);
            transform:perspective(400px) rotate3d(0,1,0,-15deg);
    opacity:1;
  }
  100% {
    -webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);
            transform:perspective(400px) rotate3d(0,1,0,90deg);
    opacity:0;
  }
}
.flipOutY {
  -webkit-backface-visibility:visible !important;
          backface-visibility:visible !important;
  -webkit-animation-name:flipOutY;
          animation-name:flipOutY;
  -webkit-animation-duration:.75s;
          animation-duration:.75s;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform:translate3d(100%,0,0) skewX(-30deg);
            transform:translate3d(100%,0,0) skewX(-30deg);
    opacity:0;
  }
  60% {
    -webkit-transform:skewX(20deg);
            transform:skewX(20deg);
    opacity:1;
  }
  80% {
    -webkit-transform:skewX(-5deg);
            transform:skewX(-5deg);
    opacity:1;
  }
  100% {
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform:translate3d(100%,0,0) skewX(-30deg);
            transform:translate3d(100%,0,0) skewX(-30deg);
    opacity:0;
  }
  60% {
    -webkit-transform:skewX(20deg);
            transform:skewX(20deg);
    opacity:1;
  }
  80% {
    -webkit-transform:skewX(-5deg);
            transform:skewX(-5deg);
    opacity:1;
  }
  100% {
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
.lightSpeedIn {
  -webkit-animation-name:lightSpeedIn;
          animation-name:lightSpeedIn;
  -webkit-animation-timing-function:ease-out;
          animation-timing-function:ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity:1;
  }
  100% {
    -webkit-transform:translate3d(100%,0,0) skewX(30deg);
            transform:translate3d(100%,0,0) skewX(30deg);
    opacity:0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity:1;
  }
  100% {
    -webkit-transform:translate3d(100%,0,0) skewX(30deg);
            transform:translate3d(100%,0,0) skewX(30deg);
    opacity:0;
  }
}
.lightSpeedOut {
  -webkit-animation-name:lightSpeedOut;
          animation-name:lightSpeedOut;
  -webkit-animation-timing-function:ease-in;
          animation-timing-function:ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:rotate3d(0,0,1,-200deg);
            transform:rotate3d(0,0,1,-200deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:rotate3d(0,0,1,-200deg);
            transform:rotate3d(0,0,1,-200deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
.rotateIn {
  -webkit-animation-name:rotateIn;
          animation-name:rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name:rotateInDownLeft;
          animation-name:rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
.rotateInDownRight {
  -webkit-animation-name:rotateInDownRight;
          animation-name:rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name:rotateInUpLeft;
          animation-name:rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,-90deg);
            transform:rotate3d(0,0,1,-90deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,-90deg);
            transform:rotate3d(0,0,1,-90deg);
    opacity:0;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:none;
            transform:none;
    opacity:1;
  }
}
.rotateInUpRight {
  -webkit-animation-name:rotateInUpRight;
          animation-name:rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin:center;
            transform-origin:center;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:rotate3d(0,0,1,200deg);
            transform:rotate3d(0,0,1,200deg);
    opacity:0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin:center;
            transform-origin:center;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:center;
            transform-origin:center;
    -webkit-transform:rotate3d(0,0,1,200deg);
            transform:rotate3d(0,0,1,200deg);
    opacity:0;
  }
}
.rotateOut {
  -webkit-animation-name:rotateOut;
          animation-name:rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,45deg);
            transform:rotate3d(0,0,1,45deg);
    opacity:0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name:rotateOutDownLeft;
          animation-name:rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name:rotateOutDownRight;
          animation-name:rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:left bottom;
            transform-origin:left bottom;
    -webkit-transform:rotate3d(0,0,1,-45deg);
            transform:rotate3d(0,0,1,-45deg);
    opacity:0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name:rotateOutUpLeft;
          animation-name:rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,90deg);
            transform:rotate3d(0,0,1,90deg);
    opacity:0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    opacity:1;
  }
  100% {
    -webkit-transform-origin:right bottom;
            transform-origin:right bottom;
    -webkit-transform:rotate3d(0,0,1,90deg);
            transform:rotate3d(0,0,1,90deg);
    opacity:0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name:rotateOutUpRight;
          animation-name:rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
  }
  20%,60% {
    -webkit-transform:rotate3d(0,0,1,80deg);
            transform:rotate3d(0,0,1,80deg);
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
  }
  40%,80% {
    -webkit-transform:rotate3d(0,0,1,60deg);
            transform:rotate3d(0,0,1,60deg);
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
    opacity:1;
  }
  100% {
    -webkit-transform:translate3d(0,700px,0);
            transform:translate3d(0,700px,0);
    opacity:0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
  }
  20%,60% {
    -webkit-transform:rotate3d(0,0,1,80deg);
            transform:rotate3d(0,0,1,80deg);
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
  }
  40%,80% {
    -webkit-transform:rotate3d(0,0,1,60deg);
            transform:rotate3d(0,0,1,60deg);
    -webkit-transform-origin:top left;
            transform-origin:top left;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
    opacity:1;
  }
  100% {
    -webkit-transform:translate3d(0,700px,0);
            transform:translate3d(0,700px,0);
    opacity:0;
  }
}
.hinge {
  -webkit-animation-name:hinge;
          animation-name:hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
            transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
@keyframes rollIn {
  0% {
    opacity:0;
    -webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
            transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
  }
  100% {
    opacity:1;
    -webkit-transform:none;
            transform:none;
  }
}
.rollIn {
  -webkit-animation-name:rollIn;
          animation-name:rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);
            transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
    -webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);
            transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);
  }
}
.rollOut {
  -webkit-animation-name:rollOut;
          animation-name:rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  50% {
    opacity:1;
  }
}
@keyframes zoomIn {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  50% {
    opacity:1;
  }
}
.zoomIn {
  -webkit-animation-name:zoomIn;
          animation-name:zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomInDown {
  -webkit-animation-name:zoomInDown;
          animation-name:zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomInLeft {
  -webkit-animation-name:zoomInLeft;
          animation-name:zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);
            transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);
            transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomInRight {
  -webkit-animation-name:zoomInRight;
          animation-name:zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  60% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomInUp {
  -webkit-animation-name:zoomInUp;
          animation-name:zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity:1;
  }
  50% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  100% {
    opacity:0;
  }
}
@keyframes zoomOut {
  0% {
    opacity:1;
  }
  50% {
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3);
  }
  100% {
    opacity:0;
  }
}
.zoomOut {
  -webkit-animation-name:zoomOut;
          animation-name:zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomOutDown {
  -webkit-animation-name:zoomOutDown;
          animation-name:zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(42px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:scale(.1) translate3d(-2000px,0,0);
            transform:scale(.1) translate3d(-2000px,0,0);
    -webkit-transform-origin:left center;
            transform-origin:left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(42px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:scale(.1) translate3d(-2000px,0,0);
            transform:scale(.1) translate3d(-2000px,0,0);
    -webkit-transform-origin:left center;
            transform-origin:left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name:zoomOutLeft;
          animation-name:zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:scale(.1) translate3d(2000px,0,0);
            transform:scale(.1) translate3d(2000px,0,0);
    -webkit-transform-origin:right center;
            transform-origin:right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);
            transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);
  }
  100% {
    opacity:0;
    -webkit-transform:scale(.1) translate3d(2000px,0,0);
            transform:scale(.1) translate3d(2000px,0,0);
    -webkit-transform-origin:right center;
            transform-origin:right center;
  }
}
.zoomOutRight {
  -webkit-animation-name:zoomOutRight;
          animation-name:zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity:1;
    -webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
            animation-timing-function:cubic-bezier(0.550,0.055,0.675,0.190);
  }
  100% {
    opacity:0;
    -webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
    -webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
            animation-timing-function:cubic-bezier(0.175,0.885,0.320,1);
  }
}
.zoomOutUp {
  -webkit-animation-name:zoomOutUp;
          animation-name:zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform:translateY(-100%);
            transform:translateY(-100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform:translateY(-100%);
            transform:translateY(-100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name:slideInDown;
          animation-name:slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform:translateX(-100%);
            transform:translateX(-100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform:translateX(-100%);
            transform:translateX(-100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name:slideInLeft;
          animation-name:slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform:translateX(100%);
            transform:translateX(100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform:translateX(100%);
            transform:translateX(100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name:slideInRight;
          animation-name:slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform:translateY(100%);
            transform:translateY(100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform:translateY(100%);
            transform:translateY(100%);
    visibility:visible;
  }
  100% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name:slideInUp;
          animation-name:slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateY(100%);
            transform:translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateY(100%);
            transform:translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name:slideOutDown;
          animation-name:slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateX(-100%);
            transform:translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateX(-100%);
            transform:translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name:slideOutLeft;
          animation-name:slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateX(100%);
            transform:translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform:translateX(0);
            transform:translateX(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateX(100%);
            transform:translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name:slideOutRight;
          animation-name:slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateY(-100%);
            transform:translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform:translateY(0);
            transform:translateY(0);
  }
  100% {
    visibility:hidden;
    -webkit-transform:translateY(-100%);
            transform:translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name:slideOutUp;
          animation-name:slideOutUp;
}

/*delays*/
.delay250{
	-webkit-animation-delay:0.25s;
	-moz-animation-delay:0.25s;
	-o-animation-delay:0.25s;
	-ms-animation-delay:0.25s;
	animation-delay:0.25s;
}
.delay500{
	-webkit-animation-delay:0.5s;
	-moz-animation-delay:0.5s;
	-o-animation-delay:0.5s;
	-ms-animation-delay:0.5s;
	animation-delay:0.5s;
}
.delay750{
	-webkit-animation-delay:0.75s;
	-moz-animation-delay:0.75s;
	-o-animation-delay:0.75s;
	-ms-animation-delay:0.75s;
	animation-delay:0.75s;
}
.delay1000{
	-webkit-animation-delay:1s;
	-moz-animation-delay:1s;
	-o-animation-delay:1s;
	-ms-animation-delay:1s;
	animation-delay:1s;
}
.delay1250{
	-webkit-animation-delay:1.25s;
	-moz-animation-delay:1.25s;
	-o-animation-delay:1.25s;
	-ms-animation-delay:1.25s;
	animation-delay:1.25s;
}
.delay1500{
	-webkit-animation-delay:1.5s;
	-moz-animation-delay:1.5s;
	-o-animation-delay:1.5s;
	-ms-animation-delay:1.5s;
	animation-delay:1.5s;
}
.delay1750{
	-webkit-animation-delay:1.75s;
	-moz-animation-delay:1.75s;
	-o-animation-delay:1.75s;
	-ms-animation-delay:1.75s;
	animation-delay:1.75s;
}
.delay2000{
	-webkit-animation-delay:2s;
	-moz-animation-delay:2s;
	-o-animation-delay:2s;
	-ms-animation-delay:2s;
	animation-delay:2s;
}
.delay2250{
	-webkit-animation-delay:2.25s;
	-moz-animation-delay:2.25s;
	-o-animation-delay:2.25s;
	-ms-animation-delay:2.25s;
	animation-delay:2.25s;
}
.delay2500{
	-webkit-animation-delay:2.5s;
	-moz-animation-delay:2.5s;
	-o-animation-delay:2.5s;
	-ms-animation-delay:2.5s;
	animation-delay:2.5s;
}
.delay2750{
	-webkit-animation-delay:2.75s;
	-moz-animation-delay:2.75s;
	-o-animation-delay:2.75s;
	-ms-animation-delay:2.75s;
	animation-delay:2.75s;
}
.delay3000{
	-webkit-animation-delay:3s;
	-moz-animation-delay:3s;
	-o-animation-delay:3s;
	-ms-animation-delay:3s;
	animation-delay:3s;
}



/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
  -webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url("/Portals/_default/skins/Common/css/grabbing.png") 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}




/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
	background:transparent;
	color: #DDD;
	display:block;
	font-size:60px;
	height:60px;
	line-height:60px;
	margin: -30px 0 0;
	filter: Alpha(Opacity=30);/*IE7 fix*/
	opacity: 0.3;
	padding: 0;
	font-family:'FontAwesome';
	position:absolute;
	top:50%;
	zoom: 1;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
	left:10px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
	right:10px;
}
.multiSlide .owl-theme .owl-controls .owl-buttons div {
	color: #DDD;
	margin: -30px 0 0;
	text-shadow:none;
}
.multiSlide .owl-theme .owl-controls .owl-buttons .owl-prev {
	left:-25px;
}
.multiSlide .owl-theme .owl-controls .owl-buttons .owl-next {
	right:-25px;
}
@media (max-width:1179px) {
	.multiSlide .owl-theme .owl-controls .owl-buttons .owl-prev {
		left:-15px;
	}
	.multiSlide .owl-theme .owl-controls .owl-buttons .owl-next {
		right:-15px;
	}
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity:0.6;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url("/Portals/_default/skins/Common/images/AjaxLoader.gif") no-repeat center center

}





/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
  -webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from {
  -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}


/* Background Image */

.backgroundMe {
	background-position:center;
	background-size: cover;
	background-repeat: repeat-y;
}


/* Parallax */

.parallaxMe {
	background-attachment: fixed;
	background-position: right center;
	background-repeat: repeat-y;
	background-size: cover;
}

.bannerMain .parallaxMe {
	background-attachment: scroll; /* default no parallax */
	background-position: center 0px;
	background-repeat: no-repeat;
	background-size: 100%;
	height: 360px;
}

.parallaxImage {
	height: 0;
	overflow: hidden;
}

.bannerText {
/*	padding: 0 50% 0 0; */
/* jh
	padding: 0 35% 0 0;
*/
}

/* For desktops allow parallax, displaying just under sticky menu bar */
@media (max-resolution:96dpi) { /* not a perfect test for desktop */
	@media (min-width:1281px) {
		.bannerMain .parallaxMe {
			background-attachment: fixed;
			background-position: right -80px;
			background-size: 100%;
			height: 360px;
		}
	}
	@media (min-width:993px) and (max-width:1280px) {
		.bannerMain .parallaxMe {
			background-attachment: fixed;
			background-position: right 48px;
			background-size: 100%;
			height: 360px;
			}
	}
	@media (min-width:721px) and (max-width:992px) {
		.bannerMain .parallaxMe {
			background-attachment: fixed;
			background-position: right 42px;
			background-size: 100%;
			height: 360px;
		}
	}
	@media (min-width:641px) and (max-width:720px) {
		.bannerMain .parallaxMe {
			background-attachment: fixed;
			background-position: right 42px;
			background-size: auto 402px;
			height: 360px;
		}
	}
}
/* For mobile or narrow, don't use parallax */
@media (max-width:640px) {
	.parallaxMe {
		background-attachment: scroll;
		background-position: center;
		background-repeat: no-repeat;
	}
	.bannerMain .parallaxMe {
		/* Logo does not shrink */
		margin: 0 0 0 0;
		background-position: right center;
		background-size: cover;
		height: 260px;
	}
	/* jh
	.bannerText {
		padding: 0 20% 0 0;
	}
	*/
}


/* Posts */

.posts {
	list-style: none;
	margin: 0;
	padding: 0;
}
.posts li {
	background-size: cover;
	float: left;
	position: relative;
	overflow: hidden;
	width: 25%;
}
.posts li:hover div {
	left:0;
}
.posts li:hover img {
  -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.posts img {
	height: auto;
	width: 100%;
	position: relative;
	left: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.posts div {
	background-color: #f9f9f9;
	bottom: 0;
	left: 100%;
	padding: 20px 10px 20px 20px;
	position: absolute;
	top: 0;
	width: 100%;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	transition: 0.5s all;
	filter: alpha(opacity=90);
	opacity: 0.9;
}
.posts div a {
	bottom: 0;
	color: #fff;
	font-size: 16px;
	left: 0;
	height: 37px;
	padding-top:14px;
	padding-right:6px;
	position: absolute;
	text-align: center;
	width: 37px;
	-webkit-transition: 0.2s background-color;
	-moz-transition: 0.2s background-color;
	-o-transition: 0.2s background-color;
	transition: 0.2s background-color;
	background-color: #75CB19;
	-webkit-border-top-right-radius: 74px;
	-moz-border-radius-topright: 74px;
	border-top-right-radius: 74px;
}
 @media (max-width: 1023px) {
.posts li {
	width: 50%;
}
}
@media (max-width: 599px) {
.posts h4 {
	font-size:16px;
}
.posts li:hover div {
	left:0;
	margin-left:0;
}
.posts div {
	padding: 20px;
}
}
@media (max-width: 400px) {
.posts li {
	width: 100%;
}
}

/* Flipbox (an alternative to Posts in a Portfolio) */

.flipbox {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flipbox li {
  background-size: cover;
  float: left;
  position: relative;
  overflow: hidden;
  width: 25%;
}

.flipbox li:hover img {
  transform: rotateY(180deg);
}

.flipbox li:hover div {
  transform: rotateY(0deg);
}

.flipbox img {
  height: auto;
  width: 100%;
  position: relative;
  left: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flipbox div {
  background-color: #f9f9f9;
  bottom: 0;
  left: 0;
  padding: 20px 10px 20px 20px;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: 0.8s all;
  -moz-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

@media (max-width: 1023px) {
.flipbox li {
	width: 50%;
}
}
@media (max-width: 599px) {
.flipbox h4 {
	font-size:16px;
}
.flipbox li:hover div {
	left:0;
	margin-left:0;
}
.flipbox div {
	padding: 20px;
}
}
@media (max-width: 400px) {
.flipbox li {
	width: 100%;
}
}

/* Portfolio */
.filter {
	padding: 0 10px 0 0;
	text-align: center;
}
.filter li {
	display: inline-block;
	list-style: none;
	font-size: 14px;
}
.filter li + li:before {
	content: "|";
	padding:0 10px;
}
.filter a {
	background: none;
	border: none;
	outline: none;
	color:#222;
}
.filter a.selected:hover {
	cursor: default;
	color:#75CB19;
}
.filter a:hover {
	color:#75CB19;
}
.isotope {
	margin: 50px 0;
	padding: 0;
	width: 100%;
}
.isotope:before, .isotope:after {
	content: " ";
	display: table;
}
.isotope:after {
	clear: both;
}
.isotope li {
	display: block;
	float: none;
	width: 25%;
}
@media (max-width: 992px) {
.isotope li {
	width: 50%;
}
}
@media (max-width: 400px) {
.isotope li {
	width: 100%;
}
}
.classic.isotope {
	margin-left: -1.3%;
	width: 102.6%;
}
.classic.isotope header {
	overflow: hidden;
	position: relative;
}
.classic.isotope li {
	padding: 0 1.3% 25px 1.3%;
}
.classic.isotope li > h4 {
	padding: 14px 10px;
	margin:0;
	text-align: center;
	text-transform: none;
	border-bottom:3px solid #FFF;
}
.classic.isotope li:hover > h4 {
	border-bottom:3px solid #75CB19;
}
.random.isotope {
	margin-left: -15px;
	margin-right: -30px;
	width: auto;
}
@media (max-width: 768px) {
.random.isotope {
	margin-right: -15px;
}
}
.random.isotope li {
	height: 232px;
	width: 292px;
	padding: 15px;
}
@media (max-width: 1200px) {
.random.isotope li {
	width: 242px;
}
}
@media (max-width: 992px) {
.random.isotope li {
	width: 50%;
}
}
@media (max-width: 768px) {
.random.isotope li {
	width: 50%;
}
}
@media (max-width: 480px) {
.random.isotope li {
	width: 100%;
}
}
.random.isotope li .inner {
	height: 100%;
	overflow: hidden;
	position: relative;
}
.random.isotope li.width-2 {
	width: 584px;
}
@media (max-width: 1200px) {
.random.isotope li.width-2 {
	width: 484px;
}
}
@media (max-width: 992px) {
.random.isotope li.width-2 {
	width: 50%;
}
}
@media (max-width: 768px) {
.random.isotope li.width-2 {
	width: 50%;
}
}
@media (max-width: 480px) {
.random.isotope li.width-2 {
	width: 100%;
}
}
.random.isotope li.height-2 {
	height: 463px;
}
@media (max-width: 992px) {
.random.isotope li.height-2 {
	height: 232px;
}
}
@media (max-width: 480px) {
.random.isotope li.height-2 {
	height: 232px;
}
}
/* Portfolio single
---------------------------------------- */
.portfolio-single p {
	margin: 20px 0;
}
.portfolio-single h3 {
	font-size: 18px;
	margin-top: 40px;
}
.portfolio-single h3:first-child {
	margin-top: -5px;
}
.portfolio-single .btn:last-child {
	margin-top: 23px;
}
.portfolio-single .carousel + .row {
	margin-top: 53px;
}
.portfolio-single .carousel + .row h4 {
	font-size: 15px;
}
.portfolio-single .carousel + .row h4:first-child {
	margin-top: -6px;
}
.portfolio-single .carousel + .row .btn:last-child {
	margin-top: 6px;
}
/* Team */
.team-wrapper {
	margin: 0 -15px;
}
@media (max-width: 768px) {
.team-wrapper {
	margin: 0;
}
}
@media (max-width: 768px) {
.team-wrapper > * {
	margin-bottom: 20px;
	padding: 0;
	width: 100%;
}
}
@media (min-width: 480px) and (max-width: 768px) {
.team-wrapper > * {
	float: left;
	padding-left: .5%;
	padding-right: .5%;
	width: 50%;
}
}
.team {
	border-bottom: 1px solid #ececec;
	padding-bottom: 17px;
}
@media (max-width: 768px) {
.team img {
	width: 100%;
}
}
.team h2, .team h3 {
	font-size: 17px;
}
.team h3 {
	margin: 0 0 14px 0;
}
.team h2 {
	text-transform: none;
}
.team h2, .team em {
	display: block;
	text-align: center;
}
.team em {
	color: #a3a3a3;
	font-size: 13px;
	font-style: normal;
}
.team img {
	position: relative;
	top: 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.team header {
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}
.team header:hover img {
  -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.team header:hover .hover {
	bottom: -1px;
}
.team .hover {
	background-color: #f9f9f9;
	padding: 26px 22px 22px 22px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -120%;
	-webkit-transition: 0.4s all;
	-moz-transition: 0.4s all;
	-o-transition: 0.4s all;
	transition: 0.4s all;
	opacity:0.9;
}
@media (max-width: 1200px) {
.team .hover {
	padding: 16px 12px 12px 12px;
}
}
@media (min-width: 769px) and (max-width: 992px) {
.team .hover p {
	display: none;
}
}
.team .hover .social {
	margin-top: 22px;
	text-align: center;
}
.team .hover .social > a {
	font-size: 14px;
	margin: 0 10px;
}
/* Countdown */
.countdown {
	padding:0;
	margin:25px 0;
	list-style:none;
	width:100%;
	text-align:center;
}
.countdown > span {
	width:70px;
	height:94px;
	line-height:68px;
	text-align:center;
	background:#FFF;
	color:#999;
	border:1px solid #F2F2F2;
	font-size:35px;
	display:inline-block;
	position:relative;
	font-weight:bold;
	-webkit-box-shadow:inset 0px 5px 10px 0px rgba(0,0,0,0.15);
	-moz-box-shadow:inset 0px 5px 10px 0px rgba(0,0,0,0.15);
	box-shadow:inset 0px 5px 10px 0px rgba(0,0,0,0.15);
}
.countdown span b {
	font-size:11px;
	text-transform:uppercase;
	display:block;
	line-height:22px;
	font-weight:normal;
	background:#DDD;
	color:#FFF;
	width:60px;
	margin:0 4px;
}
.countdown span + span {
	margin-left:20px;
}
.countdown span + span:before {
	content:':';
	font-size:30px;
	font-weight:bold;
	position:absolute;
	top:-2px;
	left:-14px;
}
@media (max-width:400px) {
.countdown span {
	font-size: 27px;
	height: 71px;
	line-height: 50px;
	width: 55px;
}
.countdown span b {
	font-size: 10px;
	line-height:18px;
	width:47px;
	margin:0 3px;
}
}


label.control-label.af-slide.required:after {

    content: '*';

    color: red;

    }
	
	
	
	

/* DNN Action Form Bootstrap changes
/* fix the column layouts */
.c-form .form-group {
  display: flex;
  margin: 0 -15px
}
@media (max-width:767px) {
  .c-form .form-group {
    flex-direction: column
  }
  .c-form .form-group .field-container {
    max-width: 100% !important
  }
}
@media (min-width:768px) {
  .c-form .form-group {
    flex-direction: row
  }
}

/* give required fields a red asterisk */
.c-form .form-group label.control-label.required:after {
  content: "*";
  display: inline-block;
  color: #FF0000;
  margin-left: 5px;
  font-size: 15px;
  line-height: 1em;
  vertical-align: top
}

/* simple margins for paragraphs inside form groups */
.form-group p {
  margin-bottom: 5px
}

/* checkbox and radio button styles */
.checkbox, .radio {
  margin-left: 0 !important
}
.checkbox label, .radio label {
  position: relative;
  padding-left: 30px
}
.checkbox label input, .radio label input {
  position: absolute;
  left: 0;
  top: 6px
}
.checkbox label span, .radio label span {
  position: relative;
  top: 1px;
  font-size: 17px
}

/* fix "display horizontally" for inline radio buttons and checkboxes */
.radio-inline,
.checkbox-inline {
    display: inline-flex;
    margin-right: 20px;
}

.radio-inline input,
.checkbox-inline input {
    margin-right: 5px;
}

.btn:disabled {
		opacity: 1 !important;
}

/* convert glyphicon classes to FontAwesome 5 icons */

.glyphicon::before {
	display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.glyphicon-chevron-left::before {
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f104";
}

.glyphicon-chevron-right::before {
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f105";
}

.glyphicon-info-sign::before {
	font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f059";
}

/* give popovers style */
.popupOnHover {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

/* fix date and time picker popup */
.fix-date-time .container-btn-vertical-center .btn.btn-default {
	padding: 0 20px;
	box-shadow: none;
	line-height: 42px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.datetime-picker-dropdown li.ng-scope .btn-group .btn {
	border: none;
	box-shadow: none;
}

/* fix file upload table */

.fileupload-buttonbar + table.table.files {
    margin-bottom: 0 !important;
    font-size: 13px;
}
.fileupload-buttonbar + table.table.files td {
    padding: 15px !important;
    border: none !important;
}

.fileupload-buttonbar + table.table.files td button.cancel {
    padding-left: 20px;
    padding-right: 20px;
    background: #d9534f;
    border-color: #d9534f;
    font-weight: 400 !important;
    font-size: 13px !important;
}
.fileupload-buttonbar + table.table.files td button.cancel:hover {
    background: #C03A36;
    border-color: #C03A36;
}

.fileupload-buttonbar .progress {
    margin-bottom: 0 !important;
}

/* End of DNN Boostrap changes






/* Bootstrap Add Ons &  */
/* new breaking point */
@media (max-width:640px) {
	.col-xxs-1,.col-xxs-2,.col-xxs-3,.col-xxs-4,.col-xxs-5,.col-xxs-6,.col-xxs-7,.col-xxs-8,.col-xxs-9,.col-xxs-10,.col-xxs-11,.col-xxs-12 {
	  position: relative;
	  min-height: 1px;
	  padding-left: 15px;
	  padding-right: 15px;
	}
	.col-xxs-1, .col-xxs-2, .col-xxs-3, .col-xxs-4, .col-xxs-5, .col-xxs-6, .col-xxs-7, .col-xxs-8, .col-xxs-9, .col-xxs-10, .col-xxs-11 {
	  float: left;
	}
	.col-xxs-12 {
	  width: 100%;
	}
	.col-xxs-11 {
	  width: 91.66666666666666%;
	}
	.col-xxs-10 {
	  width: 83.33333333333334%;
	}
	.col-xxs-9 {
	  width: 75%;
	}
	.col-xxs-8 {
	  width: 66.66666666666666%;
	}
	.col-xxs-7 {
	  width: 58.333333333333336%;
	}
	.col-xxs-6 {
	  width: 50%;
	}
	.col-xxs-5 {
	  width: 41.66666666666667%;
	}
	.col-xxs-4 {
	  width: 33.33333333333333%;
	}
	.col-xxs-3 {
	  width: 25%;
	}
	.col-xxs-2 {
	  width: 16.666666666666664%;
	}
	.col-xxs-1 {
	  width: 8.333333333333332%;
	}
	.col-xxs-pull-12 {
	  right: 100%;
	}
	.col-xxs-pull-11 {
	  right: 91.66666666666666%;
	}
	.col-xxs-pull-10 {
	  right: 83.33333333333334%;
	}
	.col-xxs-pull-9 {
	  right: 75%;
	}
	.col-xxs-pull-8 {
	  right: 66.66666666666666%;
	}
	.col-xxs-pull-7 {
	  right: 58.333333333333336%;
	}
	.col-xxs-pull-6 {
	  right: 50%;
	}
	.col-xxs-pull-5 {
	  right: 41.66666666666667%;
	}
	.col-xxs-pull-4 {
	  right: 33.33333333333333%;
	}
	.col-xxs-pull-3 {
	  right: 25%;
	}
	.col-xxs-pull-2 {
	  right: 16.666666666666664%;
	}
	.col-xxs-pull-1 {
	  right: 8.333333333333332%;
	}
	.col-xxs-pull-0 {
	  right: 0%;
	}
	.col-xxs-push-12 {
	  left: 100%;
	}
	.col-xxs-push-11 {
	  left: 91.66666666666666%;
	}
	.col-xxs-push-10 {
	  left: 83.33333333333334%;
	}
	.col-xxs-push-9 {
	  left: 75%;
	}
	.col-xxs-push-8 {
	  left: 66.66666666666666%;
	}
	.col-xxs-push-7 {
	  left: 58.333333333333336%;
	}
	.col-xxs-push-6 {
	  left: 50%;
	}
	.col-xxs-push-5 {
	  left: 41.66666666666667%;
	}
	.col-xxs-push-4 {
	  left: 33.33333333333333%;
	}
	.col-xxs-push-3 {
	  left: 25%;
	}
	.col-xxs-push-2 {
	  left: 16.666666666666664%;
	}
	.col-xxs-push-1 {
	  left: 8.333333333333332%;
	}
	.col-xxs-push-0 {
	  left: 0%;
	}
	.col-xxs-offset-12 {
	  margin-left: 100%;
	}
	.col-xxs-offset-11 {
	  margin-left: 91.66666666666666%;
	}
	.col-xxs-offset-10 {
	  margin-left: 83.33333333333334%;
	}
	.col-xxs-offset-9 {
	  margin-left: 75%;
	}
	.col-xxs-offset-8 {
	  margin-left: 66.66666666666666%;
	}
	.col-xxs-offset-7 {
	  margin-left: 58.333333333333336%;
	}
	.col-xxs-offset-6 {
	  margin-left: 50%;
	}
	.col-xxs-offset-5 {
	  margin-left: 41.66666666666667%;
	}
	.col-xxs-offset-4 {
	  margin-left: 33.33333333333333%;
	}
	.col-xxs-offset-3 {
	  margin-left: 25%;
	}
	.col-xxs-offset-2 {
	  margin-left: 16.666666666666664%;
	}
	.col-xxs-offset-1 {
	  margin-left: 8.333333333333332%;
	}
	.col-xxs-offset-0 {
	  margin-left: 0%;
	}

}

.visible-xxs, .visible-xs, .visible-sm, .visible-md, .visible-lg {
	display:none!important
}
@media (min-width:641px) and (max-width:767px) {
.visible-xs {
	display:block!important
}
table.visible-xs {
	display:table
}
tr.visible-xs {
	display:table-row!important
}
th.visible-xs, td.visible-xs {
	display:table-cell!important
}
}
@media (max-width:640px) { /* this has to come after the xs entry */
.visible-xxs {
	display:block!important
}
table.visible-xxs {
	display:table
}
tr.visible-xxs {
	display:table-row!important
}
th.visible-xxs, td.visible-xxs {
	display:table-cell!important
}
}
@media (min-width:768px) and (max-width:991px) {
.visible-sm {
	display:block!important
}
table.visible-sm {
	display:table
}
tr.visible-sm {
	display:table-row!important
}
th.visible-sm, td.visible-sm {
	display:table-cell!important
}
}
@media (min-width:992px) and (max-width:1199px) {
.visible-md {
	display:block!important
}
table.visible-md {
	display:table
}
tr.visible-md {
	display:table-row!important
}
th.visible-md, td.visible-md {
	display:table-cell!important
}
}
@media (min-width:1200px) {
.visible-lg {
	display:block!important
}
table.visible-lg {
	display:table
}
tr.visible-lg {
	display:table-row!important
}
th.visible-lg, td.visible-lg {
	display:table-cell!important
}
}

@media (min-width:641px) and (max-width:767px) {
.hidden-xs {
	display:none!important
}
}
@media (max-width:640px) { /* this has to come after the xs entry */
.hidden-xxs {
	display:none!important
}
}
@media (min-width:768px) and (max-width:991px) {
.hidden-sm {
	display:none!important
}
}
@media (min-width:992px) and (max-width:1199px) {
.hidden-md {
	display:none!important
}
}
@media (min-width:1200px) {
.hidden-lg {
	display:none!important
}
}
@media print {
.visible-print {
	display:block!important
}
table.visible-print {
	display:table
}
tr.visible-print {
	display:table-row!important
}
th.visible-print, td.visible-print {
	display:table-cell!important
}
}
@media print {
.hidden-print {
	display:none!important
}
}

/* custom inclusion of right, left and below tabs */
.tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left > .nav-tabs {
	border-bottom: 0;
	position:relative;
	z-index:998;
}
.tab-content > .tab-pane, .pill-content > .pill-pane {
	display: none;
}
.tab-content > .active, .pill-content > .active {
	display: block;
}
.tabs-below > .nav-tabs {
	border-top: 1px solid #EEE;
}
.tabs-below > .nav-tabs > li {
	margin-top: -1px;
	margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
	border-top-color: #EEE;
	border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active > a, .tabs-below > .nav-tabs > .active > a:hover, .tabs-below > .nav-tabs > .active > a:focus {
	border-color: transparent #EEE #EEE #EEE;
}
.tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li {
	float: none;
}
.tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a {
	min-width: 74px;
	margin-right: 0;
	margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
	float: left;
	margin-right: 0;
	border-right: 1px solid #EEE;
}
.tabs-left > .nav-tabs > li > a {
	margin-right: -1px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
	text-align: right;
}
.tabs-left > .nav-tabs > li > a:hover, .tabs-left > .nav-tabs > li > a:focus {
	border-color: #EEE #EEE #EEE #EEE;
	background:#FAFAFA;
}
.tabs-left > .nav-tabs .active > a, .tabs-left > .nav-tabs .active > a:hover, .tabs-left > .nav-tabs .active > a:focus {
	border-color: #EEE transparent #EEE #EEE;
*	border-right-color: #FFF;
	background:#FFF;
}
.tabs-right > .nav-tabs {
	float: right;
	margin-left: 0;
	border-left: 1px solid #EEE;
}
.tabs-right > .nav-tabs > li > a {
	margin-left: -1px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover, .tabs-right > .nav-tabs > li > a:focus {
	border-color: #EEE #EEE #EEE #EEE;
	background:#FAFAFA;
}
.tabs-right > .nav-tabs .active > a, .tabs-right > .nav-tabs .active > a:hover, .tabs-right > .nav-tabs .active > a:focus {
	border-color: #EEE #EEE #EEE transparent;
*	border-left-color: #FFF;
	background:#FFF;
}

/* Tab Content */
.tabs-left .tab-content {
	padding-left: 25px !important;
	padding-right: 0 !important;
}
.tabs-right .tab-content {
	padding-left: 0 !important;
	padding-right: 25px !important;
}

@media (max-width:767px) {
	.tabs-left > .nav-tabs,  .tabs-right > .nav-tabs {
		float: none;
		margin:0 0 20px;
		border:0;
	}
	.tabs-left > .nav-tabs > li > a,  .tabs-right > .nav-tabs > li > a {
		margin:0 -1px 3px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		border: 1px solid #EEE;
		text-align: center;
	}
	.tabs-left > .nav-tabs .active > a, .tabs-left > .nav-tabs .active > a:hover, .tabs-left > .nav-tabs .active > a:focus,  
	.tabs-right > .nav-tabs .active > a, .tabs-right > .nav-tabs .active > a:hover, .tabs-right > .nav-tabs .active > a:focus {
		border: 1px solid #EEE;
		background:#F9F9F9;
	}
}


/* Collapse */
.tabbable .panel-default {
  border:0;
}
.tabbable .panel-heading {
  background: #F9F9F9;
  border:1px solid #F2F2F2;
  color: #666;
  padding:0;
}
.tabbable .panel-title {
  font-size: inherit;
}
.tabbable .panel-heading a {
  padding:10px 15px;
  display:block;
}
.tabbable .panel-default > .panel-heading + .panel-collapse .panel-body {
  border:0;
  padding:20px 0 10px;
}
	


/* EQ various edits throughout file */
/* Regular*/
/@font-face {
	font-family:'FontAwesome';
	  font-display: auto;
	src:url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.eot?v=4.3.0");
	src:url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format('embedded-opentype'),
	url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.woff2?v=4.3.0") format('woff2'),
	url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.woff?v=4.3.0") format('woff'),
	url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.ttf?v=4.3.0") format('truetype'),
	url("/Portals/_default/skins/Common/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format('svg');
	font-weight:normal;
	font-style:normal
}

@font-face {
  font-family: FSMatthew;
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Regular.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Regular'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Regular.eot?#iefix&v=4.3.0") format('embedded-opentype'),url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Regular.woff") format('woff');
}

@font-face {
  font-family: 'FSMatthew Medium Italic';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-MediumItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Regular'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-MediumItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-MediumItalic.woff") format('woff');
}

@font-face {
  font-family: 'FSMatthew Medium';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Medium.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Medium'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Medium.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Medium.woff") format('woff');
}

@font-face {
  font-family: 'FSMatthew Light Italic';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-LightItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-LightItalic'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-LightItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-LightItalic.woff") format('woff');
}

@font-face {
  font-family: 'FSMatthew Light';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Light.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Light'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Light.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Light.woff") format('woff');
}
 
@font-face {
  font-family: 'FSMatthew Italic';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Italic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Italic'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Italic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Italic.woff") format('woff');
}
 
@font-face {
  font-family: 'FSMatthew Bold Italic';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-BoldItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-BoldItalic'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-BoldItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-BoldItalic.woff") format('woff');
}
 
@font-face {
  font-family: 'FSMatthew Bold';
  font-display: auto;
  src:url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Bold.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Bold'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Bold.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/skins/Common/fonts/FSMatthewWeb-Bold.woff") format('woff');
}
 
.FSMatthew {
 font-size:14px;
 font-family: 'FSMatthew';
}

.FSMatthew14 {
 font-size:14px;
 font-family: 'FSMatthew';
 color:#272780;
}

.FSMatthewLight {
 font-size:14px;
 font-family: 'FSMatthew Light';
 color:#272780;
 padding:10px 0;
}

.FSMatthewMedium {
 font-size:18px;
 font-family: 'FSMatthew Medium';
 color:#272780;
}

.FSMatthewRegular14 {
 font-size:14px;
 font-family: 'FSMatthew';
}

.FSMatthewRegular12 {
 font-size:12px;
 font-family: 'FSMatthew';
}

.FSMatthewMedium32 {
 font-size:32px;
 font-family: 'FSMatthew Medium';
 color:#272780;
}

.FSMatthewBold12 {
 font-size:12px;
 font-family: 'FSMatthew Medium';
 font-weight:bold;
}

.FSMatthewBold14 {
 font-size:14px;
 font-family: 'FSMatthew Medium';
 font-weight:bold;
}

.FSMatthewMedium100 {
 font-size:100px;
 font-family: 'FSMatthew Medium';
 color:#272780;
 line-height:normal;
}

.FSMatthewMedium50 {
 font-size:50px;
 font-family: 'FSMatthew Medium';
 color:#272780;
}

html {
	overflow-y:scroll;
	height:100%;
	  scroll-behavior: smooth;
}

#Body {
	margin:0;
	padding:0;
	background:#FFF;
}

body {
	margin:0;
	padding:0;
	background:#FFF;
	height:100%;
	font-family:FSMatthew;
	 
}

#Form {
	height:100%;
}

* {
	margin:0;
	padding:0;
	outline:none;
	-webkit-font-smoothing:subpixel-antialiased;
	font-smoothing:subpixel-antialiased;
	text-rendering:optimizeLegibility;
}

.Normal, .NormalDisabled, .NormalDeleted {
	font-size:14px;
}

/* Main Container Width and styles */
.BGTable {
	padding:0;
	background:#FFF;
}

.siteWidth {
	width:1170px;
	max-width:100%;
	margin:0 auto;
	padding:0 25px;
}

#CloseCookiesAlertPanel {
	cursor:pointer;
	cursor:hand;
}

#CookiesAlertPanel {
	color:#FFF; background-color:#0E0C26; padding:10px; margin:auto; text-align:center; width:100%; z-index:1000;
}

.contentMain .siteWidth, .greyMain .siteWidth, .lowerMain .siteWidth, .bottomMain .siteWidth, .footerMain .siteWidth, footer .siteWidth {
	padding:0;
}

.splashPage, .bannerMainFull {
	width:100%;
	height:100%;
}

.headerMain .siteWidth {
	position:relative;
}

.headerMain {
	/*min-height:54px;*/
	padding:0;
	/* border:1px solid #A09FAC; */
	border-width:1px 0;
	width:100%;
	background:#FFF;
	z-index:999;
	position:relative;
	background-color: #F7F7F8;
}

.is-sticky .headerMain {
    -webkit-box-shadow:0px 3px 8px 3px rgba(0,0,0,0.1);
	-moz-box-shadow:0px 3px 8px 3px rgba(0,0,0,0.1);
	box-shadow:0px 3px 8px 3px rgba(0,0,0,0.1);
	min-height:40px;
}

.showControlBar .is-sticky .headerMain {
	margin-top:53px;
}

.logoMain {
	margin:0;
	padding:11px 0;
	height:68px;
	float:left;
	max-width:100%;
}

.logoMain img {
	margin:0;
	padding:0;
	max-width:100%;
	padding:0;
	/* transition:all 0.3s ease-out 0s; */
	transition:all 0.7s ease-out 0s;
	height:44px; /* 68 - 11 * 2 = 44 (native logo resolution) */
}

.topMain .siteWidth {
	position:relative;
}

.topMain {
	min-height:41px;
	width:100%;
	overflow:hidden;
	background-color: #272780;
}

.menuMain {
	position:absolute;
	height:42px;
	margin:-21px 15px 0 0;
	top:50%;
	right:0;
}

/*
#mobileMenu.collapse{
    display: block;
	height: 0;
    overflow: hidden;
    transition: all 0.7s ease-out 0s;
}
#mobileMenu.collapse.in{
	display: block;
    height: 300px;
}
*/

.menuMainInner {
	display:block;
	float:right;
	height:36px;
	margin:3px 0;
	padding:0;
	vertical-align:top;
}

.mobileMenuMain {
	padding:0;
	float:right;
	display:inline-block;
	margin:6px 0 0 6px;
}

a.menuButton {
	color:#272780;
	display:block;
	font-size:14px;
	height:30px;
	line-height:30px;
	padding:0;
	text-align:center;
	width:36px;
	vertical-align:top;
}

/* Content Panes */
.myPane {
	padding:0;
}

.ContentPane {
	width:auto;
}

.TopBarPane {
	float:left;
}

/* Pane Wrappers */
.contentMain {
	padding:0;
	margin:0;
	min-height:150px;
}

.adminPage .contentMain {
	min-height:600px;
}

.bannerMain {
}

.greyMain {
	background:#F7F7F8;
	
}

.greyMain.open{
	height:auto;
}

.NoPad, .noPad, nopad {
	padding:0 !important;
}

.DNNEmptyPane {
	display:none!important;
}

/* Font style */
body, html, table, th, td, div, p, li, blockquote, h1, h2, h3, h4, h5, h6, .Normal {
	color:#57575F;
/*	font-size:15px; */
	font-size:1em;	
	line-height:135%;
	text-decoration:none;
	font-family:FSMatthew ,Arial;
	font-weight:normal;
	letter-spacing:0em;
}

p {
	margin:0;
	padding:0 0 20px 0;
}

p:last-child {
	padding-bottom:0;
}

td {
	text-align:left;
	vertical-align:top;
}

ul {
	margin:0 0 20px 20px;
	list-style: disc;
}

img {
	border:none;
	outline:none;
	max-width:100%;
	height:auto;
}

.mediaWrapper {
	position:relative;
	padding-bottom:56.25%;
	height:0;
}

.mediaWrapper iframe, .mediaWrapper embed, .mediaWrapper object {
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
}

iframe {
	display:block;
}

* {
	outline:none !important;
}

br {
	margin:0;
	padding:0;
	height:1px;
}

hr {
	border:0;
	border-bottom:1px dotted #E5E5E5 !important;
	clear:both;
	padding:0;
	margin:20px 0;
}

/* Default link syle */
a, a:link, a:visited, a:active {
	color:#272780;
	text-decoration:none;
	outline:none;
	cursor:pointer;
	-webkit-transition:all 0.4s linear;
	-moz-transition:all 0.4s linear;
	-o-transition:all 0.4s linear;
	transition:all 0.4s linear;
}

a:hover {
	color:#BBB;
	text-decoration:none;
}

.NormalBold {
	color:inherit;
	font-weight:bold;
}

/* Headings */
H1, .h1 {
	font-family:'FSMatthew';
	font-weight:normal;
	color:#272780;
	font-size:45px;
	margin:0 0 0.5em 0;
	line-height:100%;
	letter-spacing:-0.015em;
}

H2, .h2 {
	font-family:"FSMatthew Medium";
	font-weight:normal;
	color:#272780;
	font-size:32px;
	margin:0 0 0.5em 0;
	line-height:100%;
	letter-spacing:-0.015em;
}

H3, .h3 {
	font-family:"FSMatthew Medium" ;
	font-weight:normal;
	color:#272780;
	font-size:22px;
	margin:0 0 10px;
	line-height:100%;
	letter-spacing:-0.015em;
}

H4, .h4 {
    font-family:"FSMatthew Medium";	 
	color:#272780;
	font-size:20px;
	margin:0 0 10px;
	line-height:120%;
	letter-spacing:-0.015em;
}

H5, .h5 {
    font-family:'FSMatthew Medium';
	color:#272780;
	font-size:18px;
	margin:0 0 10px;
	line-height:120%;
	letter-spacing:-0.015em;
}

H6, .h6 {
	font-family:'FSMatthew Medium';
	font-weight:normal;
	color:#272780;
	font-size:16px;
	margin:0 0 10px;
	line-height:120%;
	letter-spacing:-0.015em;
}

small {
	font-size:0.8em;
}

.NoPadding {
	padding:0!important;
}

/* Module Classes */
.Head {
	color:#7E7E7E;
	font-size:15px;
	font-weight:bold;
	text-decoration:none;
}

a.Head:Link, a.Head:Visited, a.Head:Active {
	color:#272780;
	font-size:15px;
	font-weight:bold;
	text-decoration:none;
}

a.Head:Hover {
	color:#272780;
	text-decoration:none;
}

/* SubHead */
.SubHead {
	color:#7E7E7E;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}

a.SubHead:Link, a.SubHead:Visited, a.SubHead:Active {
	color:#272780;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}

a.SubHead:Hover {
	color:#272780;
	text-decoration:none;
}

/* Module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
	color:#7E7E7E;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
	font-size:14px;
}

a.SubSubHead:Link, a.SubSubHead:Visited, a.SubSubHead:Active {
	color:#272780;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}

a.SubSubHead:Hover {
	color:#272780;
	text-decoration:none;
}

/* Text style for skin objects */
.SkinObject {
	color:#7E7E7E;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
}

a.SkinObject:Link, a.SkinObject:Visited, a.SkinObject:Active {
	color:#272780;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
}

a.SkinObject:Hover {
	color:#272780;
	text-decoration:none;
}

/*=====================================================================*/
/* Input and Other Admin Site Styles                                   */
/*=====================================================================*/

/* Normal Text Box */
.NormalTextBox {
	font-family:FSMatthew, Georgia, "Times New Roman", Times, serif;
	color:#999;
	font-size:14px;
	font-weight:normal;
	vertical-align:middle;
	border:1px solid #EEE;
}

input[type="text"], select, textarea, input[type="email"], input[type="search"], input[type="password"] {
	font-family:FSMatthew, Georgia, "Times New Roman", Times, serif;
	border:1px solid #57575F;
	line-height:100%;
	padding:4px;
	margin-bottom:10px;
	vertical-align:top;
}

select option, .dnnFormItem select option {
	text-indent:7px;
}

select::-ms-expand, .dnnFormItem select::-ms-expand {
	display:none;
}

/* Admin link styles */
a.CommandButton:link, a.CommandButton:visited, a.CommandButton:active {
	color:#272780;
}

a.CommandButton:hover {
	color:#666;
}

/* button style for standard HTML buttons */
.StandardButton, a.StandardButton:Link, a.StandardButton:Visited, a.StandardButton:Active {
	color:#272780;
}

a.StandardButton:Hover {
	color:#666;
}

/* Skin Tokens */

/* Login Pane */
.loginMain {
	float:right;
	/* EQ larger font */
	font-size:16px;
	/* EQ end */
	line-height:0;
}

.loginMain a, .loginMain a:link, .loginMain a:active, .loginMain a:visited{
	color: white;line-height: 40px;
}

.loginGroup, .registerGroup, .registerGroup li {
	zoom:1;
	display:inline-block;
 	display:inline;
	height:40px;
	vertical-align:text-top;
}

.loginGroup {
	padding-left:10px;
}

.registerGroup strong {
	font-weight:normal;
}

ul.buttonGroup {
	list-style:none;
	margin:0;
	padding:0;
}

ul.buttonGroup li {
	height:35px;
	overflow:hidden;
	position:relative;
}

li.userDisplayName {
	float:right;
	margin:0 0 0 -10px;
}

li.userMessages, li.userNotifications {
	width:35px;
	margin:0;
}

li.userMessages a, li.userNotifications a:before {
	color:#C9C9C9;
}

li.userMessages a:hover, li.userNotifications a:hover {
	color:#999;
}

li.userMessages a:before, li.userNotifications a:before {
	width:40px;
	font-family:'FontAwesome';
	font-size:14px;
	text-align:center;
	height:40px;
	line-height:40px;
	overflow:hidden;
}

li.userMessages a:before {
	content:'ïƒ ';
}

li.userNotifications a:before {
	content:'ï€¤';
}

li.userMessages a > span, li.userNotifications a > span {
	background:#272780;
	color:#FFF;
	font-size:9px;
	font-weight:bold;
	height:14px;
	line-height:14px;
	min-width:14px;
	padding:0 2px 0 3px;
	z-index:999;
	position:absolute;
	right:5px;
	text-align:center;
	top:5px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}

li.userProfileImg {
}

li.userProfileImg a img {
	height:20px;
	width:auto;
	border:2px solid #F2F2F2;
	margin:-8px 5px 0 -5px;
}

li.userProfileImg a:hover img {
	border:2px solid #FFF;
}

a.Logintxt, .registerGroup a {
	font-size:14px;
	color:#A9A9A9;
	line-height:40px;
	padding:0 5px;
}

a.Logintxt:hover, .registerGroup a:hover {
	color:#000;
	text-decoration:none;
}

/* Breadcrumb Pane */
.breadcrumbMain {
/*	font-size:0; */
	background:#FFF;
/*	border-bottom:1px solid #F2F2F2; */
}

.breadcrumbMain .siteWidth {
}

.breadLeft {
	float:left;
	min-height:30px;
	padding:15px 0 15px;
	display: none;
	/* display:block; */
}

.breadRight {
	float:right;
	min-height:30px;
	padding:10px 0 10px;
	display:block;
}

.breadcrumbMain h3 {
	font-size:28px;
	line-height:28px;
	display:block;
	padding:0;
	color:#222;
}

a.breadcrumbText {
	color:#222;
	font-size:14px;
	font-weight:normal;
	line-height:20px;
	display:inline-block;
	margin: 0 2px;	
}

a:hover.breadcrumbText:last-child {
	color:#272780;
}

a.breadcrumbText:hover {
	color:#272780;
}

/* Search Pane */
.searchMain {
	height:40px;
	margin:0 8px 0 0;
	padding:2px;
	text-align:right;
	display:none;
	position:absolute;
	right:0;
	top:0;
}

.searchMain .searchInputContainer {
	margin:0 !important;
}

.searchMain .NormalTextBox {
	height:35px;
	line-height:35px;
	width:166px;
	margin:0 0 0;
	padding:0 32px 0 6px;
	border:1px solid #F2F2F2;
	vertical-align:top;
	vertical-align: middle;
	background:#FFF;
	font-size:15px;
}

.searchMain .SearchInput {
	color:#A9A9A9;
	display:inline-block;
	vertical-align:top;
	line-height:35px;
	text-align:center;
	width:35px;
	margin:0 2px;
	font-size:14px;
}

.searchMain .SearchInput:hover {
	color:#222;
	background:#F2F2F2;
}

.searchInputContainer a.dnnSearchBoxClearText.dnnShow {
	position:absolute;
	top:4px;
}

ul.searchSkinObjectPreview {
	border:1px solid #F2F2F2 !important;
	border-bottom:0 !important;
	border-top:3px solid #272780 !important;
	right:-41px !important;
	top:39px !important;
}

ul.searchSkinObjectPreview > li {
	border-top:0 !important;
	border-bottom:1px solid #F2F2F2;
	padding:6px !important;
}

ul.searchSkinObjectPreview > li:hover {
	background-color:#F9F9F9 !important;
}

a.searchButton {
	height:36px;
	margin:6px 0 0 0;
	display:block;
	padding:0;
	width:30px;
	text-align:center;
	color:#F7F7F8;
	line-height:30px;
	font-size:14px;
	float:right;
	/* EQ search feature not ready yet, so hide for now */
	display:none;
	/* EQ end */
}

a.searchButton i {
	line-height:30px;
}

a.searchButton:hover {
	color:#272780;
}

a.searchButtonClose {
	text-align:center;
	line-height:35px;
	height:35px;
	width:35px;
	color:#A9A9A9;
	margin:0;
	display: inline-block;
	vertical-align:top;
}

a.searchButtonClose:hover {
	color:#222;
	background:#F2F2F2;
}

/* Banner text */
.bannerText {
}

/* Carousel banner (shows only RH half on phones) */
.carousel-banner {
    overflow:hidden;
}

.carousel-banner img {
    max-width: 100%;
    width: 100%;
}

@media only screen and (max-width: 768px) {
.carousel-banner img {
    max-width: 200%;
    width: 200%;
    margin: 0 0 0 -100%;
}
}

.carousel-caption {
    opacity: 1; position: absolute; top: 10%; left: 5%; width: 40%;
}

.carousel-control {
    display:none;
}

/* Footer */
.footerMain {
	background:#313131;
}

.footerMain * {
	color:#fff;
}

.footerMain th, .footerMain td, .footerMain div, .footerMain p, .footerMain li, .footerMain blockquote, .footerMain .Normal {
	font-size:14px;
}

.footerMain a {
	color:#FAFAFF;
}

.footerMain a:hover {
	color:#DDD;
}

.Footer {
	padding:10px 0;
	background:#2C2C2C;
	text-align:center;
}

.Footertxt, a.Footertxt {
	font-size:14px;
	color:#FAFAFF;
	white-space:nowrap;
	padding:0 10px;
}

a.Footertxt:hover {
	text-decoration:none;
	color:#DDD;
}

.footerMain .rssLine {
	display: none;
}

.modal-content {
    border-radius:0;
}

/* scrolls */
#topContent {
	background:#666;
	color:#FFF;
	bottom:35px;
	height:40px;
	line-height:38px;
	opacity:0.5;
	overflow:hidden;
	position:fixed;
	right:25px;
	width:40px;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	border-radius:20px;
	display:none;
	z-index: 999;
	text-align:center;
}

a.nextScreenButton {
	background: none repeat scroll 0 0 #f9f9f9;
	border-top-left-radius:40px;
	border-top-right-radius:40px;
	bottom: 0px;
	color: #888;
	display: block;
	width:60px;
	height:40px;
	line-height:56px;
	position: absolute;
	right:50%;
	margin-right:-30px;
	text-align: center;
	z-index: 999;
	-webkit-box-shadow:0 -3px 5px -2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:0 -3px 5px -2px rgba(0, 0, 0, 0.1);
	box-shadow:0 -3px 5px -2px rgba(0, 0, 0, 0.1);
}

a.nextScreenButton:hover, a.nextScreenButton:active, a.nextScreenButton:focus {
	color:#AAA;
}

/* DNN Buttons */
.dnnPrimaryAction, a.dnnPrimaryAction, .dnnFormItem input[type="submit"], .dnnPrimaryAction:hover, a.dnnPrimaryAction:hover, .dnnPrimaryAction:active, a.dnnPrimaryAction:active, .dnnPrimaryAction:focus, a.dnnPrimaryAction:focus, .dnnSecondaryAction, a.dnnSecondaryAction, .dnnSecondaryAction:hover, a.dnnSecondaryAction:hover, .dnnSecondaryAction:active, a.dnnSecondaryAction:active, .dnnSecondaryAction:focus, a.dnnSecondaryAction:focus {
	font-family:FSMatthew, Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	font-weight:normal;
	background:#272780;
/*	-webkit-border-radius:4px !important; */
	-webkit-border-radius:0px !important;	
	/*-moz-border-radius:4px !important; */
	-moz-border-radius:0px !important;	
/*	border-radius:4px !important; */
	border-radius:0px !important; 
	border:0!important;
	-webkit-box-shadow:0 0 0 0 rgba(0,0,0,0);
	-moz-box-shadow:0 0 0 0 rgba(0,0,0,0);
	box-shadow:0 0 0 0 rgba(0,0,0,0);
	display:inline-block;
	cursor:pointer;
	color:#FFF;
	padding:7px 12px !important;
	text-decoration:none;
	text-shadow:none;
	display:inline-block !important;
	letter-spacing:0;
	line-height:20px !important;
	/* EQ added */
	margin-left:15px;
	margin-right:15px;
	/* EQ end */
}

.dnnPrimaryAction:hover, a.dnnPrimaryAction:hover, .dnnPrimaryAction:active, a.dnnPrimaryAction:active, .dnnPrimaryAction:focus, a.dnnPrimaryAction:focus {
	background:#AAA;
}

.dnnSecondaryAction, a.dnnSecondaryAction {
	background:#666;
}

.dnnSecondaryAction:hover, a.dnnSecondaryAction:hover, .dnnSecondaryAction:active, a.dnnSecondaryAction:active, .dnnSecondaryAction:focus, a.dnnSecondaryAction:focus {
	background:#AAA;
}

/* EQ replaced with 15px margin both side so that stacked buttons are aligned
.dnnPrimaryAction + .dnnPrimaryAction, .dnnPrimaryAction + .dnnSecondaryAction, .dnnSecondaryAction + .dnnPrimaryAction, .dnnSecondaryAction + .dnnSecondaryAction {
	margin-left:15px !important;
} */
a.dnnDisabledAction:link, a.dnnDisabledAction:visited, a.dnnDisabledAction:active, a.dnnDisabledAction:hover {
	background: none repeat scroll 0 0 #eee;
	 color: #BBB;
	opacity: 0.6;
	text-decoration: none;
}

a.largeButton, a.largeButton:hover, .largeButton, .largeButton:hover {
	font-size:16px !important; /* EQ was 15px */
	margin-top: 15px;
	padding:15px 35px !important;
}

/* Text On Parallax Banner */
.bannerMainFull .parallaxMe h1 {
	font-size:60px;
	font-weight:normal;
	text-transform:uppercase;
	margin:0 0 10px;
}

.bannerMainFull .parallaxMe h2 {
	font-size:30px;
	margin:0 0 20px;
}

/* banner positioning */
.bannerMainFull .parallaxMe .position1 {
	margin:-20px 0 0 20px;
	max-width:30%;
}

.bannerMainFull .parallaxMe .position2 {
	margin:20px 0 0 30px;
	max-width:30%;
}

.bannerMain .parallaxMe {
	margin:-12px 0 0 0;
}

/* Text On Background OWL Banner */
.backgroundMe .owlCarousel  h1 {
	font-size:60px;
	font-weight:normal;
	text-transform:uppercase;
	margin:0 0 10px;
}

.backgroundMe .owlCarousel  h2 {
	font-size:30px;
	margin:0 0 20px;
}

.backgroundMe .owlCarousel .position1 {
	margin:-20px 0 0 20px;
	max-width:30%;
}

.backgroundMe .owlCarousel .position2 {
	margin:20px 0 0 30px;
	max-width:30%;
}

.backgroundMe .owlCarousel .position3 {
	margin:20px 0 0 30px;
	max-width:30%;
}

/* Content Styles */
.centerMe {
	float:none;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.hideMe {
	display:none;
}

/* font */
.uppercase {
	text-transform:uppercase;
}

/* images */
.imgLeft {
	float:left;
	margin:0 15px 5px 0;
	padding:3px;
	border:1px solid #F2F2F2;
}

.imgRight {
	float:right;
	margin:0 0 5px 15px;
	padding:3px;
	border:1px solid #F2F2F2;
}

.imgCenter {
	float:none;
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
	padding:3px;
	border:1px solid #F2F2F2;
}

.imgBorder {
	border: 1px solid #f2f2f2;
    padding: 3px;
}

/* floats */
.FloatLeft {
	float:left;
}

.FloatRight {
	float:right;
}

.FloatNone {
	float:none;
}

.ClearFloat,.clearfix {
	clear:both!important;
	height:0!important;
	line-height:0!important;
	font-size:0!important;
}

/* lists */
ul.list {
	list-style:none outside none;
	margin:0 0 20px;
	padding-left:0;
}

.list li:before {
	content:"ï…Š";
	font-family:FontAwesome;
	margin-right:10px;
	position:relative;
	top:0;
	left:2px;
	color:#272780;
}

.list li + li {
	margin-top:13px;
}

.list li:last-child {
	margin-bottom:13px;
}

.list.square li:before {
	content:"ïƒˆ";
}

.list.square-check li:before {
	content:"ï…Š";
}

.list.circle li:before {
	content:"ï„‘";
}

.list.circle-arrow li:before {
	content:"ï„¸";
}

.list.hand li:before {
	content:"ï‚‡";
}

.list.triangle li:before {
	content:"ïƒš";
}

.list.arrow li:before {
	content:"ï¡";
}

.list.circle-check li:before {
	content:"ï˜";
}

ol.list {
	list-style:decimal outside none;
	padding-left:19px;
}

ol.list li {
	padding-left:7px;
}

ol.list li:before {
	display:none;
}

/* social bar */
ul.social {
	margin:0;
	padding:10px 0;
}

ul.social li {
	display:inline-block;
/*	font-size:16px; */
	font-size:24px;	
	line-height:16px;
	letter-spacing:1em;
}

ul.social li:last-child {
	letter-spacing:0;
}

ul.social li a {
	color:#CCC;
}

ul.social li a:hover {
	color:#333;
}

.footerPanes ul.social li a {
	color:#999;
}

.footerPanes ul.social li a:hover {
	color:#DDD;
}

/* parallax white box */
.WhiteBox {
	padding:20px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	background: rgba(255,255,255,0.8);
}

.WhiteBox h1{
	color:#57575F;
}

.WhiteBox div.FSMatthewRegular{
	color:#57575F;
}

/* logo reel */
.TopBottomLineBox {
	margin:40px 0 0;
	padding:9px 0 0;
	border-width:1px 0;
}

/* address & time */
.addressLabel, .timeLabel {
	display:inline-block;
	vertical-align:text-top;
	width:60px;
	font-weight:bold;
}

.timeLabel {
	width:110px;
}

.addressData, .timeData {
	display:inline-block;
	vertical-align:text-top;
}

.paneOutline {
	border:3px solid #EEE;
	border-bottom-color:#CCC;
	border-right-color:#CCC;
}

/* bottomMe Images*/
.bottomMe {
	height:100%;
	vertical-align:bottom;
}

.alignContBottom {
	margin-bottom:-50px
}


/* Bootstrap fix */
.modal-content .modal-title{
	text-transform:none;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus, .panel-primary > .panel-heading {
	background-color:#272780;
	/* background-image:linear-gradient(to bottom, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0) 100%); */
}

.panel-heading h1, .panel-heading h2, .panel-heading h3, .panel-heading h4, .panel-heading h5, .panel-heading h6, .panel-heading .h1, .panel-heading .h2, .panel-heading .h3, .panel-heading .h4, .panel-heading .h5, .panel-heading .h6 {
	color:inherit;
}

a.btn {
	transition:none;
	border-radius: 0;
}

a.btn-primary, a.btn-success, a.btn-info, a.btn-warning, a.btn-danger {
	color:#FFF;
}

a.list-group-item.active > .badge, .nav-pills > .active > a > .badge, .btn-primary .badge {
	color:#272780;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
	text-shadow:none;
}

.nav .caret {
	border-bottom-color:#272780;
	border-top-color:#272780;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .panel-primary > .panel-heading, .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
	background-color:#272780;
	border-color:#272780;
	/* background-image:linear-gradient(to bottom, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0) 100%); */
}

.panel-primary {
	border-color:#272780;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary.active {
	background-color:#272780;
	border-color:#272780;
	opacity:0.75;
}

a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
	color:rgba(255,255,255,0.75);
}

.nav {
	margin:0;
}

/* Chrome Bug Last Word Wrapping */
h1:after, h2:after, h3:after, h4:after, h5:after, h6:after, .breadRight:after {
	content:'â€Œ'; /* Zero Width Non-Joiner Invisible Character */
	font-family:FSMatthew, Helvetica, sans-serif;
	width:1px;
	height:1px;
	overflow:hidden;
	float:right;
}

/* HN: for fixed logo**/
.fixed {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
	transition:all 0.5s ease-out 0s;
	min-height: 50px;
}

/* Recent News */
.left.rn_content {
	width:170px;
}

/* OWL Carousel */
.customNavigation {
  text-align: center;
  margin-bottom:40px;
}

.customNavigation a {
  transition:all 0.5s ease-out 0s;
  color: white;
  border-radius: 0;
  font-size:0;
  padding:5px;
}
.customNavigation .btn:before {
	content:"";
	width:144px;
	height:144px;
	background-image:url("/Portals/_default/skins/Common/images/klip-icons-144x144px-play-12.png");
	background-repeat:no-repeat;
	display:block;
}

.customNavigation .btn.play:before {
	background-image:url("/Portals/_default/skins/Common/images/klip-icons-144x144px-pause-12a.png");
}

.customNavigation a:hover {
	opacity:0.7;
	color: white;
}

.owl-pagination{display:none;}

/*  owlCarousel */
.owlCarousel-img{}

.eq2{background:#0E0C26;}
h2.eq5{color:#57575F;}
h2.eq2{color:#FFFFFF;}
#equisysContactMobile{padding-right:0!important;}
#Body.modal-open{padding-right:0!important;}

/* Video Home */
.video_home{overflow:hidden;position:relative;}
.video_home video,
.video_home iframe{min-height:700px;min-width:100%;}
.youtube_video{}

.triggerAnimation.delay750.animated.bounceInDown{}
.triggerAnimation.delay1000.animated.bounceInDown{}

/* Anchor Links */
.DnnModule.DnnModule-811{position:relative;}
.DnnModule.DnnModule-811>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-812{position:relative;}
.DnnModule.DnnModule-812>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-819{position:relative;}
.DnnModule.DnnModule-819>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-741{position:relative;}
.DnnModule.DnnModule-741>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-739{position:relative;}
.DnnModule.DnnModule-739>a{position:absolute;top:-120px;width:1px;height:40px;display:block;}

/*
For Sandbox:
739 > 830	Better business
819 > 842	How it Works
812 > 839 	Reselling partners
811 > 838	About us
*/
.DnnModule.DnnModule-838{position:relative;}
.DnnModule.DnnModule-838>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-839{position:relative;}
.DnnModule.DnnModule-839>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-842{position:relative;}
.DnnModule.DnnModule-842>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-741{position:relative;}
.DnnModule.DnnModule-741>a{position:absolute;top:-80px;width:1px;height:40px;display:block;}

.DnnModule.DnnModule-830{position:relative;}
.DnnModule.DnnModule-830>a{position:absolute;top:-120px;width:1px;height:40px;display:block;}

/*
#dnn_dnnLOGO_hypLogo{padding:5px 0;display:block;}
.fixed .logoMain{margin:0;transition:all 0.3s ease-out 0s; padding: 0px;}
.fixed .logoMain img{margin:0; width:auto;height:45px;}
.fixed div.menuMain div.menuMainInner{margin:5px 0;transition:all 0.5s ease-out 0s;}
*/


/*--- New Banner - which changes layout on portrait ---- */
.MainBanner2 {
    position: relative;
    width="100%"; height: calc(100vw * (9 / 32)) ;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    max-height: 720px !important;
}

.BannerContainer .siteWidth {
    position: relative !important;
}

.BannerContainer {
	display: none; /* hide banner text until page is loaded */
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    max-width: 2560px;
}

.BannerContainer .content {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 43%; /* was 48% before diagonal divide */
    padding: 10px;
    padding-right: 0px;
    height: 94%;
}

.BannerContainer .content h2 {
    width: 92%; /* added for diagonal divide */
}

.BannerContainer .content p {
    color: white;
}

.BannerContainer .content .dnnPrimaryAction {
    margin-left: 0px !important;
}

.BannerContainer .content .dnnSecondaryAction {
    margin-top: 10px;
}

/* when the screen width is greater than 2560px then that the max we want to resize the image too , add borders to side edges */
@media screen and (min-width: 2560px) {
    .MainBanner2 {
        background-size: 2560px !important;
        ; background-position: center !important;
        ; }
}

@media screen and (max-width: 990px) and (min-width: 769px) {
    .BannerContainer .content .dnnPrimaryAction, .BannerContainer .content .dnnSecondaryAction {
        margin-right: 3px;
    }
}

@media screen and (max-width: 768px) and (min-width: 540px) {
    .MainBanner2 {
        height: 95vw;
        background-position: right bottom !important;
        /* Image is twice width so that is only shows the right hand side */
        background-size: 200vw !important;
    }

    .BannerContainer {
        width="100%"; overflow: hidden;
        height: 38vw;
    }

    .BannerContainer .content {
        width: 95%;
        padding: 10px;
    }
}

@media screen and (max-width: 539px) {
    .MainBanner2 {
        height: calc(70vw + 150px);
        background-position: right bottom !important;
        background-size: 200vw !important;
    }

    .BannerContainer {
        width="100%"; overflow: hidden;
        height: calc(23vw + 100px);
    }

    .BannerContainer .content {
        width: 95%;
        padding: 10px;
    }
}

@media screen and (max-width: 360px) {
    .MainBanner2 {
        height: calc(50vw + 225px);
    }

    .BannerContainer {
        height: 200px;
    }
/* eq jh 26-08-2021
    .dnnSecondaryAction {
        margin-left: 0px !important;
    }
*/
}

h1.bannerText {
    /* https://css-tricks.com/snippets/css/fluid-typography/ 
	font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));
	*/
    font-size: calc(30px + 15 * ((100vw - 768px) / (1380 - 768)));
    padding: 5px 10px 0 0px;
}

h2.bannerText {
    font-size: calc(17px + 15 * ((100vw - 768px) / (1380 - 768)));
}

p.bannerText {
    font-size: calc(14px + 4 * ((100vw - 320px) / 680));
    padding: 0 5px 0 0px;
}

a.largeButton.bannerText , a.largeButton.bannerText:hover, .largeButton.bannerText , .largeButton.bannerText:hover {
    font-size: calc(14px + 5 * ((100vw - 768px) / (1380 - 768))) !important;
    padding: calc(12px + 3 * ((100vw - 768px) / (1380 - 768))) calc(25px + 10 * ((100vw - 768px) / (1380 - 768))) !important;
    /* padding:12px 15px !important; */
}

@media screen and (min-width: 991px) {
    h1.bannerText {
        padding: 10px 10px 0 0px;
        ; }
}

/* Set the max size the bannertext can grow too */
@media screen and (min-width: 1380px) {
    h1.bannerText {
        font-size:45px;
        padding: 30px 10px 0 0;
        ;}

    h2.bannerText {
        font-size: 32px;
    }

    p.bannerText {
        font-size: 18px;
    }

    a.largeButton.bannerText,a.largeButton.bannerText:hover,.largeButton.bannerText,.largeButton.bannerText:hover {
        font-size: 19px !important;
        padding: 15px 35px !important;
    }
}

@media screen and (min-width: 1500px) {
    h1.bannerText {
        padding: 45px 10px 0 0;
        ;}
}

@media screen and (max-width: 990px) and (min-width:769px) {
    h1.bannerText {
        font-size: calc(25px + 15 * ((100vw - 768px) / (1380 - 768)));
        padding: 5px 10px 0 0;
    }

    h2.bannerText {
        font-size: calc(16px + 15 * ((100vw - 768px) / (1380 - 768)));
    }

    p.bannerText {
        font-size: calc(14px + 4 * ((100vw - 320px) / 680));
        padding: 0 5px 0 0;
    }

    a.largeButton.bannerText,a.largeButton.bannerText:hover,.largeButton.bannerText,.largeButton.bannerText:hover {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
}

@media screen and (max-width: 768px) {
    h1.bannerText {
        font-size:calc(20px + 20 * ((100vw - 320px) / (768 - 320)));
        padding: 0 5px 0 0;
        ;}

    h2.bannerText {
        font-size: calc(14px + 10 * ((100vw - 320px) / (768 - 320)));
    }

    a.largeButton.bannerText,a.largeButton.bannerText:hover,.largeButton.bannerText,.largeButton.bannerText:hover {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
}


/* Request by Rachel to enable modules to be hidden on mobile devices */
@media only screen and (max-width: 768px) {
.hide-mobile {
display: none;
}
}


.language-object .NormalTextBox{
	color: #ffffff;
	border: 0px;
	margin-top:5px;
	margin-right:30px;
}


.breadAbsolute {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	min-height:30px;
	padding:10px 0 10px;
	display:block;	 
}


/* Chrome Bug Last Word Wrapping */
h1:after, h2:after, h3:after, h4:after, h5:after, h6:after, .breadAbsolute:after {
	content:'â€Œ'; /* Zero Width Non-Joiner Invisible Character */
	font-family:FSMatthew, Helvetica, sans-serif;
	width:1px;
	height:1px;
	overflow:hidden;
	float:right;
}

/* jh Sept 2021 new footer #dnn_FooterPaneQuarter5{padding: 0 30px 20px;} */
#dnn_FooterPaneQuarter5{padding: 0 12px 10px;}


/* Skin Modules */
.aquaeSkins #UserProfileImg {
	width:120px;
	display:inline-block;
	border:1px solid #F2F2F2;
	vertical-align:bottom;
	margin-right:15px;
}
.aquaeSkins #UserProfileImg img {
	padding:3px;
}
.aquaeSkins .UserProfileControls {
	display:inline-block;
	vertical-align:bottom;
}
.aquaeSkins .UserProfileControls ul {
	list-style:none;
	margin:0;
	padding:0;
}
.aquaeSkins .UserProfileControls li {
	display:inline-block;
}
.aquaeSkins .UserProfileControls .dnnSecondaryAction {
	color:#75CB19;
	background:#F9F9F9;
}
.aquaeSkins .UserProfileControls .dnnSecondaryAction:hover {
	color:#FFF;
	background:#75CB19;
}
/* Journal Module */
.aquaeSkins .journalrow div.author img {
	border:1px solid #F2F2F2;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	padding:3px;
	width:60px;
}
.aquaeSkins .journalitem p {
	margin:0;
	padding-bottom: 15px;
}
.aquaeSkins .journalitem > p:first-child {
	font-size:17px;
}
.aquaeSkins .journalrow .authorname a {
	text-transform:uppercase;
}
.aquaeSkins .journalrow .authorname a:after {
	content:' said: ';
}
.aquaeSkins .journalrow {
	border-bottom:1px solid #E4E1E1;
	margin-bottom:20px;
	padding:10px 0;
}
.aquaeSkins #journalEditor, .jcmt .cmteditarea {
	border:1px solid #E4E1E1;
	background:#F9F9F9;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	display:inline-block;
	margin:0;
	overflow:visible;
	padding:5px;
	position:relative;
	text-shadow:0 0 1px #FFF;
	width:100%;
	z-index:2;
}
.aquaeSkins .journalrow div.journalitem {
	-epub-word-break: break-all;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-epub-hyphens :auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
/* Messages */
.aquaeSkins .DnnModule-Messaging-Notifications .hoverControls {
	white-space:nowrap;
}
.aquaeSkins .smListings > ul > li {
	background:#F9F9F9;
	border-bottom:1px solid #F2F2F2;
	display:table;
	width:100%;
}
.aquaeSkins .DnnModule-Messaging-Notifications .dnnAdminTabNav a span {
	background:#75CB19;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	display:inline;
	font-size:11px;
	font-weight:bold;
	margin-right:5px;
	min-height:12px;
	padding:0.3em 7px;
	color:#FFF;
}
.aquaeSkins ul.dnnButtonGroup > li:hover {
	background:#F2F2F2;
}
.aquaeSkins .selectDrop > a:after {
	background:none !important;
	content:'';
	font-family:'FontAwesome';
	display:inline-block;
	height:9px;
	margin:0 0 0 6px;
	position:relative;
	width:7px;
	color:#75CB19;
}
.aquaeSkins .selectDrop > a:hover:after {
	color:#666;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle:hover, 
.aquaeSkins .smListings .ActiveToggle {
	background: #CCC;
	border: 2px solid #FFF;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	display:inline-block;
	height:13px;
	margin-left:10px;
	overflow:hidden;
	text-indent:9999px;
	width:13px;
	vertical-align: sub;
	-webkit-box-shadow: 0 0 1px #BBB;
	-moz-box-shadow: 0 0 1px #BBB;
	box-shadow: 0 0 1px #BBB;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle, 
.aquaeSkins .smListings .ActiveToggle:hover {
	background:#75CB19;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	display:inline-block;
	height:13px;
	margin-left:10px;
	overflow:hidden;
	text-indent:9999px;
	width:13px;
	vertical-align: sub;
	-webkit-box-shadow: 0 0 1px #BBB;
	-moz-box-shadow: 0 0 1px #BBB;
	box-shadow: 0 0 1px #BBB;
}
.aquaeSkins .DnnModule-Messaging-Notifications .msgActionItems * {
	font-size:13px;
	white-space:nowrap;
}
/* Messaging */
.aquaeSkins .dnnCoreMessagingContent {
	padding-top: 0;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .ListCol-1 {
	min-width: 25px;
	padding: 12px 0 0;
	width: 1%;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .ListCol-1:empty {
	display:none;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .profileImg span em {
	width:74px;
	height:74px;
	display:inline-block;
	border:1px solid #F2F2F2;
	vertical-align:bottom;
	margin-right:15px;
	background:#FFF;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .profileImg {
	width:50px;
	height:auto;
	display:block;
	border:1px solid #F2F2F2;
	background:#FFF;
	line-height: 0;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .profileImg span,
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .profileImg span em {
	background:none;
	padding:0;
	margin:0;
	border:0;
	height:auto;
	width:auto;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .profileImg img {
	padding:3px;
}

/* Members List */
.aquaeSkins #mdMemberList {
	padding:0;
	margin:0;
	list-style:none;
	width:100%;
}
.aquaeSkins #mdMemberList ul {
	padding:0;
	margin:0;
	list-style:none;
}
.aquaeSkins #dnn_LeftPaneTop #mdMemberList,
.aquaeSkins #dnn_LeftPane #mdMemberList,
.aquaeSkins #dnn_RighttPaneTop #mdMemberList,
.aquaeSkins #dnn_RightPane #mdMemberList,
.aquaeSkins #dnn_LeftPaneTop #mdMemberList > li,
.aquaeSkins #dnn_LeftPane #mdMemberList > li,
.aquaeSkins #dnn_RighttPaneTop #mdMemberList > li,
.aquaeSkins #dnn_RightPane #mdMemberList > li {
	width:100%;
}
.aquaeSkins #mdMemberList > li {
	background:none;
	border:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	float:none;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	-webkit-transition:background 0.15s ease-in-out 0s;
	-moz-transition:background 0.15s ease-in-out 0s;
	-o-transition:background 0.15s ease-in-out 0s;
	transition:background 0.15s ease-in-out 0s;
	z-index:1;
}
.aquaeSkins #mdMemberList .friendProfileActions li {
	width:100%;
}
.aquaeSkins #mdMemberList .friendProfileActions li a {
	color:#FFF !important;
	background:#75CB19;
	display:block;
	line-height:30px;
	height:32px;
	padding:0 12px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	margin-bottom:3px;
}
.aquaeSkins #mdMemberList .friendProfileActions li a:hover {
	background:#666;
}
.aquaeSkins #mdMemberList .friendProfileActions li span.FriendStatus > span {
	color:#999 !important;
	background:#F2F2F2;
	display:block;
	line-height:30px;
	height:32px;
	padding:0 12px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	margin-bottom:3px;
	font-style:italic;
}
/* Friends */
.aquaeSkins .MainPane #mdMemberList ul {
}
.aquaeSkins .MainPane #mdMemberList > li {
	float:left;
	width:33.333%;
	display:block;
}
.aquaeSkins .mdMemberDetails {
	background:#F9F9F9;
	border:1px solid #F2F2F2;
	padding:7px 7px 0;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	min-height: 108px;
	margin: 0 15px 15px 0;
}
.aquaeSkins .mdMemberDetails:nth-child(3) {
	margin: 0 0 15px 0;
}
.aquaeSkins .mdMemberDetails .mdMemberImg {
	background:#FFF;
	border: 1px solid #F2F2F2;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	display: block;
	float: left;
	height: auto;
	margin: 0 10px 10px 0;
	min-width: 50px;
	padding: 3px;
}
.aquaeSkins .mdMemberDetails p {
	line-height: 1em;
	margin-bottom: 0;
	font-size:14px;
}
.aquaeSkins #mdMemberList .mdMemberTitle {
	font-size:16px;
}
.aquaeSkins .mdMemberDetails .mdHoverActions {
	display: block;
	position:relative;
	background: none;
	border-top: 1px solid #F2F2F2;
	height:auto;
}
.aquaeSkins .mdMemberDetails .mdHoverActions:after {
	content:' ';
	display:block;
	clear:both;
}
.aquaeSkins .mdMemberDetails .mdHoverActions li:first-child {
	padding-left: 0;
}
.aquaeSkins .mdMemberDetails .mdHoverActions li a, 
.aquaeSkins .mdMemberDetails .mdHoverActions li p {
	display: block;
	font-size: 13px;
	min-height:18px;
	min-width:18px;
	line-height:29px;
	padding:0 10px 0 0;
}
.aquaeSkins .mdMemberList .mdHoverContent .mdHoverActions li {
	font-size: 13px;
	float: left;
	padding: 4px 7px 0;
}
.aquaeSkins .mdMemberList .mdHoverContent .mdFriendPending > p {
  font-size: 13px;
}
.aquaeSkins .mdMemberDetails .mdHoverActions .mdComposeMessage {
	border-left:0;
	display: block;
	position: relative;
	float:right;
	background:none !important;
}
.aquaeSkins .mdMemberDetails .mdHoverActions li.mdComposeMessage a {
	background:none !important;
	border-left:0 !important;
	padding:0;
}
.aquaeSkins .mdMemberDetails .mdHoverActions .mdComposeMessage:hover {
  -webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
}
.mdMemberDetails .mdHoverActions .mdComposeMessage a:before {
	width:auto;
	margin:0;
}
.aquaeSkins .mdLoadMore a {
	width:100%;
	text-align:center;
	background:#F9F9F9;
	border:1px solid #F2F2F2;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}
.aquaeSkins .searchWrapper {
	float:left;
}
.aquaeSkins .searchWrapper #refreshResults {
	display:none;
}
.aquaeSkins .dnnMemberDirectory .mdSearchBar input[type="text"] {
	display: block;
	float: left;
	width: 220px;
	line-height:34px;
	height:34px;
}
.aquaeSkins .dnnMemberDirectory .selectDrop #mdAdvancedSearch:after {
	background:none;
	content:'';
	display: inline-block;
	height: auto;
	margin-left: 7px;
	position: relative;
	width: auto;
}
.aquaeSkins .dnnMemberDirectory #mdAdvancedSearch {
	margin-right: 0;
	padding: 7px 15px;
}

/* Icons */
.aquaeSkins a.ComposeMessage:before,
.aquaeSkins span.FriendStatus > a:before,
.aquaeSkins span.FriendStatus > span:before,
.aquaeSkins a.FollowStatus:before,
.aquaeSkins a.UnfollowStatus:before {
	font-family:'FontAwesome';
	font-size:16px;
	margin:0 5px 0 -3px;
	font-weight:normal;
	font-style:normal;
	width:18px;
	display:inline-block;
	text-align:center;
}
.aquaeSkins a.ComposeMessage:before {
	content:'';
}
.aquaeSkins span.FriendStatus > a:before {
	content:'';
}
.aquaeSkins span.FriendStatus > a.removeFriend:before,
.aquaeSkins span.FriendStatus > span:before {
	content:'';
}
.aquaeSkins a.FollowStatus:before {
	content:'';
}
.aquaeSkins a.UnfollowStatus:before {
	content:'';
}
/* Console */
.aquaeSkins .console,
.aquaeSkins .console.profile {
	width:100%;
	height:auto;
	background:none;
}
.aquaeSkins .console select {
	margin-left:0;
}
.aquaeSkins .console-none {
	width:100%;
	margin:0;
}
.aquaeSkins .console-none div {
	height:auto;
	margin:0;
	padding:0;
}
.aquaeSkins .console-none h3,
.aquaeSkins .profile .console-none h3 {
	font-weight:normal;
	color:#FFF !important;
	font-size:15px;
	border:0;
	background:#75CB19;
	display:block;
	line-height:30px;
	height:32px;
	padding:0 12px;
	margin:0;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	margin-bottom:3px;
	-webkit-transition:all 0.4s linear;
	-moz-transition:all 0.4s linear;
	-o-transition:all 0.4s linear;
	transition:all 0.4s linear;
}
.aquaeSkins .console-none div div,
.aquaeSkins .profile .console-none div div {
	display:none;
}
.aquaeSkins .console-mouseon,
.aquaeSkins .profile .console-mouseon {
	background:transparent;
}
.aquaeSkins .console-mouseon h3,
.aquaeSkins .profile .console-mouseon h3 {
	background:#666;
}
/* Console Icons */
/* Icons */
.aquaeSkins .console-none h3:before {
	font-family:'FontAwesome';
	font-size:16px;
	margin:0 5px 0 -3px;
	font-weight:normal;
	font-style:normal;
	width:18px;
	display:inline-block;
	text-align:center;
	content:'';
}
.aquaeSkins .console-none .console-none:nth-child(1) h3:before {
	content:'';
}
.aquaeSkins .console-none .console-none:nth-child(2) h3:before {
	content:'';
	font-size:14px;
}
.aquaeSkins .console-none .console-none:last-child h3:before {
	content:'';
}
/* admin dashboard */
.aquaeSkins .console-large div {
	height: 125px !important;
	width: 140px;
}
.aquaeSkins .console-large h3 {
	padding:5px;
}
.aquaeSkins .console-large.console-mouseon h3 {
	background:#EEE;
}


/* ModViewProfileC */
.aquaeSkins .ModViewProfileC .SPheader {
	margin-bottom:-20px;
}
.aquaeSkins .ModViewProfileC > div > div h3 {
	border-bottom: 1px solid #eee;
	padding: 50px 0 10px;
}
.aquaeSkins .ModViewProfileC > div > div:first-child h3 {
	border-bottom: 1px solid #eee;
	padding: 0 0 10px;
}
.aquaeSkins .ModViewProfileC .pContact ul {
	margin:0;
	padding:0;
	list-style:none;
}
.aquaeSkins .ModViewProfileC .pContact ul li {
	padding-left:15px;
	list-style:none;
}
.aquaeSkins .ModViewProfileC .pContact ul li:before {
	content:'';
	font-family:'FontAwesome';
	margin-left:-15px;
	width:15px;
	display:inline-block;
	color:#75CB19;
}
.aquaeSkins #smMainContent {
	padding-top:0;
}
/* Links ModDNNLinksC */
.aquaeSkins .ModDNNLinksC .linkitem {
	line-height:30px;
	list-style:none outside none;
	margin:0;
	padding:0;
	border-bottom:1px dotted #EEE;
}
.aquaeSkins .footerPanes .ModDNNLinksC .linkitem {
	border-bottom:1px dotted #666;
}
.aquaeSkins .footerPanes .ModDNNLinksC .linkitem a {
	color:#999;
	margin:0;
}
.aquaeSkins .ModDNNLinksC .linkitem a:hover {
	margin:0 0 0 7px;
}
.aquaeSkins .footerPanes .ModDNNLinksC .linkitem a:hover {
	color:#DDD;
}
.aquaeSkins .ModDNNLinksC .linkitem a:before {
	content:'';
	font-family:'FontAwesome';
	margin-right:7px;
	position:relative;
	top:0;
	left:2px;
}
.aquaeSkins .ModDNNLinksC .linkitem.Horizontal {
	border:0;
}
.aquaeSkins .ModDNNLinksC li.linkitem.Horizontal {
	float:none;
}
.aquaeSkins .ModDNNLinksC .linklist.Horizontal a {
	background:#75CB19;
	color:#FFF;
	display:block;
	height:35px;
	line-height:33px;
	margin:0 0 14px;
	padding:0 15px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}
.aquaeSkins .ModDNNLinksC .linklist.Horizontal a:hover {
	background:#666;
	color:#FFF;
}
.aquaeSkins .ModDNNLinksC .item_desc {
	line-height: 1.3;
	margin: -4px 0 7px 17px;
	white-space: normal;
}
/* FAQs ModDNNFAQsC */
.aquaeSkins .FAQquestion H3 {
	border-bottom:3px dotted #EEE;
	padding-bottom:7px;
	margin:0;
}
.aquaeSkins .FAQquestion H3 span {
	color:#222;
	font-size:18px;
	line-height:120%;
	text-transform:uppercase;
}
.aquaeSkins .FAQquestion H3 i {
	font-size:2em;
	padding-right:10px;
	opacity:0.5;
	font-weight:normal;
}
.aquaeSkins .FAQanswer {
	border:3px dotted #EEE;
	border-top:0;
	padding:15px 20px;
}
.aquaeSkins .FAQfooter {
	color:#AAA;
	font-size:12px;
	font-style:italic;
	padding:7px 10px;
	background:#F9F9F9;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	margin:10px -5px 0;
	border:0;
	text-align:right;
}
.aquaeSkins .FAQload {
	padding:15px 20px;
}
/* Announcements ModDNNAnnouncementsC */
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnItem {
	clear:both;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnItem + .DnnAnnItem {
	padding-top:15px;
}
.aquaeSkins .ModDNNAnnouncementsC hr {
	margin:30px 0 25px;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnDate {
	float:left;
	display:block;
	clear:both;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnDate > div {
	width:50px;
	display:block;
	text-align:center;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnDay {
	background:#F9F9F9;
	color:#DDD;
	font-size:35px;
	font-weight:bold;
	line-height:50px;
	padding:0;
	width:50px;
	text-align:center;
	-webkit-border-radius:4px 4px 0 0;
	-moz-border-radius:4px 4px 0 0;
	border-radius:4px 4px 0 0;
	letter-spacing:-0.025em;
}
.aquaeSkins .footerPanes .ModDNNAnnouncementsC .DnnAnnDay {
	background:#464646;
	color:#838383;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnMonth {
	background:#EEE;
	color:#BBB !important;
	font-size:10px;
	line-height:17px;
	padding:0;
	width:50px;
	text-align:center;
	-webkit-border-radius:0 0 4px 4px;
	-moz-border-radius:0 0 4px 4px;
	border-radius:0 0 4px 4px;
	text-transform:uppercase;
}
.aquaeSkins .footerPanes .ModDNNAnnouncementsC .DnnAnnMonth {
	background:#1D1D1D;
	color:#838383 !important;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnImage {
	margin:0 10px 0 0;
	width:25%;
	float:left;
}
.aquaeSkins .footerPanes .ModDNNAnnouncementsC .DnnAnnImage {
	width:100%;
	max-height:80px;
	margin:0 0 15px;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnImage:empty {
	margin:0;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnImage img {
	padding:3px;
	border:1px solid #F2F2F2;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnMain h6 {
	line-height:135%;
	margin:0 0 2px;
}
.aquaeSkins .footerPanes .ModDNNAnnouncementsC .DnnAnnMain h6 {
	font-size:14px;
	text-transform:uppercase;
	color:#FFF;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnContent {
	margin:0 0 10px 60px;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnContentBody p {
	padding:0;
	display:inline;
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnContentBody p + a:before {
	content:' ';
}
.aquaeSkins .ModDNNAnnouncementsC .DnnAnnLink a {
	margin:10px 0 20px;
	float:right;
	clear:both;
}
.aquaeSkins .ModDNNAnnouncementsC .dnnTextPanel {
	float:right;
	width:400px !important;
}
.aquaeSkins .ModDNNAnnouncementsC .DNN_ANN_viewtypeSelectorLabel .dnnLabel, .aquaeSkins .ModDNNAnnouncementsC .DNN_ANN_viewtypeSelector {
	float:right;
	width:100% !important;
}
/* Feedback ModDNNFeedbackC */
.aquaeSkins .ModDNNFeedbackC .dnnForm.FeedbackForm .dnnFormItem .dnnLabel {
	width: auto;
}
.aquaeSkins p.dnnFormRequired {
	display:none;
}
.aquaeSkins .ModDNNFeedbackC input.dnnFormRequired,
.aquaeSkins .ModDNNFeedbackC textarea.dnnFormRequired {
	background:#F9F9F9;
}
.aquaeSkins .ModDNNFeedbackC h2.dnnFormSectionHead {
	display:none;
}
.aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem LABEL, .aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm .dnnFormItem LABEL {
	float:none;
	display:block !important;
	padding:0 0 7px !important;
	text-align:inherit !important;
	width:100% !important;
}
.aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem INPUT, .aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem TEXTAREA, .aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem SELECT, .aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm .dnnFormItem INPUT, .aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm .dnnFormItem TEXTAREA, .aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm .dnnFormItem SELECT {
	width:100% !important;
	max-width:100% !important;
}
.aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem TEXTAREA, .aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm .dnnFormItem TEXTAREA {
	max-height:160px;
}
.aquaeSkins .ModDNNFeedbackC .dnnForm.FeedbackForm fieldset, 
.aquaeSkins .ModDNNFeedbackC .dnnForm.NarrowFeedbackForm fieldset {
	margin-bottom:0;
}
.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type .Feedback_Field {
	float:left;
	width:50%;
}
.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type > div:nth-child(2n-1) {
	padding-right:10px;
}
.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type > div:nth-child(2n) {
	padding-left:10px;
}
.aquaeSkins .ModDNNFeedbackC .Feedback_Field {
	position: relative;
}
.aquaeSkins .ModDNNFeedbackC .dnnForm .dnnFormItem.Feedback_CharCount {
	color: #BBB;
	line-height: 1;
	padding-top: 0;
	position: absolute;
	right: 0;
	top: -5px;
	width: auto;
}
.aquaeSkins .dnnForm.FeedbackForm .dnnFormItem .divCaptcha, 
.aquaeSkins .dnnForm.FeedbackForm .dnnFormItem .divCaptcha {
	width: 100%;
}
.aquaeSkins .dnnForm.FeedbackForm .dnnFormItem .RadCaptcha {
	margin:auto;
	text-align:center;	
}
.aquaeSkins .dnnForm.FeedbackForm .dnnFormItem .RadCaptcha img {
	display:inline-block !important; /* !needed */
}
.aquaeSkins .ModDNNFeedbackC .dnnActions {
	display:inline-block;
	text-align:center;
	width:100%;
}
.aquaeSkins .ModDNNFeedbackC .dnnActions li {
	display:inline-block;
	float:none;
	list-style:none outside none;
	margin:0 5px;
}
/* Blog ModBlogC */
.aquaeSkins .ModBlogC .dnnLabel {
	float:none;
	position:relative;
	text-align:left;
	width:100%;
}
.aquaeSkins td.blog_rte_defaulttext input, .aquaeSkins td.blog_rte_localization input {
	width:100%;
}
.aquaeSkins .ModBlogC div.summary {
	padding-bottom:20px;
}
.aquaeSkins .ModBlogC .summary p:last-child {
	margin-bottom:0;
}
.aquaeSkins .ModBlogC .is-post.is-post-excerpt > div:last-child a {
	margin-bottom:8px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	background:#75CB19;
	text-align:center;
	display:inline-block;
	line-height:30px;
	color:#FFF;
	padding:0 10px;
	margin-bottom:1.5em;
}
.aquaeSkins .ModBlogC .blogBar {
	background:none repeat scroll 0 0 #F9F9F9;
	height:auto !important;
	padding:9px 10px 0;
	position:absolute;
	top:-1px;
	-webkit-border-bottom-right-radius:4px;
	-webkit-border-bottom-left-radius:4px;
	-moz-border-radius-bottomright:4px;
	-moz-border-radius-bottomleft:4px;
	border-bottom-right-radius:4px;
	border-bottom-left-radius:4px;
	border:1px solid #F2F2F2;
	border-top:0;
	line-height:0;
}
.aquaeSkins .ModBlogC .blogBar div {
	padding-bottom:6px;
}
.showControlBar .aquaeSkins .ModBlogC .blogBar div {
	padding:9px 10px 6px 19px;
}
.showControlBar .aquaeSkins .ModBlogC .blogBar .dnnSecondaryAction + .dnnPrimaryAction, .dnnSecondaryAction + .dnnSecondaryAction  {
	margin-left:0 !important;
}


/* Styles for Containers  */
/* Styles for Containers Title Container */

/* Generic */
.TitleWidth {
	margin:0;
	padding:0;
}
.TitleTitle {
	padding:0;
}
.TitleTitle h2 {
	padding:0;
	margin: 0 0 25px;
	text-transform:none;
}
.TitleTitle h4 {
	padding:0;
	margin: 0 0 15px;
	text-transform:none;
}
.TitleContentpane {
	vertical-align: top;
	padding:0;
	clear:both;
}
.TitleIcon {
	float:left;
}
.TitleIcon img {
	margin:0 8px 0 0;
}

/* Title Color */
.TitleTitle h2,
.TitleTitle h2 .ContainerTitle,
.TitleTitle h4,
.TitleTitle h4 .ContainerTitle {
	color:#222;
}
.BlueCont.TitleColor .TitleTitle h2,
.BlueCont.TitleColor .TitleTitle h2 .ContainerTitle,
.BlueCont.TitleColor .TitleTitle h4,
.BlueCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#39F;
}
.GoldCont.TitleColor .TitleTitle h2,
.GoldCont.TitleColor .TitleTitle h2 .ContainerTitle,
.GoldCont.TitleColor .TitleTitle h4,
.GoldCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#EBBF26;
}
.GreenCont.TitleColor .TitleTitle h2,
.GreenCont.TitleColor .TitleTitle h2 .ContainerTitle,
.GreenCont.TitleColor .TitleTitle h4,
.GreenCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#75CB19;
}
.OrangeCont.TitleColor .TitleTitle h2,
.OrangeCont.TitleColor .TitleTitle h2 .ContainerTitle,
.OrangeCont.TitleColor .TitleTitle h4,
.OrangeCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#F93;
}
.PurpleCont.TitleColor .TitleTitle h2,
.PurpleCont.TitleColor .TitleTitle h2 .ContainerTitle,
.PurpleCont.TitleColor .TitleTitle h4,
.PurpleCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#9457B1;
}
.RedCont.TitleColor .TitleTitle h2,
.RedCont.TitleColor .TitleTitle h2 .ContainerTitle,
.RedCont.TitleColor .TitleTitle h4,
.RedCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#D5082E;
}

/* Title Type */
.TitleTitle h4 .ContainerTitle {
	/* EQ removed */
	/* text-transform:uppercase; */
	/* EQ end */
}
.linedTitle .TitleTitle h4 .ContainerTitle {
	border-bottom: 1px solid #ECECEC;
	display: inline-block;
	padding:9px 48px 20px;
	margin-bottom:5px;
}

/* On the Footer Panes */
.footerPanes .TitleTitle h2,
.footerPanes .TitleTitle h4 {
	padding:0;
	margin: 0 0 15px;
	text-transform:none;
}
.footerPanes .TitleTitle h2 .ContainerTitle,
.footerPanes .TitleTitle h4 .ContainerTitle {
	color:#999;
	font-size:17px;
	font-weight:bold;
	text-transform:uppercase;
}
.footerPanes .TitleColor .TitleTitle h2 .ContainerTitle,
.footerPanes .TitleColor .TitleTitle h4 .ContainerTitle {
	color:#FFF;
	font-size:17px;
	font-weight:bold;
	text-transform:uppercase;
}
.footerPanes .linedTitle .TitleTitle h4 .ContainerTitle {
	border-bottom: 1px solid #999;
	padding:9px 23px 20px;
	margin: 0 0 2px;
}
.footerPanes .ContainerTitle.LabelEditTextClass {
	color:#BBB !important;
}

/* Icon Top */
.IconTop .TitleIcon {
	float:none;
	display:block;
	text-align:center;
}
.IconTop .TitleIcon img {
	margin:0 0 20px;
	padding:0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/* Icon Side */
.IconSide .TitleContent {
	float:left;
	margin-left:85px;
}
.IconSide .TitleIcon {
	float:left;
	margin-right:-85px;
}
.IconSide .TitleIcon img {
	max-width:65px;
	margin:0;
	padding:0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/* Icon Color */
.BlueCont.IconTop .TitleIcon img,
.BlueCont.IconSide .TitleIcon img {
	background:#39F;
}
.GoldCont.IconTop .TitleIcon img,
.GoldCont.IconSide .TitleIcon img {
	background:#EBBF26;
}
.GreenCont.IconTop .TitleIcon img,
.GreenCont.IconSide .TitleIcon img {
	background:#75CB19;
}
.OrangeCont.IconTop .TitleIcon img,
.OrangeCont.IconSide .TitleIcon img {
	background:#F93;
}
.PurpleCont.IconTop .TitleIcon img,
.PurpleCont.IconSide .TitleIcon img {
	background:#9457B1;
}
.RedCont.IconTop .TitleIcon img,
.RedCont.IconSide .TitleIcon img {
	background:#D5082E;
}


/* Full Screen Container */
.fullScreen {
  -webkit-background-size: cover;
	background-size: cover;
	display: table;
	width: 100%;
	height:100%;
}
.fullScreen .TitleWidth {
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	height:100%;
}
.fullScreen .TitleWidth > *:first-child {
	margin-top: -70px;
}
.splashPage .fullScreen .TitleWidth > *:first-child {
	margin-top:0;
}


/* Container Paddings */
.padThis {
	padding:50px 25px;
}
.noBottomPad {
	padding-bottom:0 !important;
}
.noTopPad {
	padding-top:0 !important;
}
.noPad {
	padding:0 !important;
}



/* EQ various edits throughout file */
/* Main Color Override */

/* delete the next line to uncomment as well as the last line of the document */


.posts div a {
	color: #fff;
	background-color: #272780;
}
.filter a.selected {
	color:#CC0033;  /* set to product edition colour */
}
.filter a.selected:hover, .filter a:hover {
	color:#CC0033;
}
.classic.isotope li {
	padding: 0 0 25px 0;
}
.classic.isotope li:hover > h4 {
	border-bottom:3px solid #CC0033;  /* set to product edition colour */
}
.classic.isotope a:link, .classic.isotope a:visited {
	color:#272780;
}
.classic.isotope a:hover {
	color:#CC0033;
}
a.menuButton, a.menuButton:hover {
	color:#272780;
}
a, a:link, a:visited, a:active {
	color:#CC0033;
}
a:hover {
	color:#FB2D37;
}
H1, .h1, H3, .h3, a.Head:Link, a.Head:Visited, a.Head:Active, a.Head:Hover, a.SubHead:Link, a.SubHead:Visited, a.SubHead:Active, a.SubHead:Hover, a.SubSubHead:Link, a.SubSubHead:Visited, a.SubSubHead:Active, a.SubSubHead:Hover, a.SkinObject:Link, a.SkinObject:Visited, a.SkinObject:Active, a.SkinObject:Hover, a.CommandButton:link, a.CommandButton:visited, a.CommandButton:active, .StandardButton, a.StandardButton:Link, a.StandardButton:Visited, a.StandardButton:Active {
	color:#272780;
}
a.CommandButton:hover, a.StandardButton:Hover {
	color:#666;
}
li.userMessages a:hover, li.userNotifications a:hover {
	color:#999;
}
li.userMessages a > span, li.userNotifications a > span {
	background:#272780;
	color:#FFF;
}
a.Logintxt, .registerGroup a {
	color:#fff;
}
a.Logintxt:hover, .registerGroup a:hover {
	color:#000;
}
.breadcrumbMain h3 {
	color:#222;
}
.breadLeft h3 {
	color:#272780;
}
a.breadcrumbText {
	color:#fff;
}
a.breadcrumbText:hover {
	color:#A09FFC;
}
.searchMain .NormalTextBox {
	border:1px solid #F2F2F2;
	background:#FFF;
}
.searchMain .SearchInput {
	color:#fff;
}
.searchMain .SearchInput:hover {
	color:#222;
	background:#F2F2F2;
}
ul.searchSkinObjectPreview {
	border:1px solid #F2F2F2 !important;
	border-top:3px solid #272780 !important;
}
ul.searchSkinObjectPreview > li {
	border-bottom:1px solid #F2F2F2;
}
ul.searchSkinObjectPreview > li:hover {
	background-color:#F9F9F9 !important;
}
a.searchButton {
	color:#272780;
}
a.searchButton:hover {
	color:#272780;
}
a.searchButtonClose {
	color:#fff;
}
a.searchButtonClose:hover {
	color:#222;
	background:#F2F2F2;
}

/* EC add this for green footer background */
.footerMain {
	background:#272780;
}


.footerMain a {
	color:#FFF;
}  
.footerMain a:hover {
	color:#A09FFC;
}
.Footertxt, a.Footertxt {
	color:#999;
}
a.Footertxt:hover {
	color:#DDD;
}
#topContent {
	background:#666;
	color:#FFF;
}
a.nextScreenButton {
	color: #888;
}
a.nextScreenButton:hover, a.nextScreenButton:active, a.nextScreenButton:focus {
	color:#AAA;
}
.dnnPrimaryAction, a.dnnPrimaryAction, .dnnFormItem input[type="submit"], .dnnPrimaryAction:hover, a.dnnPrimaryAction:hover, .dnnPrimaryAction:active, a.dnnPrimaryAction:active, .dnnPrimaryAction:focus, a.dnnPrimaryAction:focus, .dnnSecondaryAction, a.dnnSecondaryAction, .dnnSecondaryAction:hover, a.dnnSecondaryAction:hover, .dnnSecondaryAction:active, a.dnnSecondaryAction:active, .dnnSecondaryAction:focus, a.dnnSecondaryAction:focus {
	background:#272780; /* set to product edition colour */
	color:#FFF;
}
.dnnPrimaryAction:hover, a.dnnPrimaryAction:hover, .dnnPrimaryAction:active, a.dnnPrimaryAction:active, .dnnPrimaryAction:focus, a.dnnPrimaryAction:focus {
	background:#666;
}
.dnnSecondaryAction, a.dnnSecondaryAction {
	background:#666;
}
.dnnSecondaryAction:hover, a.dnnSecondaryAction:hover, .dnnSecondaryAction:active, a.dnnSecondaryAction:active, .dnnSecondaryAction:focus, a.dnnSecondaryAction:focus {
	background:#272780;  /* set to product edition colour */
}
.list li:before {
	color:#272780;
}
ul.social li a {
	color:#F7F7F8;
}
ul.social li a:hover {
	color:#A09FFC;
}
.footerPanes ul.social li a {
	color:#999;
}
.footerPanes ul.social li a:hover {
	color:#DDD;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus, .panel-primary > .panel-heading {
	background-color:#272780;
	background-image:linear-gradient(to bottom, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0) 100%);
}
.panel-heading h1, .panel-heading h2, .panel-heading h3, .panel-heading h4, .panel-heading h5, .panel-heading h6, .panel-heading .h1, .panel-heading .h2, .panel-heading .h3, .panel-heading .h4, .panel-heading .h5, .panel-heading .h6 {
	color:inherit;
}
a.btn-primary, a.btn-success, a.btn-info, a.btn-warning, a.btn-danger {
	color:#FFF;
}
a.list-group-item.active > .badge, .nav-pills > .active > a > .badge, .btn-primary .badge {
	color:#272780;
}
.nav .caret {
	border-bottom-color:#272780;
	border-top-color:#272780;
}
.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .panel-primary > .panel-heading, .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
	background-color:#272780!important;  /* set to product edition colour */
	border-color:#272780!important;  /* set to product edition colour */
	/* background-image:linear-gradient(to bottom, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0) 100%); */
}
.btn:hover {
	background-color:#CC0033!important;
	border-color:#CC0033!important;
}
.panel-primary {
	border-color:#272780;
}
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary.active {
	background-color:#272780;  /* set to product edition colour */
	border-color:#272780;  /* set to product edition colour */
}
.aquaeSkins .UserProfileControls .dnnSecondaryAction {
	color:#272780;
	background:#F9F9F9;
}
.aquaeSkins .UserProfileControls .dnnSecondaryAction:hover {
	color:#FFF;
	background:#272780;
}
.aquaeSkins .DnnModule-Messaging-Notifications .dnnAdminTabNav a span {
	background:#272780;
	color:#FFF;
}
.aquaeSkins .selectDrop > a:after {
	color:#272780;
}
.aquaeSkins .selectDrop > a:hover:after {
	color:#666;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle:hover, .aquaeSkins .smListings .ActiveToggle {
	background: #CCC;
}
.aquaeSkins .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle, .aquaeSkins .smListings .ActiveToggle:hover {
	background:#272780;
}
.aquaeSkins #mdMemberList .friendProfileActions li a {
	color:#FFF !important;
	background:#272780;
}
.aquaeSkins #mdMemberList .friendProfileActions li a:hover {
	background:#666;
}
.aquaeSkins .console-none h3,
.aquaeSkins .profile .console-none h3 {
	color:#FFF !important;
	background:#272780;
}
.aquaeSkins .console-mouseon h3,
.aquaeSkins .profile .console-mouseon h3 {
	background:#666;
}
.aquaeSkins .ModViewProfileC .pContact ul li:before {
	color:#272780;
}
.aquaeSkins .footerPanes .ModDNNLinksC .linkitem a {
	color:#999;
}
.aquaeSkins .footerPanes .ModDNNLinksC .linkitem a:hover {
	color:#DDD;
}
.aquaeSkins .ModDNNLinksC .linklist.Horizontal a {
	background:#272780;
	color:#FFF;
}
.aquaeSkins .ModDNNLinksC .linklist.Horizontal a:hover {
	background:#666;
	color:#FFF;
}
.aquaeSkins .ModBlogC .is-post.is-post-excerpt > div:last-child a {
	background:#272780;
	color:#FFF;
}
.wideScreen .sl-slide-4 h1 {
	color:#272780;
}
.GreenCont.TitleColor .TitleTitle h2, .GreenCont.TitleColor .TitleTitle h2 .ContainerTitle, .GreenCont.TitleColor .TitleTitle h4, .GreenCont.TitleColor .TitleTitle h4 .ContainerTitle {
	color:#272780;
}
.footerPanes .TitleTitle h2 .ContainerTitle, .footerPanes .TitleTitle h4 .ContainerTitle {
	color:#999;
}
.footerPanes .TitleColor .TitleTitle h2 .ContainerTitle, .footerPanes .TitleColor .TitleTitle h4 .ContainerTitle {
	color:#FFF;
}
.GreenCont.IconTop .TitleIcon img, .GreenCont.IconSide .TitleIcon img {
	background:#fff;
}

/* Product colours for banner background, titles and buttons */
.MainBanner {
	background: #272780;
}
h1.bannerText {
    color: #ffffff;
}
h2.bannerText {
    color: #ffffff;
}
.MainBanner a.dnnPrimaryAction,.MainBanner a.dnnSecondaryAction:hover {
    background: #cc0033;
}
.MainBanner a.dnnSecondaryAction, .MainBanner a.dnnPrimaryAction:hover {
    background: #57575F;
}

/* Product colours for text in Beyond Bootstrap accordion tabs */
.nav-tabs {
	border-bottom: 1px solid #57575F;
}
.nav-tabs > li > a {
	color: #272780
}
.nav-tabs> li.active> a, .nav-tabs> li.active> a:focus {
	border: 1px solid #57575F;
	border-bottom-color: #FFF; /* transparent doesn't work reliably in IE */
	color: #272780;  /* set to product edition colour */
}
.nav-tabs> li.active> a:hover, .nav-tabs> li> a:hover {
	border: 1px solid #57575F;
	border-bottom-color: #FFF; /* transparent doesn't work reliably in IE */
	color: #CC0033;
}
.tabbable .panel-heading {
  /* standard greys */
  background: #F7F7F8;
  border: 1px solid #A09FAC;
  color: #666;
  padding:0;
}
.tabbable .panel-heading a {
	color:#272780;
}
.tabbable .panel-heading a:hover {
	color: #CC0033;
}

/* Contact Form */
label.control-label {
	font-weight:normal !important;
	padding-bottom: 6px;
}

.bstrap30 .form-group {
	padding: 0px 10px;
}

.bstrap30 .form-group.last {
	background: rgb(0,233,236);
}

.bstrap30 .form-control {
	border-radius:0!important;
}

.bstrap30 .btn {
	border-radius:0!important;padding:
	4px 31px!important;
	border: 0!important;
	transition:all 0.5s ease-out 0s;
}

.bstrap30 .btn.active {
	color:#fff;
	background:#272780;  /* set to product edition colour */
	box-shadow: none;
}

.bstrap30 .btn:hover {
	background:#CC0033!important;
}

.bstrap30 .form-control:focus {
	border-color: #272780!important;
	box-shadow: 0 0 2px #272780!important;
}
 
.alert-info {
	background-color:#F7F7F8 !important;
	background-image:none !important;
	border-color: #F7F7F8 !important;
}

/* Re-Styling colour for Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons .owl-prev {
	color: #272780;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
	color: #272780;
}

/*------Niraj------------*/
#dnn_ContactFormPane .bstrap30 .form-horizontal .control-label,
#dnn_ContactFormPane .bstrap30 .radio label, 
#dnn_ContactFormPane .bstrap30 .checkbox label,
#dnn_GreyTopPane .bstrap30 .form-horizontal .control-label,
#dnn_GreyTopPane .bstrap30 .radio label, 
#dnn_GreyTopPane .bstrap30 .checkbox label{color:#57575F;}
#dnn_ContactFormPane .bstrap30 .form-control,
#dnn_GreyTopPane .bstrap30 .form-control{padding:3px 12px;color: #A09FAC;}

.row-fluid{padding:70px 0;}
#content{color:#fff;padding:30px;position:absolute; text-shadow:2px 2px #000;top:150px;}
.carousel-control.right, .carousel-control.left{ background:none;}
.slider-mobile h6{color:#272780;font-family:"FSMatthew Medium";font-size:100px;}
.row-slider{border-top:1px solid #ccc;border-bottom:1px solid #ccc;}
.expenses-bg{background:#000;}
.expenses-bg .WhiteBox{background:none;}
.bannerMainFull{width:100%;position:relative;}
.True_Admin #dnn_FooterPaneQuarter5{display:block!important;}
/* jh Sept 2021 moved to skin.css #dnn_FooterPaneQuarter5{padding: 0 30px 20px;} */
.four-icons>div{margin-bottom:80px;}
h1.small_title{text-align:center;font-size:14px;}


.language-object .NormalTextBox{
	background: #272780;

}


/* EQ various edits throughout file */
/* Let's go responsive, baby! */

img {
	max-width:100%;
	height:auto;
}

/* parallax stuff */
.mobile body {
	overflow: hidden;
}
.mobile .BGTable {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}
.mobile #scroller {
	height: 3000px;
}

@media only screen and (max-width : 880px) {
	H1, .h1 {
	font-size:36px;
	}
	H2, .h2 {
	font-size:28px;
	}
}

@media only screen and (max-width : 640px) {
	H1, .h1 {
	font-size:30px;
	}
	H2, .h2 {
	font-size:24px;
	}
	H3, .h3 {
       font-size:20px;
    }

}

@media only screen and (max-width : 320px) {
	H1, .h1 {
	font-size:28px;
	}
	H2, .h2 {
	font-size:20px;
	}
    H3, .h3 {
      font-size:18px;
       }
    H4, .h4 {
       font-size:16px;
       }
	
}

@media (max-width:1179px) {
	.siteWidth {
		width:auto !important;
	}
	
	/* Recent News */
	.left.rn_content{width:140px;}
}
@media (max-width:1024px) {
	/* modules */
	.aquaeSkins .MainPane #mdMemberList > li {
		width:50%;
	}
	.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type .Feedback_Field {
		width:100%;
	}
	.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type > div:nth-child(2n-1),
	.aquaeSkins .ModDNNFeedbackC fieldset:first-of-type > div:nth-child(2n) {
		padding:0;
	}
}

@media only screen and (max-width : 992px) {
	.logoMain {
		padding: 13px 0;
		height: 55px;
	}
	.logoMain img {
		height: 29px; /* 55 - 13 * 2 = 29 */
	}
}

@media (min-width:769px) and (max-width:992px) {
	/* Sign In to match size of main menu text when window narrows */
	.loginMain {
		font-size: 14px;
	}
	
	/* Recent News (2 column footer) */
	.left.rn_content{width:260px;}
}

/* Switch to mobile menu, etc */
@media (max-width:640px) {
	
	.bannerMainFull .parallaxMe .siteWidth {
		margin-top:160px;
	}
	.bannerMainFull .parallaxMe img {
		-webkit-transform: scale(0.5);
		-moz-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
		filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.9999619230641713, M12=-0.008726535498373935, M21=0.008726535498373935, M22=0.9999619230641713,SizingMethod='auto expand');
	}

	.bannerMainFull .parallaxMe h1,
	.backgroundMe .owlCarousel h1 {
		font-size:45px;
	}
	.bannerMainFull .parallaxMe h2,
	.backgroundMe .owlCarousel h2 {
		font-size:25px;
	}

	/* modules */
	.DnnAnnImage {
		width:50%;
	}
	.aquaeSkins .MainPane #mdMemberList > li {
		width:100%;
	}
	
	/* content */
	.WhiteBox {
	  margin:40px;
	}
	
	.triggerAnimation.delay750.animated.bounceInDown{top:100px!important;}
	.triggerAnimation.delay1000.animated.bounceInDown{top:155px!important;font-size: 40px;}

	/*  owlCarousel */
	.owlCarousel-img{position:absolute!important;text-align:center!important;width:100%;}
	.owlCarousel-img img{opacity: 0.2;}
	.owlCarousel-img+.col-md-6{}
}

@media (max-width:640px) {	
	/* Recent News (1 column footer) */
	.left.rn_content{width:280px;}
}

@media (max-width:599px) {
	.imgLeft,
	.imgRight {
		float:none;
		margin:0 auto 20px;
		display:block;
	}
}

@media (max-width:480px) {
	/* EQ Show banner text in smaller size, with correction for reduced padThis */
	/* jh
	h1.bannerText {
		font-size:28px;
		padding:40px 20% 0 0;
	}
	
	h2.bannerText {
		font-size:18px;
		padding:0 20% 0 0;
	}
	*/ 
	/* EQ end*/
	
	.padThis {
		padding:10px 15px;
	}
	
	.alignContBottom {
		margin-bottom:-25px
	}
	a.nextScreenButton {
		border-top-left-radius: 100%;
		border-top-right-radius: 0;
		width: 50px;
		height: 50px;
		line-height: 70px;
		padding-left: 10px;
		left:auto;
		right:0;
		margin:0;
	}
		
	
	/* content */
	.WhiteBox {
		margin: 30px;
	}

	.bannerMainFull .parallaxMe h1,
	.backgroundMe .owlCarousel h1 {
		margin-top:80px;
		font-size:35px;
	}
	.bannerMainFull .parallaxMe h2,
	.backgroundMe .owlCarousel h2 {
		font-size:20px;
	}
	/* modules */
	.showControlBar .aquaeSkins .ModBlogC .blog-main-content {
	  padding: 5.5em 0 0;
	}
	.showControlBar .aquaeSkins .ModBlogC .dnnPrimaryAction,
	.showControlBar .aquaeSkins .ModBlogC .dnnSecondaryAction {
	  padding:7px;
	}
	.aquaeSkins .dnnMemberDirectory .mdSearchBar input[type="text"] {
		display: block;
		float: left;
		width: 160px;
	}
	.triggerAnimation.delay750.animated.bounceInDown{top:50px!important;}
	.triggerAnimation.delay1000.animated.bounceInDown{top:100px!important;font-size:30px;}
}

@media (max-height:480px) {	
	/* content */
	.bannerMainFull .parallaxMe h1,
	.backgroundMe .owlCarousel h1 {
		margin-top:80px;
		font-size:35px;
	}
	.bannerMainFull .parallaxMe .position1,
	.bannerMainFull .parallaxMe .position2,
	.backgroundMe .owlCarousel .position1,
	.backgroundMe .owlCarousel .position2,
	.backgroundMe .owlCarousel .position3 {
		max-width: 22%;
	}
}

@media (max-width:350px) {
	/* EQ Hide sub-heading on banner */
	/*
	h2.bannerText {
		display: none;
	}
	*/
	/* EQ end*/
}
	
@media (max-width:400px) {
	.breadLeft {
	  float: none;
	  padding: 15px 0 0;
	}
	.breadRight {
	  float: none;
	  padding: 5px 0 15px;
	}

	/* modules */
	.aquaeSkins .DnnAnnImage {
		width:100%;
		margin-bottom:10px;
	}
	.aquaeSkins .dnnForm.FeedbackForm .dnnFormItem .RadCaptcha.RadCaptcha_Default {
		width: 100%;
	}

	/* search results */
	.aquaeSkins .dnnSearchBox_advanced,
	.aquaeSkins .dnnSearchBoxClearText.dnnShow {
		display: none !important;
	}
	.aquaeSkins .dnnSearchBoxPanel .dnnSearchBox {
		margin-right: 10px;
	}
	.aquaeSkins .dnnSearchResultAdvancedTip {
		overflow: hidden;
		visibility: hidden;
	}
	.aquaeSkins .dnnSearchBox > a.dnnSearchButton {
		right: 7px;
	}
	.aquaeSkins .dnnSearchBox > input {
		width: 85% !important;
	}
	.aquaeSkins .dnnSearchResultPanel {
		display: none;
	}

	/* content */
	.WhiteBox {
	  margin: 0;
	}
	
	/* Recent News (1 column footer) */
	.left.rn_content{width:150px;}
}

@media (max-width:250px) {
	.TopBarPane {
		display:none;
	}
	
	/* Recent News (1 column footer) */
	.left.rn_content{width:100px;}
}

@media only screen and (max-width : 740px) {
.breadRight { display:none; }
}

/* Request by Rachel to enable modules to be hidden on mobile devices */
@media only screen and (max-width: 767px) {
.hide-mobile {
display: none;
}
}

@media only screen and (max-width : 740px) {
.breadAbsolute { display:none; }
}



/* alignment */
.text-center {text-align:center;}
.text-left {text-align:left;}
.text-right {text-align:right;}
@media (max-width:767px) {
	.text-center-xs {text-align:center;}
	.text-left-xs {text-align:left;}
	.text-right-xs {text-align:right;}
}
@media (max-width:640px) {
	.text-center-xxs {text-align:center;}
	.text-left-xxs {text-align:left;}
	.text-right-xxs {text-align:right;}
}
@media (min-width:768px) and (max-width:991px) {
	.text-center-sm {text-align:center;}
	.text-left-sm {text-align:left;}
	.text-right-sm {text-align:right;}
}
@media (min-width:992px) and (max-width:1199px) {
	.text-center-md {text-align:center;}
	.text-left-md {text-align:left;}
	.text-right-md {text-align:right;}
}
@media (min-width:1200px) {
	.text-center-lg {text-align:center;}
	.text-left-lg {text-align:left;}
	.text-right-lg {text-align:right;}
}

/* float */
.float-left {float:left;}
.float-right {float:right;}
.float-none {float:none;}
@media (max-width:767px) {
	.float-left-xs {float:left;}
	.float-right-xs {float:right;}
	.float-none-xs {float:none;}
}
@media (max-width:640px) {
	.float-left-xxs {float:left;}
	.float-right-xxs {float:right;}
	.float-none-xxs {float:none;}
}
@media (min-width:768px) and (max-width:991px) {
	.float-left-sm {float:left;}
	.float-right-sm {float:right;}
	.float-none-sm {float:none;}
}
@media (min-width:992px) and (max-width:1199px) {
	.float-left-md {float:left;}
	.float-right-md {float:right;}
	.float-none-md {float:none;}
}
@media (min-width:1200px) {
	.float-left-lg {float:left;}
	.float-right-lg {float:right;}
	.float-none-lg {float:none;}
}

/* margin */
.margin-0 {margin:0px;}
.margin-5 {margin:5px;}
.margin-10 {margin:10px;}
.margin-15 {margin:15px;}
.margin-20 {margin:20px;}
.margin-25 {margin:25px;}
.margin-30 {margin:30px;}
.margin-35 {margin:35px;}
.margin-40 {margin:40px;}
.margin-45 {margin:45px;}
.margin-50 {margin:50px;}
.margin-top-0 {margin-top:0px;}
.margin-top-5 {margin-top:5px;}
.margin-top-10 {margin-top:10px;}
.margin-top-15 {margin-top:15px;}
.margin-top-20 {margin-top:20px;}
.margin-top-25 {margin-top:25px;}
.margin-top-30 {margin-top:30px;}
.margin-top-35 {margin-top:35px;}
.margin-top-40 {margin-top:40px;}
.margin-top-45 {margin-top:45px;}
.margin-top-50 {margin-top:50px;}
.margin-right-0 {margin-right:0px;}
.margin-right-5 {margin-right:5px;}
.margin-right-10 {margin-right:10px;}
.margin-right-15 {margin-right:15px;}
.margin-right-20 {margin-right:20px;}
.margin-right-25 {margin-right:25px;}
.margin-right-30 {margin-right:30px;}
.margin-right-35 {margin-right:35px;}
.margin-right-40 {margin-right:40px;}
.margin-right-45 {margin-right:45px;}
.margin-right-50 {margin-right:50px;}
.margin-bottom-0 {margin-bottom:0px;}
.margin-bottom-5 {margin-bottom:5px;}
.margin-bottom-10 {margin-bottom:10px;}
.margin-bottom-15 {margin-bottom:15px;}
.margin-bottom-20 {margin-bottom:20px;}
.margin-bottom-25 {margin-bottom:25px;}
.margin-bottom-30 {margin-bottom:30px;}
.margin-bottom-35 {margin-bottom:35px;}
.margin-bottom-40 {margin-bottom:40px;}
.margin-bottom-45 {margin-bottom:45px;}
.margin-bottom-50 {margin-bottom:50px;}
.margin-left-0 {margin-left:0px;}
.margin-left-5 {margin-left:5px;}
.margin-left-10 {margin-left:10px;}
.margin-left-15 {margin-left:15px;}
.margin-left-20 {margin-left:20px;}
.margin-left-25 {margin-left:25px;}
.margin-left-30 {margin-left:30px;}
.margin-left-35 {margin-left:35px;}
.margin-left-40 {margin-left:40px;}
.margin-left-45 {margin-left:45px;}
.margin-left-50 {margin-left:50px;}
/* negative */
.margin-neg-5 {margin:-5px;}
.margin-neg-10 {margin:-10px;}
.margin-neg-15 {margin:-15px;}
.margin-neg-20 {margin:-20px;}
.margin-neg-25 {margin:-25px;}
.margin-neg-30 {margin:-30px;}
.margin-neg-35 {margin:-35px;}
.margin-neg-40 {margin:-40px;}
.margin-neg-45 {margin:-45px;}
.margin-neg-50 {margin:-50px;}
.margin-top-neg-5 {margin-top:-5px;}
.margin-top-neg-10 {margin-top:-10px;}
.margin-top-neg-15 {margin-top:-15px;}
.margin-top-neg-20 {margin-top:-20px;}
.margin-top-neg-25 {margin-top:-25px;}
.margin-top-neg-30 {margin-top:-30px;}
.margin-top-neg-35 {margin-top:-35px;}
.margin-top-neg-40 {margin-top:-40px;}
.margin-top-neg-45 {margin-top:-45px;}
.margin-top-neg-50 {margin-top:-50px;}
.margin-right-neg-5 {margin-right:-5px;}
.margin-right-neg-10 {margin-right:-10px;}
.margin-right-neg-15 {margin-right:-15px;}
.margin-right-neg-20 {margin-right:-20px;}
.margin-right-neg-25 {margin-right:-25px;}
.margin-right-neg-30 {margin-right:-30px;}
.margin-right-neg-35 {margin-right:-35px;}
.margin-right-neg-40 {margin-right:-40px;}
.margin-right-neg-45 {margin-right:-45px;}
.margin-right-neg-50 {margin-right:-50px;}
.margin-bottom-neg-5 {margin-bottom:-5px;}
.margin-bottom-neg-10 {margin-bottom:-10px;}
.margin-bottom-neg-15 {margin-bottom:-15px;}
.margin-bottom-neg-20 {margin-bottom:-20px;}
.margin-bottom-neg-25 {margin-bottom:-25px;}
.margin-bottom-neg-30 {margin-bottom:-30px;}
.margin-bottom-neg-35 {margin-bottom:-35px;}
.margin-bottom-neg-40 {margin-bottom:-40px;}
.margin-bottom-neg-45 {margin-bottom:-45px;}
.margin-bottom-neg-50 {margin-bottom:-50px;}
.margin-left-neg-5 {margin-left:-5px;}
.margin-left-neg-10 {margin-left:-10px;}
.margin-left-neg-15 {margin-left:-15px;}
.margin-left-neg-20 {margin-left:-20px;}
.margin-left-neg-25 {margin-left:-25px;}
.margin-left-neg-30 {margin-left:-30px;}
.margin-left-neg-35 {margin-left:-35px;}
.margin-left-neg-40 {margin-left:-40px;}
.margin-left-neg-45 {margin-left:-45px;}
.margin-left-neg-50 {margin-left:-50px;}
@media (max-width:767px) {
	.margin-xs-0 {margin:0px;}
	.margin-xs-5 {margin:5px;}
	.margin-xs-10 {margin:10px;}
	.margin-xs-15 {margin:15px;}
	.margin-xs-20 {margin:20px;}
	.margin-xs-25 {margin:25px;}
	.margin-xs-30 {margin:30px;}
	.margin-xs-35 {margin:35px;}
	.margin-xs-40 {margin:40px;}
	.margin-xs-45 {margin:45px;}
	.margin-xs-50 {margin:50px;}
	.margin-top-xs-0 {margin-top:0px;}
	.margin-top-xs-5 {margin-top:5px;}
	.margin-top-xs-10 {margin-top:10px;}
	.margin-top-xs-15 {margin-top:15px;}
	.margin-top-xs-20 {margin-top:20px;}
	.margin-top-xs-25 {margin-top:25px;}
	.margin-top-xs-30 {margin-top:30px;}
	.margin-top-xs-35 {margin-top:35px;}
	.margin-top-xs-40 {margin-top:40px;}
	.margin-top-xs-45 {margin-top:45px;}
	.margin-top-xs-50 {margin-top:50px;}
	.margin-right-xs-0 {margin-right:0px;}
	.margin-right-xs-5 {margin-right:5px;}
	.margin-right-xs-10 {margin-right:10px;}
	.margin-right-xs-15 {margin-right:15px;}
	.margin-right-xs-20 {margin-right:20px;}
	.margin-right-xs-25 {margin-right:25px;}
	.margin-right-xs-30 {margin-right:30px;}
	.margin-right-xs-35 {margin-right:35px;}
	.margin-right-xs-40 {margin-right:40px;}
	.margin-right-xs-45 {margin-right:45px;}
	.margin-right-xs-50 {margin-right:50px;}
	.margin-bottom-xs-0 {margin-bottom:0px;}
	.margin-bottom-xs-5 {margin-bottom:5px;}
	.margin-bottom-xs-10 {margin-bottom:10px;}
	.margin-bottom-xs-15 {margin-bottom:15px;}
	.margin-bottom-xs-20 {margin-bottom:20px;}
	.margin-bottom-xs-25 {margin-bottom:25px;}
	.margin-bottom-xs-30 {margin-bottom:30px;}
	.margin-bottom-xs-35 {margin-bottom:35px;}
	.margin-bottom-xs-40 {margin-bottom:40px;}
	.margin-bottom-xs-45 {margin-bottom:45px;}
	.margin-bottom-xs-50 {margin-bottom:50px;}
	.margin-left-xs-0 {margin-left:0px;}
	.margin-left-xs-5 {margin-left:5px;}
	.margin-left-xs-10 {margin-left:10px;}
	.margin-left-xs-15 {margin-left:15px;}
	.margin-left-xs-20 {margin-left:20px;}
	.margin-left-xs-25 {margin-left:25px;}
	.margin-left-xs-30 {margin-left:30px;}
	.margin-left-xs-35 {margin-left:35px;}
	.margin-left-xs-40 {margin-left:40px;}
	.margin-left-xs-45 {margin-left:45px;}
	.margin-left-xs-50 {margin-left:50px;}
	/* negative */
	.margin-xs-neg-5 {margin:-5px;}
	.margin-xs-neg-10 {margin:-10px;}
	.margin-xs-neg-15 {margin:-15px;}
	.margin-xs-neg-20 {margin:-20px;}
	.margin-xs-neg-25 {margin:-25px;}
	.margin-xs-neg-30 {margin:-30px;}
	.margin-xs-neg-35 {margin:-35px;}
	.margin-xs-neg-40 {margin:-40px;}
	.margin-xs-neg-45 {margin:-45px;}
	.margin-xs-neg-50 {margin:-50px;}
	.margin-top-xs-neg-5 {margin-top:-5px;}
	.margin-top-xs-neg-10 {margin-top:-10px;}
	.margin-top-xs-neg-15 {margin-top:-15px;}
	.margin-top-xs-neg-20 {margin-top:-20px;}
	.margin-top-xs-neg-25 {margin-top:-25px;}
	.margin-top-xs-neg-30 {margin-top:-30px;}
	.margin-top-xs-neg-35 {margin-top:-35px;}
	.margin-top-xs-neg-40 {margin-top:-40px;}
	.margin-top-xs-neg-45 {margin-top:-45px;}
	.margin-top-xs-neg-50 {margin-top:-50px;}
	.margin-right-xs-neg-5 {margin-right:-5px;}
	.margin-right-xs-neg-10 {margin-right:-10px;}
	.margin-right-xs-neg-15 {margin-right:-15px;}
	.margin-right-xs-neg-20 {margin-right:-20px;}
	.margin-right-xs-neg-25 {margin-right:-25px;}
	.margin-right-xs-neg-30 {margin-right:-30px;}
	.margin-right-xs-neg-35 {margin-right:-35px;}
	.margin-right-xs-neg-40 {margin-right:-40px;}
	.margin-right-xs-neg-45 {margin-right:-45px;}
	.margin-right-xs-neg-50 {margin-right:-50px;}
	.margin-bottom-xs-neg-5 {margin-bottom:-5px;}
	.margin-bottom-xs-neg-10 {margin-bottom:-10px;}
	.margin-bottom-xs-neg-15 {margin-bottom:-15px;}
	.margin-bottom-xs-neg-20 {margin-bottom:-20px;}
	.margin-bottom-xs-neg-25 {margin-bottom:-25px;}
	.margin-bottom-xs-neg-30 {margin-bottom:-30px;}
	.margin-bottom-xs-neg-35 {margin-bottom:-35px;}
	.margin-bottom-xs-neg-40 {margin-bottom:-40px;}
	.margin-bottom-xs-neg-45 {margin-bottom:-45px;}
	.margin-bottom-xs-neg-50 {margin-bottom:-50px;}
	.margin-left-xs-neg-5 {margin-left:-5px;}
	.margin-left-xs-neg-10 {margin-left:-10px;}
	.margin-left-xs-neg-15 {margin-left:-15px;}
	.margin-left-xs-neg-20 {margin-left:-20px;}
	.margin-left-xs-neg-25 {margin-left:-25px;}
	.margin-left-xs-neg-30 {margin-left:-30px;}
	.margin-left-xs-neg-35 {margin-left:-35px;}
	.margin-left-xs-neg-40 {margin-left:-40px;}
	.margin-left-xs-neg-45 {margin-left:-45px;}
	.margin-left-xs-neg-50 {margin-left:-50px;}
}
@media (max-width:640px) {
	.margin-xxs-0 {margin:0px;}
	.margin-xxs-5 {margin:5px;}
	.margin-xxs-10 {margin:10px;}
	.margin-xxs-15 {margin:15px;}
	.margin-xxs-20 {margin:20px;}
	.margin-xxs-25 {margin:25px;}
	.margin-xxs-30 {margin:30px;}
	.margin-xxs-35 {margin:35px;}
	.margin-xxs-40 {margin:40px;}
	.margin-xxs-45 {margin:45px;}
	.margin-xxs-50 {margin:50px;}
	.margin-top-xxs-0 {margin-top:0px;}
	.margin-top-xxs-5 {margin-top:5px;}
	.margin-top-xxs-10 {margin-top:10px;}
	.margin-top-xxs-15 {margin-top:15px;}
	.margin-top-xxs-20 {margin-top:20px;}
	.margin-top-xxs-25 {margin-top:25px;}
	.margin-top-xxs-30 {margin-top:30px;}
	.margin-top-xxs-35 {margin-top:35px;}
	.margin-top-xxs-40 {margin-top:40px;}
	.margin-top-xxs-45 {margin-top:45px;}
	.margin-top-xxs-50 {margin-top:50px;}
	.margin-right-xxs-0 {margin-right:0px;}
	.margin-right-xxs-5 {margin-right:5px;}
	.margin-right-xxs-10 {margin-right:10px;}
	.margin-right-xxs-15 {margin-right:15px;}
	.margin-right-xxs-20 {margin-right:20px;}
	.margin-right-xxs-25 {margin-right:25px;}
	.margin-right-xxs-30 {margin-right:30px;}
	.margin-right-xxs-35 {margin-right:35px;}
	.margin-right-xxs-40 {margin-right:40px;}
	.margin-right-xxs-45 {margin-right:45px;}
	.margin-right-xxs-50 {margin-right:50px;}
	.margin-bottom-xxs-0 {margin-bottom:0px;}
	.margin-bottom-xxs-5 {margin-bottom:5px;}
	.margin-bottom-xxs-10 {margin-bottom:10px;}
	.margin-bottom-xxs-15 {margin-bottom:15px;}
	.margin-bottom-xxs-20 {margin-bottom:20px;}
	.margin-bottom-xxs-25 {margin-bottom:25px;}
	.margin-bottom-xxs-30 {margin-bottom:30px;}
	.margin-bottom-xxs-35 {margin-bottom:35px;}
	.margin-bottom-xxs-40 {margin-bottom:40px;}
	.margin-bottom-xxs-45 {margin-bottom:45px;}
	.margin-bottom-xxs-50 {margin-bottom:50px;}
	.margin-left-xxs-0 {margin-left:0px;}
	.margin-left-xxs-5 {margin-left:5px;}
	.margin-left-xxs-10 {margin-left:10px;}
	.margin-left-xxs-15 {margin-left:15px;}
	.margin-left-xxs-20 {margin-left:20px;}
	.margin-left-xxs-25 {margin-left:25px;}
	.margin-left-xxs-30 {margin-left:30px;}
	.margin-left-xxs-35 {margin-left:35px;}
	.margin-left-xxs-40 {margin-left:40px;}
	.margin-left-xxs-45 {margin-left:45px;}
	.margin-left-xxs-50 {margin-left:50px;}
	/* negative */
	.margin-xxs-neg-5 {margin:-5px;}
	.margin-xxs-neg-10 {margin:-10px;}
	.margin-xxs-neg-15 {margin:-15px;}
	.margin-xxs-neg-20 {margin:-20px;}
	.margin-xxs-neg-25 {margin:-25px;}
	.margin-xxs-neg-30 {margin:-30px;}
	.margin-xxs-neg-35 {margin:-35px;}
	.margin-xxs-neg-40 {margin:-40px;}
	.margin-xxs-neg-45 {margin:-45px;}
	.margin-xxs-neg-50 {margin:-50px;}
	.margin-top-xxs-neg-5 {margin-top:-5px;}
	.margin-top-xxs-neg-10 {margin-top:-10px;}
	.margin-top-xxs-neg-15 {margin-top:-15px;}
	.margin-top-xxs-neg-20 {margin-top:-20px;}
	.margin-top-xxs-neg-25 {margin-top:-25px;}
	.margin-top-xxs-neg-30 {margin-top:-30px;}
	.margin-top-xxs-neg-35 {margin-top:-35px;}
	.margin-top-xxs-neg-40 {margin-top:-40px;}
	.margin-top-xxs-neg-45 {margin-top:-45px;}
	.margin-top-xxs-neg-50 {margin-top:-50px;}
	.margin-right-xxs-neg-5 {margin-right:-5px;}
	.margin-right-xxs-neg-10 {margin-right:-10px;}
	.margin-right-xxs-neg-15 {margin-right:-15px;}
	.margin-right-xxs-neg-20 {margin-right:-20px;}
	.margin-right-xxs-neg-25 {margin-right:-25px;}
	.margin-right-xxs-neg-30 {margin-right:-30px;}
	.margin-right-xxs-neg-35 {margin-right:-35px;}
	.margin-right-xxs-neg-40 {margin-right:-40px;}
	.margin-right-xxs-neg-45 {margin-right:-45px;}
	.margin-right-xxs-neg-50 {margin-right:-50px;}
	.margin-bottom-xxs-neg-5 {margin-bottom:-5px;}
	.margin-bottom-xxs-neg-10 {margin-bottom:-10px;}
	.margin-bottom-xxs-neg-15 {margin-bottom:-15px;}
	.margin-bottom-xxs-neg-20 {margin-bottom:-20px;}
	.margin-bottom-xxs-neg-25 {margin-bottom:-25px;}
	.margin-bottom-xxs-neg-30 {margin-bottom:-30px;}
	.margin-bottom-xxs-neg-35 {margin-bottom:-35px;}
	.margin-bottom-xxs-neg-40 {margin-bottom:-40px;}
	.margin-bottom-xxs-neg-45 {margin-bottom:-45px;}
	.margin-bottom-xxs-neg-50 {margin-bottom:-50px;}
	.margin-left-xxs-neg-5 {margin-left:-5px;}
	.margin-left-xxs-neg-10 {margin-left:-10px;}
	.margin-left-xxs-neg-15 {margin-left:-15px;}
	.margin-left-xxs-neg-20 {margin-left:-20px;}
	.margin-left-xxs-neg-25 {margin-left:-25px;}
	.margin-left-xxs-neg-30 {margin-left:-30px;}
	.margin-left-xxs-neg-35 {margin-left:-35px;}
	.margin-left-xxs-neg-40 {margin-left:-40px;}
	.margin-left-xxs-neg-45 {margin-left:-45px;}
	.margin-left-xxs-neg-50 {margin-left:-50px;}
}
@media (min-width:768px) and (max-width:991px) {
	.margin-sm-0 {margin:0px;}
	.margin-sm-5 {margin:5px;}
	.margin-sm-10 {margin:10px;}
	.margin-sm-15 {margin:15px;}
	.margin-sm-20 {margin:20px;}
	.margin-sm-25 {margin:25px;}
	.margin-sm-30 {margin:30px;}
	.margin-sm-35 {margin:35px;}
	.margin-sm-40 {margin:40px;}
	.margin-sm-45 {margin:45px;}
	.margin-sm-50 {margin:50px;}
	.margin-top-sm-0 {margin-top:0px;}
	.margin-top-sm-5 {margin-top:5px;}
	.margin-top-sm-10 {margin-top:10px;}
	.margin-top-sm-15 {margin-top:15px;}
	.margin-top-sm-20 {margin-top:20px;}
	.margin-top-sm-25 {margin-top:25px;}
	.margin-top-sm-30 {margin-top:30px;}
	.margin-top-sm-35 {margin-top:35px;}
	.margin-top-sm-40 {margin-top:40px;}
	.margin-top-sm-45 {margin-top:45px;}
	.margin-top-sm-50 {margin-top:50px;}
	.margin-right-sm-0 {margin-right:0px;}
	.margin-right-sm-5 {margin-right:5px;}
	.margin-right-sm-10 {margin-right:10px;}
	.margin-right-sm-15 {margin-right:15px;}
	.margin-right-sm-20 {margin-right:20px;}
	.margin-right-sm-25 {margin-right:25px;}
	.margin-right-sm-30 {margin-right:30px;}
	.margin-right-sm-35 {margin-right:35px;}
	.margin-right-sm-40 {margin-right:40px;}
	.margin-right-sm-45 {margin-right:45px;}
	.margin-right-sm-50 {margin-right:50px;}
	.margin-bottom-sm-0 {margin-bottom:0px;}
	.margin-bottom-sm-5 {margin-bottom:5px;}
	.margin-bottom-sm-10 {margin-bottom:10px;}
	.margin-bottom-sm-15 {margin-bottom:15px;}
	.margin-bottom-sm-20 {margin-bottom:20px;}
	.margin-bottom-sm-25 {margin-bottom:25px;}
	.margin-bottom-sm-30 {margin-bottom:30px;}
	.margin-bottom-sm-35 {margin-bottom:35px;}
	.margin-bottom-sm-40 {margin-bottom:40px;}
	.margin-bottom-sm-45 {margin-bottom:45px;}
	.margin-bottom-sm-50 {margin-bottom:50px;}
	.margin-left-sm-0 {margin-left:0px;}
	.margin-left-sm-5 {margin-left:5px;}
	.margin-left-sm-10 {margin-left:10px;}
	.margin-left-sm-15 {margin-left:15px;}
	.margin-left-sm-20 {margin-left:20px;}
	.margin-left-sm-25 {margin-left:25px;}
	.margin-left-sm-30 {margin-left:30px;}
	.margin-left-sm-35 {margin-left:35px;}
	.margin-left-sm-40 {margin-left:40px;}
	.margin-left-sm-45 {margin-left:45px;}
	.margin-left-sm-50 {margin-left:50px;}
	/* negative */
	.margin-sm-neg-5 {margin:-5px;}
	.margin-sm-neg-10 {margin:-10px;}
	.margin-sm-neg-15 {margin:-15px;}
	.margin-sm-neg-20 {margin:-20px;}
	.margin-sm-neg-25 {margin:-25px;}
	.margin-sm-neg-30 {margin:-30px;}
	.margin-sm-neg-35 {margin:-35px;}
	.margin-sm-neg-40 {margin:-40px;}
	.margin-sm-neg-45 {margin:-45px;}
	.margin-sm-neg-50 {margin:-50px;}
	.margin-top-sm-neg-5 {margin-top:-5px;}
	.margin-top-sm-neg-10 {margin-top:-10px;}
	.margin-top-sm-neg-15 {margin-top:-15px;}
	.margin-top-sm-neg-20 {margin-top:-20px;}
	.margin-top-sm-neg-25 {margin-top:-25px;}
	.margin-top-sm-neg-30 {margin-top:-30px;}
	.margin-top-sm-neg-35 {margin-top:-35px;}
	.margin-top-sm-neg-40 {margin-top:-40px;}
	.margin-top-sm-neg-45 {margin-top:-45px;}
	.margin-top-sm-neg-50 {margin-top:-50px;}
	.margin-right-sm-neg-5 {margin-right:-5px;}
	.margin-right-sm-neg-10 {margin-right:-10px;}
	.margin-right-sm-neg-15 {margin-right:-15px;}
	.margin-right-sm-neg-20 {margin-right:-20px;}
	.margin-right-sm-neg-25 {margin-right:-25px;}
	.margin-right-sm-neg-30 {margin-right:-30px;}
	.margin-right-sm-neg-35 {margin-right:-35px;}
	.margin-right-sm-neg-40 {margin-right:-40px;}
	.margin-right-sm-neg-45 {margin-right:-45px;}
	.margin-right-sm-neg-50 {margin-right:-50px;}
	.margin-bottom-sm-neg-5 {margin-bottom:-5px;}
	.margin-bottom-sm-neg-10 {margin-bottom:-10px;}
	.margin-bottom-sm-neg-15 {margin-bottom:-15px;}
	.margin-bottom-sm-neg-20 {margin-bottom:-20px;}
	.margin-bottom-sm-neg-25 {margin-bottom:-25px;}
	.margin-bottom-sm-neg-30 {margin-bottom:-30px;}
	.margin-bottom-sm-neg-35 {margin-bottom:-35px;}
	.margin-bottom-sm-neg-40 {margin-bottom:-40px;}
	.margin-bottom-sm-neg-45 {margin-bottom:-45px;}
	.margin-bottom-sm-neg-50 {margin-bottom:-50px;}
	.margin-left-sm-neg-5 {margin-left:-5px;}
	.margin-left-sm-neg-10 {margin-left:-10px;}
	.margin-left-sm-neg-15 {margin-left:-15px;}
	.margin-left-sm-neg-20 {margin-left:-20px;}
	.margin-left-sm-neg-25 {margin-left:-25px;}
	.margin-left-sm-neg-30 {margin-left:-30px;}
	.margin-left-sm-neg-35 {margin-left:-35px;}
	.margin-left-sm-neg-40 {margin-left:-40px;}
	.margin-left-sm-neg-45 {margin-left:-45px;}
	.margin-left-sm-neg-50 {margin-left:-50px;}
}
@media (min-width:992px) and (max-width:1199px) {
	.margin-md-0 {margin:0px;}
	.margin-md-5 {margin:5px;}
	.margin-md-10 {margin:10px;}
	.margin-md-15 {margin:15px;}
	.margin-md-20 {margin:20px;}
	.margin-md-25 {margin:25px;}
	.margin-md-30 {margin:30px;}
	.margin-md-35 {margin:35px;}
	.margin-md-40 {margin:40px;}
	.margin-md-45 {margin:45px;}
	.margin-md-50 {margin:50px;}
	.margin-top-md-0 {margin-top:0px;}
	.margin-top-md-5 {margin-top:5px;}
	.margin-top-md-10 {margin-top:10px;}
	.margin-top-md-15 {margin-top:15px;}
	.margin-top-md-20 {margin-top:20px;}
	.margin-top-md-25 {margin-top:25px;}
	.margin-top-md-30 {margin-top:30px;}
	.margin-top-md-35 {margin-top:35px;}
	.margin-top-md-40 {margin-top:40px;}
	.margin-top-md-45 {margin-top:45px;}
	.margin-top-md-50 {margin-top:50px;}
	.margin-right-md-0 {margin-right:0px;}
	.margin-right-md-5 {margin-right:5px;}
	.margin-right-md-10 {margin-right:10px;}
	.margin-right-md-15 {margin-right:15px;}
	.margin-right-md-20 {margin-right:20px;}
	.margin-right-md-25 {margin-right:25px;}
	.margin-right-md-30 {margin-right:30px;}
	.margin-right-md-35 {margin-right:35px;}
	.margin-right-md-40 {margin-right:40px;}
	.margin-right-md-45 {margin-right:45px;}
	.margin-right-md-50 {margin-right:50px;}
	.margin-bottom-md-0 {margin-bottom:0px;}
	.margin-bottom-md-5 {margin-bottom:5px;}
	.margin-bottom-md-10 {margin-bottom:10px;}
	.margin-bottom-md-15 {margin-bottom:15px;}
	.margin-bottom-md-20 {margin-bottom:20px;}
	.margin-bottom-md-25 {margin-bottom:25px;}
	.margin-bottom-md-30 {margin-bottom:30px;}
	.margin-bottom-md-35 {margin-bottom:35px;}
	.margin-bottom-md-40 {margin-bottom:40px;}
	.margin-bottom-md-45 {margin-bottom:45px;}
	.margin-bottom-md-50 {margin-bottom:50px;}
	.margin-left-md-0 {margin-left:0px;}
	.margin-left-md-5 {margin-left:5px;}
	.margin-left-md-10 {margin-left:10px;}
	.margin-left-md-15 {margin-left:15px;}
	.margin-left-md-20 {margin-left:20px;}
	.margin-left-md-25 {margin-left:25px;}
	.margin-left-md-30 {margin-left:30px;}
	.margin-left-md-35 {margin-left:35px;}
	.margin-left-md-40 {margin-left:40px;}
	.margin-left-md-45 {margin-left:45px;}
	.margin-left-md-50 {margin-left:50px;}
	/* negative */
	.margin-md-neg-5 {margin:-5px;}
	.margin-md-neg-10 {margin:-10px;}
	.margin-md-neg-15 {margin:-15px;}
	.margin-md-neg-20 {margin:-20px;}
	.margin-md-neg-25 {margin:-25px;}
	.margin-md-neg-30 {margin:-30px;}
	.margin-md-neg-35 {margin:-35px;}
	.margin-md-neg-40 {margin:-40px;}
	.margin-md-neg-45 {margin:-45px;}
	.margin-md-neg-50 {margin:-50px;}
	.margin-top-md-neg-5 {margin-top:-5px;}
	.margin-top-md-neg-10 {margin-top:-10px;}
	.margin-top-md-neg-15 {margin-top:-15px;}
	.margin-top-md-neg-20 {margin-top:-20px;}
	.margin-top-md-neg-25 {margin-top:-25px;}
	.margin-top-md-neg-30 {margin-top:-30px;}
	.margin-top-md-neg-35 {margin-top:-35px;}
	.margin-top-md-neg-40 {margin-top:-40px;}
	.margin-top-md-neg-45 {margin-top:-45px;}
	.margin-top-md-neg-50 {margin-top:-50px;}
	.margin-right-md-neg-5 {margin-right:-5px;}
	.margin-right-md-neg-10 {margin-right:-10px;}
	.margin-right-md-neg-15 {margin-right:-15px;}
	.margin-right-md-neg-20 {margin-right:-20px;}
	.margin-right-md-neg-25 {margin-right:-25px;}
	.margin-right-md-neg-30 {margin-right:-30px;}
	.margin-right-md-neg-35 {margin-right:-35px;}
	.margin-right-md-neg-40 {margin-right:-40px;}
	.margin-right-md-neg-45 {margin-right:-45px;}
	.margin-right-md-neg-50 {margin-right:-50px;}
	.margin-bottom-md-neg-5 {margin-bottom:-5px;}
	.margin-bottom-md-neg-10 {margin-bottom:-10px;}
	.margin-bottom-md-neg-15 {margin-bottom:-15px;}
	.margin-bottom-md-neg-20 {margin-bottom:-20px;}
	.margin-bottom-md-neg-25 {margin-bottom:-25px;}
	.margin-bottom-md-neg-30 {margin-bottom:-30px;}
	.margin-bottom-md-neg-35 {margin-bottom:-35px;}
	.margin-bottom-md-neg-40 {margin-bottom:-40px;}
	.margin-bottom-md-neg-45 {margin-bottom:-45px;}
	.margin-bottom-md-neg-50 {margin-bottom:-50px;}
	.margin-left-md-neg-5 {margin-left:-5px;}
	.margin-left-md-neg-10 {margin-left:-10px;}
	.margin-left-md-neg-15 {margin-left:-15px;}
	.margin-left-md-neg-20 {margin-left:-20px;}
	.margin-left-md-neg-25 {margin-left:-25px;}
	.margin-left-md-neg-30 {margin-left:-30px;}
	.margin-left-md-neg-35 {margin-left:-35px;}
	.margin-left-md-neg-40 {margin-left:-40px;}
	.margin-left-md-neg-45 {margin-left:-45px;}
	.margin-left-md-neg-50 {margin-left:-50px;}
}
@media (min-width:1200px) {
	.margin-lg-0 {margin:0px;}
	.margin-lg-5 {margin:5px;}
	.margin-lg-10 {margin:10px;}
	.margin-lg-15 {margin:15px;}
	.margin-lg-20 {margin:20px;}
	.margin-lg-25 {margin:25px;}
	.margin-lg-30 {margin:30px;}
	.margin-lg-35 {margin:35px;}
	.margin-lg-40 {margin:40px;}
	.margin-lg-45 {margin:45px;}
	.margin-lg-50 {margin:50px;}
	.margin-top-lg-0 {margin-top:0px;}
	.margin-top-lg-5 {margin-top:5px;}
	.margin-top-lg-10 {margin-top:10px;}
	.margin-top-lg-15 {margin-top:15px;}
	.margin-top-lg-20 {margin-top:20px;}
	.margin-top-lg-25 {margin-top:25px;}
	.margin-top-lg-30 {margin-top:30px;}
	.margin-top-lg-35 {margin-top:35px;}
	.margin-top-lg-40 {margin-top:40px;}
	.margin-top-lg-45 {margin-top:45px;}
	.margin-top-lg-50 {margin-top:50px;}
	.margin-right-lg-0 {margin-right:0px;}
	.margin-right-lg-5 {margin-right:5px;}
	.margin-right-lg-10 {margin-right:10px;}
	.margin-right-lg-15 {margin-right:15px;}
	.margin-right-lg-20 {margin-right:20px;}
	.margin-right-lg-25 {margin-right:25px;}
	.margin-right-lg-30 {margin-right:30px;}
	.margin-right-lg-35 {margin-right:35px;}
	.margin-right-lg-40 {margin-right:40px;}
	.margin-right-lg-45 {margin-right:45px;}
	.margin-right-lg-50 {margin-right:50px;}
	.margin-bottom-lg-0 {margin-bottom:0px;}
	.margin-bottom-lg-5 {margin-bottom:5px;}
	.margin-bottom-lg-10 {margin-bottom:10px;}
	.margin-bottom-lg-15 {margin-bottom:15px;}
	.margin-bottom-lg-20 {margin-bottom:20px;}
	.margin-bottom-lg-25 {margin-bottom:25px;}
	.margin-bottom-lg-30 {margin-bottom:30px;}
	.margin-bottom-lg-35 {margin-bottom:35px;}
	.margin-bottom-lg-40 {margin-bottom:40px;}
	.margin-bottom-lg-45 {margin-bottom:45px;}
	.margin-bottom-lg-50 {margin-bottom:50px;}
	.margin-left-lg-0 {margin-left:0px;}
	.margin-left-lg-5 {margin-left:5px;}
	.margin-left-lg-10 {margin-left:10px;}
	.margin-left-lg-15 {margin-left:15px;}
	.margin-left-lg-20 {margin-left:20px;}
	.margin-left-lg-25 {margin-left:25px;}
	.margin-left-lg-30 {margin-left:30px;}
	.margin-left-lg-35 {margin-left:35px;}
	.margin-left-lg-40 {margin-left:40px;}
	.margin-left-lg-45 {margin-left:45px;}
	.margin-left-lg-50 {margin-left:50px;}
	/* negative */
	.margin-lg-neg-5 {margin:-5px;}
	.margin-lg-neg-10 {margin:-10px;}
	.margin-lg-neg-15 {margin:-15px;}
	.margin-lg-neg-20 {margin:-20px;}
	.margin-lg-neg-25 {margin:-25px;}
	.margin-lg-neg-30 {margin:-30px;}
	.margin-lg-neg-35 {margin:-35px;}
	.margin-lg-neg-40 {margin:-40px;}
	.margin-lg-neg-45 {margin:-45px;}
	.margin-lg-neg-50 {margin:-50px;}
	.margin-top-lg-neg-5 {margin-top:-5px;}
	.margin-top-lg-neg-10 {margin-top:-10px;}
	.margin-top-lg-neg-15 {margin-top:-15px;}
	.margin-top-lg-neg-20 {margin-top:-20px;}
	.margin-top-lg-neg-25 {margin-top:-25px;}
	.margin-top-lg-neg-30 {margin-top:-30px;}
	.margin-top-lg-neg-35 {margin-top:-35px;}
	.margin-top-lg-neg-40 {margin-top:-40px;}
	.margin-top-lg-neg-45 {margin-top:-45px;}
	.margin-top-lg-neg-50 {margin-top:-50px;}
	.margin-right-lg-neg-5 {margin-right:-5px;}
	.margin-right-lg-neg-10 {margin-right:-10px;}
	.margin-right-lg-neg-15 {margin-right:-15px;}
	.margin-right-lg-neg-20 {margin-right:-20px;}
	.margin-right-lg-neg-25 {margin-right:-25px;}
	.margin-right-lg-neg-30 {margin-right:-30px;}
	.margin-right-lg-neg-35 {margin-right:-35px;}
	.margin-right-lg-neg-40 {margin-right:-40px;}
	.margin-right-lg-neg-45 {margin-right:-45px;}
	.margin-right-lg-neg-50 {margin-right:-50px;}
	.margin-bottom-lg-neg-5 {margin-bottom:-5px;}
	.margin-bottom-lg-neg-10 {margin-bottom:-10px;}
	.margin-bottom-lg-neg-15 {margin-bottom:-15px;}
	.margin-bottom-lg-neg-20 {margin-bottom:-20px;}
	.margin-bottom-lg-neg-25 {margin-bottom:-25px;}
	.margin-bottom-lg-neg-30 {margin-bottom:-30px;}
	.margin-bottom-lg-neg-35 {margin-bottom:-35px;}
	.margin-bottom-lg-neg-40 {margin-bottom:-40px;}
	.margin-bottom-lg-neg-45 {margin-bottom:-45px;}
	.margin-bottom-lg-neg-50 {margin-bottom:-50px;}
	.margin-left-lg-neg-5 {margin-left:-5px;}
	.margin-left-lg-neg-10 {margin-left:-10px;}
	.margin-left-lg-neg-15 {margin-left:-15px;}
	.margin-left-lg-neg-20 {margin-left:-20px;}
	.margin-left-lg-neg-25 {margin-left:-25px;}
	.margin-left-lg-neg-30 {margin-left:-30px;}
	.margin-left-lg-neg-35 {margin-left:-35px;}
	.margin-left-lg-neg-40 {margin-left:-40px;}
	.margin-left-lg-neg-45 {margin-left:-45px;}
	.margin-left-lg-neg-50 {margin-left:-50px;}
}

/* padding */
.padding-0 {padding:0px;}
.padding-5 {padding:5px;}
.padding-10 {padding:10px;}
.padding-15 {padding:15px;}
.padding-20 {padding:20px;}
.padding-25 {padding:25px;}
.padding-30 {padding:30px;}
.padding-35 {padding:35px;}
.padding-40 {padding:40px;}
.padding-45 {padding:45px;}
.padding-50 {padding:50px;}
.padding-top-0 {padding-top:0px;}
.padding-top-5 {padding-top:5px;}
.padding-top-10 {padding-top:10px;}
.padding-top-15 {padding-top:15px;}
.padding-top-20 {padding-top:20px;}
.padding-top-25 {padding-top:25px;}
.padding-top-30 {padding-top:30px;}
.padding-top-35 {padding-top:35px;}

.padding-top-40 {padding-top:40px;}
.padding-top-45 {padding-top:45px;}
.padding-top-50 {padding-top:50px;}
.padding-right-0 {padding-right:0px;}
.padding-right-5 {padding-right:5px;}
.padding-right-10 {padding-right:10px;}
.padding-right-15 {padding-right:15px;}
.padding-right-20 {padding-right:20px;}
.padding-right-25 {padding-right:25px;}
.padding-right-30 {padding-right:30px;}
.padding-right-35 {padding-right:35px;}
.padding-right-40 {padding-right:40px;}
.padding-right-45 {padding-right:45px;}
.padding-right-50 {padding-right:50px;}
.padding-bottom-0 {padding-bottom:0px;}
.padding-bottom-5 {padding-bottom:5px;}
.padding-bottom-10 {padding-bottom:10px;}
.padding-bottom-15 {padding-bottom:15px;}
.padding-bottom-20 {padding-bottom:20px;}
.padding-bottom-25 {padding-bottom:25px;}
.padding-bottom-30 {padding-bottom:30px;}
.padding-bottom-35 {padding-bottom:35px;}
.padding-bottom-40 {padding-bottom:40px;}
.padding-bottom-45 {padding-bottom:45px;}
.padding-bottom-50 {padding-bottom:50px;}
.padding-left-0 {padding-left:0px;}
.padding-left-5 {padding-left:5px;}
.padding-left-10 {padding-left:10px;}
.padding-left-15 {padding-left:15px;}
.padding-left-20 {padding-left:20px;}
.padding-left-25 {padding-left:25px;}
.padding-left-30 {padding-left:30px;}
.padding-left-35 {padding-left:35px;}
.padding-left-40 {padding-left:40px;}
.padding-left-45 {padding-left:45px;}
.padding-left-50 {padding-left:50px;}
@media (max-width:767px) {
	.padding-xs-0 {padding:0px;}
	.padding-xs-5 {padding:5px;}
	.padding-xs-10 {padding:10px;}
	.padding-xs-15 {padding:15px;}
	.padding-xs-20 {padding:20px;}
	.padding-xs-25 {padding:25px;}
	.padding-xs-30 {padding:30px;}
	.padding-xs-35 {padding:35px;}
	.padding-xs-40 {padding:40px;}
	.padding-xs-45 {padding:45px;}
	.padding-xs-50 {padding:50px;}
	.padding-top-xs-0 {padding-top:0px;}
	.padding-top-xs-5 {padding-top:5px;}
	.padding-top-xs-10 {padding-top:10px;}
	.padding-top-xs-15 {padding-top:15px;}
	.padding-top-xs-20 {padding-top:20px;}
	.padding-top-xs-25 {padding-top:25px;}
	.padding-top-xs-30 {padding-top:30px;}
	.padding-top-xs-35 {padding-top:35px;}
	.padding-top-xs-40 {padding-top:40px;}
	.padding-top-xs-45 {padding-top:45px;}
	.padding-top-xs-50 {padding-top:50px;}
	.padding-right-xs-0 {padding-right:0px;}
	.padding-right-xs-5 {padding-right:5px;}
	.padding-right-xs-10 {padding-right:10px;}
	.padding-right-xs-15 {padding-right:15px;}
	.padding-right-xs-20 {padding-right:20px;}
	.padding-right-xs-25 {padding-right:25px;}
	.padding-right-xs-30 {padding-right:30px;}
	.padding-right-xs-35 {padding-right:35px;}
	.padding-right-xs-40 {padding-right:40px;}
	.padding-right-xs-45 {padding-right:45px;}
	.padding-right-xs-50 {padding-right:50px;}
	.padding-bottom-xs-0 {padding-bottom:0px;}
	.padding-bottom-xs-5 {padding-bottom:5px;}
	.padding-bottom-xs-10 {padding-bottom:10px;}
	.padding-bottom-xs-15 {padding-bottom:15px;}
	.padding-bottom-xs-20 {padding-bottom:20px;}
	.padding-bottom-xs-25 {padding-bottom:25px;}
	.padding-bottom-xs-30 {padding-bottom:30px;}
	.padding-bottom-xs-35 {padding-bottom:35px;}
	.padding-bottom-xs-40 {padding-bottom:40px;}
	.padding-bottom-xs-45 {padding-bottom:45px;}
	.padding-bottom-xs-50 {padding-bottom:50px;}
	.padding-left-xs-0 {padding-left:0px;}
	.padding-left-xs-5 {padding-left:5px;}
	.padding-left-xs-10 {padding-left:10px;}
	.padding-left-xs-15 {padding-left:15px;}
	.padding-left-xs-20 {padding-left:20px;}
	.padding-left-xs-25 {padding-left:25px;}
	.padding-left-xs-30 {padding-left:30px;}
	.padding-left-xs-35 {padding-left:35px;}
	.padding-left-xs-40 {padding-left:40px;}
	.padding-left-xs-45 {padding-left:45px;}
	.padding-left-xs-50 {padding-left:50px;}
}
@media (max-width:640px) {
	.padding-xxs-0 {padding:0px;}
	.padding-xxs-5 {padding:5px;}
	.padding-xxs-10 {padding:10px;}
	.padding-xxs-15 {padding:15px;}
	.padding-xxs-20 {padding:20px;}
	.padding-xxs-25 {padding:25px;}
	.padding-xxs-30 {padding:30px;}
	.padding-xxs-35 {padding:35px;}
	.padding-xxs-40 {padding:40px;}
	.padding-xxs-45 {padding:45px;}
	.padding-xxs-50 {padding:50px;}
	.padding-top-xxs-0 {padding-top:0px;}
	.padding-top-xxs-5 {padding-top:5px;}
	.padding-top-xxs-10 {padding-top:10px;}
	.padding-top-xxs-15 {padding-top:15px;}
	.padding-top-xxs-20 {padding-top:20px;}
	.padding-top-xxs-25 {padding-top:25px;}
	.padding-top-xxs-30 {padding-top:30px;}
	.padding-top-xxs-35 {padding-top:35px;}
	.padding-top-xxs-40 {padding-top:40px;}
	.padding-top-xxs-45 {padding-top:45px;}
	.padding-top-xxs-50 {padding-top:50px;}
	.padding-right-xxs-0 {padding-right:0px;}
	.padding-right-xxs-5 {padding-right:5px;}
	.padding-right-xxs-10 {padding-right:10px;}
	.padding-right-xxs-15 {padding-right:15px;}
	.padding-right-xxs-20 {padding-right:20px;}
	.padding-right-xxs-25 {padding-right:25px;}
	.padding-right-xxs-30 {padding-right:30px;}
	.padding-right-xxs-35 {padding-right:35px;}
	.padding-right-xxs-40 {padding-right:40px;}
	.padding-right-xxs-45 {padding-right:45px;}
	.padding-right-xxs-50 {padding-right:50px;}
	.padding-bottom-xxs-0 {padding-bottom:0px;}
	.padding-bottom-xxs-5 {padding-bottom:5px;}
	.padding-bottom-xxs-10 {padding-bottom:10px;}
	.padding-bottom-xxs-15 {padding-bottom:15px;}
	.padding-bottom-xxs-20 {padding-bottom:20px;}
	.padding-bottom-xxs-25 {padding-bottom:25px;}
	.padding-bottom-xxs-30 {padding-bottom:30px;}
	.padding-bottom-xxs-35 {padding-bottom:35px;}
	.padding-bottom-xxs-40 {padding-bottom:40px;}
	.padding-bottom-xxs-45 {padding-bottom:45px;}
	.padding-bottom-xxs-50 {padding-bottom:50px;}
	.padding-left-xxs-0 {padding-left:0px;}
	.padding-left-xxs-5 {padding-left:5px;}
	.padding-left-xxs-10 {padding-left:10px;}
	.padding-left-xxs-15 {padding-left:15px;}
	.padding-left-xxs-20 {padding-left:20px;}
	.padding-left-xxs-25 {padding-left:25px;}
	.padding-left-xxs-30 {padding-left:30px;}
	.padding-left-xxs-35 {padding-left:35px;}
	.padding-left-xxs-40 {padding-left:40px;}
	.padding-left-xxs-45 {padding-left:45px;}
	.padding-left-xxs-50 {padding-left:50px;}
}
@media (min-width:768px) and (max-width:991px) {
	.padding-sm-0 {padding:0px;}
	.padding-sm-5 {padding:5px;}
	.padding-sm-10 {padding:10px;}
	.padding-sm-15 {padding:15px;}
	.padding-sm-20 {padding:20px;}
	.padding-sm-25 {padding:25px;}
	.padding-sm-30 {padding:30px;}
	.padding-sm-35 {padding:35px;}
	.padding-sm-40 {padding:40px;}
	.padding-sm-45 {padding:45px;}
	.padding-sm-50 {padding:50px;}
	.padding-top-sm-0 {padding-top:0px;}
	.padding-top-sm-5 {padding-top:5px;}
	.padding-top-sm-10 {padding-top:10px;}
	.padding-top-sm-15 {padding-top:15px;}
	.padding-top-sm-20 {padding-top:20px;}
	.padding-top-sm-25 {padding-top:25px;}
	.padding-top-sm-30 {padding-top:30px;}
	.padding-top-sm-35 {padding-top:35px;}
	.padding-top-sm-40 {padding-top:40px;}
	.padding-top-sm-45 {padding-top:45px;}
	.padding-top-sm-50 {padding-top:50px;}
	.padding-right-sm-0 {padding-right:0px;}
	.padding-right-sm-5 {padding-right:5px;}
	.padding-right-sm-10 {padding-right:10px;}
	.padding-right-sm-15 {padding-right:15px;}
	.padding-right-sm-20 {padding-right:20px;}
	.padding-right-sm-25 {padding-right:25px;}
	.padding-right-sm-30 {padding-right:30px;}
	.padding-right-sm-35 {padding-right:35px;}
	.padding-right-sm-40 {padding-right:40px;}
	.padding-right-sm-45 {padding-right:45px;}
	.padding-right-sm-50 {padding-right:50px;}
	.padding-bottom-sm-0 {padding-bottom:0px;}
	.padding-bottom-sm-5 {padding-bottom:5px;}
	.padding-bottom-sm-10 {padding-bottom:10px;}
	.padding-bottom-sm-15 {padding-bottom:15px;}
	.padding-bottom-sm-20 {padding-bottom:20px;}
	.padding-bottom-sm-25 {padding-bottom:25px;}
	.padding-bottom-sm-30 {padding-bottom:30px;}
	.padding-bottom-sm-35 {padding-bottom:35px;}
	.padding-bottom-sm-40 {padding-bottom:40px;}
	.padding-bottom-sm-45 {padding-bottom:45px;}
	.padding-bottom-sm-50 {padding-bottom:50px;}
	.padding-left-sm-0 {padding-left:0px;}
	.padding-left-sm-5 {padding-left:5px;}
	.padding-left-sm-10 {padding-left:10px;}
	.padding-left-sm-15 {padding-left:15px;}
	.padding-left-sm-20 {padding-left:20px;}
	.padding-left-sm-25 {padding-left:25px;}
	.padding-left-sm-30 {padding-left:30px;}
	.padding-left-sm-35 {padding-left:35px;}
	.padding-left-sm-40 {padding-left:40px;}
	.padding-left-sm-45 {padding-left:45px;}
	.padding-left-sm-50 {padding-left:50px;}
}
@media (min-width:992px) and (max-width:1199px) {
	.padding-md-0 {padding:0px;}
	.padding-md-5 {padding:5px;}
	.padding-md-10 {padding:10px;}
	.padding-md-15 {padding:15px;}
	.padding-md-20 {padding:20px;}
	.padding-md-25 {padding:25px;}
	.padding-md-30 {padding:30px;}
	.padding-md-35 {padding:35px;}
	.padding-md-40 {padding:40px;}
	.padding-md-45 {padding:45px;}
	.padding-md-50 {padding:50px;}
	.padding-top-md-0 {padding-top:0px;}
	.padding-top-md-5 {padding-top:5px;}
	.padding-top-md-10 {padding-top:10px;}
	.padding-top-md-15 {padding-top:15px;}
	.padding-top-md-20 {padding-top:20px;}
	.padding-top-md-25 {padding-top:25px;}
	.padding-top-md-30 {padding-top:30px;}
	.padding-top-md-35 {padding-top:35px;}
	.padding-top-md-40 {padding-top:40px;}
	.padding-top-md-45 {padding-top:45px;}
	.padding-top-md-50 {padding-top:50px;}
	.padding-right-md-0 {padding-right:0px;}
	.padding-right-md-5 {padding-right:5px;}
	.padding-right-md-10 {padding-right:10px;}
	.padding-right-md-15 {padding-right:15px;}
	.padding-right-md-20 {padding-right:20px;}
	.padding-right-md-25 {padding-right:25px;}
	.padding-right-md-30 {padding-right:30px;}
	.padding-right-md-35 {padding-right:35px;}
	.padding-right-md-40 {padding-right:40px;}
	.padding-right-md-45 {padding-right:45px;}
	.padding-right-md-50 {padding-right:50px;}
	.padding-bottom-md-0 {padding-bottom:0px;}
	.padding-bottom-md-5 {padding-bottom:5px;}
	.padding-bottom-md-10 {padding-bottom:10px;}
	.padding-bottom-md-15 {padding-bottom:15px;}
	.padding-bottom-md-20 {padding-bottom:20px;}
	.padding-bottom-md-25 {padding-bottom:25px;}
	.padding-bottom-md-30 {padding-bottom:30px;}
	.padding-bottom-md-35 {padding-bottom:35px;}
	.padding-bottom-md-40 {padding-bottom:40px;}
	.padding-bottom-md-45 {padding-bottom:45px;}
	.padding-bottom-md-50 {padding-bottom:50px;}
	.padding-left-md-0 {padding-left:0px;}
	.padding-left-md-5 {padding-left:5px;}
	.padding-left-md-10 {padding-left:10px;}
	.padding-left-md-15 {padding-left:15px;}
	.padding-left-md-20 {padding-left:20px;}
	.padding-left-md-25 {padding-left:25px;}
	.padding-left-md-30 {padding-left:30px;}
	.padding-left-md-35 {padding-left:35px;}
	.padding-left-md-40 {padding-left:40px;}
	.padding-left-md-45 {padding-left:45px;}
	.padding-left-md-50 {padding-left:50px;}
}
@media (min-width:1200px) {
	.padding-lg-0 {padding:0px;}
	.padding-lg-5 {padding:5px;}
	.padding-lg-10 {padding:10px;}
	.padding-lg-15 {padding:15px;}
	.padding-lg-20 {padding:20px;}
	.padding-lg-25 {padding:25px;}
	.padding-lg-30 {padding:30px;}
	.padding-lg-35 {padding:35px;}
	.padding-lg-40 {padding:40px;}
	.padding-lg-45 {padding:45px;}
	.padding-lg-50 {padding:50px;}
	.padding-top-lg-0 {padding-top:0px;}
	.padding-top-lg-5 {padding-top:5px;}
	.padding-top-lg-10 {padding-top:10px;}
	.padding-top-lg-15 {padding-top:15px;}
	.padding-top-lg-20 {padding-top:20px;}
	.padding-top-lg-25 {padding-top:25px;}
	.padding-top-lg-30 {padding-top:30px;}
	.padding-top-lg-35 {padding-top:35px;}
	.padding-top-lg-40 {padding-top:40px;}
	.padding-top-lg-45 {padding-top:45px;}
	.padding-top-lg-50 {padding-top:50px;}
	.padding-right-lg-0 {padding-right:0px;}
	.padding-right-lg-5 {padding-right:5px;}
	.padding-right-lg-10 {padding-right:10px;}
	.padding-right-lg-15 {padding-right:15px;}
	.padding-right-lg-20 {padding-right:20px;}
	.padding-right-lg-25 {padding-right:25px;}
	.padding-right-lg-30 {padding-right:30px;}
	.padding-right-lg-35 {padding-right:35px;}
	.padding-right-lg-40 {padding-right:40px;}
	.padding-right-lg-45 {padding-right:45px;}
	.padding-right-lg-50 {padding-right:50px;}
	.padding-bottom-lg-0 {padding-bottom:0px;}
	.padding-bottom-lg-5 {padding-bottom:5px;}
	.padding-bottom-lg-10 {padding-bottom:10px;}
	.padding-bottom-lg-15 {padding-bottom:15px;}
	.padding-bottom-lg-20 {padding-bottom:20px;}
	.padding-bottom-lg-25 {padding-bottom:25px;}
	.padding-bottom-lg-30 {padding-bottom:30px;}
	.padding-bottom-lg-35 {padding-bottom:35px;}
	.padding-bottom-lg-40 {padding-bottom:40px;}
	.padding-bottom-lg-45 {padding-bottom:45px;}
	.padding-bottom-lg-50 {padding-bottom:50px;}
	.padding-left-lg-0 {padding-left:0px;}
	.padding-left-lg-5 {padding-left:5px;}
	.padding-left-lg-10 {padding-left:10px;}
	.padding-left-lg-15 {padding-left:15px;}
	.padding-left-lg-20 {padding-left:20px;}
	.padding-left-lg-25 {padding-left:25px;}
	.padding-left-lg-30 {padding-left:30px;}
	.padding-left-lg-35 {padding-left:35px;}
	.padding-left-lg-40 {padding-left:40px;}
	.padding-left-lg-45 {padding-left:45px;}
	.padding-left-lg-50 {padding-left:50px;}
}



/* DNN system fixes */
body > form #ControlBar_ControlPanel {
	z-index:1200 !important;
}
#ControlBar_ControlPanel *, .dnn_mact * {
  -webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
	font-weight:normal;
}
.dnn_mact * {
	margin-left:-1px !important;
}
.dnn_mact > li ul a > * {
	vertical-align: middle;
	font-size:13px;
}
.dnnDragHint {
	border:1px dashed #DDD;
}
form .actionMenu ul {
	z-index:900 !important;
}
.dnnEditState .DnnModule {
	opacity:1;
}
span.dnnInputFileWrapper {
	color:#FFF;
}
.dnnDropDownList .selected-item a, .dnnDropDownList .selected-item a:link, .dnnDropDownList .selected-item a:visited, .dnnDropDownList .selected-item a:hover, .dnnDropDownList .selected-item a:active {
	height:auto !important;
}
.console-large {
	display:inline-table;
}
.dnnDropDownList .dt-container .dt-header {
	height:46px;
}
.dnnFormItem input[type="text"], .dnnFormItem select, .dnnFormItem textarea, .dnnFormItem input[type="email"], .dnnFormItem input[type="search"], .dnnFormItem input[type="password"] {
	font-size:14px;
}
.urlControl {
	width:100%;
}
.urlControl input[type=checkbox] {
	width:20px;
}
.urlControlFileRow span.dnnFormLabel {
	display:inline-block;
	padding-bottom:10px;
}
.dnnSiteSettings .dnnFormItem input[type="text"]:not(.rcbInput), .dnnSiteSettings .dnnFormItem .dnnFormInput, .dnnSiteSettings .dnnFormItem textarea, .dnnPortalSignup .dnnFormItem input[type="text"]:not(.rcbInput), .dnnPortalSignup .dnnFormItem .dnnFormInput, .dnnPortalSignup .dnnFormItem textarea, .dnnExportPortal .dnnFormItem input[type="text"]:not(.rcbInput), .dnnExportPortal .dnnFormItem textarea {
	width:45% !important;
}
.aquaeSkins ul.dnnAdminTabNav li a {
	display: block;
    height:39px;
}
.aquaeSkins ul.dnnAdminTabNav li.ui-tabs-active a {
	display: block;
    height:43px;
}
.aquaeSkins ul.dnnAdminTabNav {
	height: 40px;
}



@media print {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .visible-xs {
    display: none !important;
  }
  .hidden-xs {
    display: block !important;
  }
  table.hidden-xs {
    display: table;
  }
  tr.hidden-xs {
    display: table-row !important;
  }
  th.hidden-xs,
  td.hidden-xs {
    display: table-cell !important;
  }
  .hidden-xs.hidden-print {
    display: none !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
/* EQ */
/* 
header nav, footer {
	display: none;
	}
*/  
.headerMain, .mobileMenu , .footerMain, .topMain , .social,  .menuMain  {
	display: none;
	}

#contentleft2, #pagebanner-wrap, #pagebanner {
		display: none;
}
/* Right Column on Blogs */
.DnnModule-EasyDNNnewsCategoriesMenu, .ModEasyDNNnewsCalendarC {
		display: none;
}
#navcontainer_tm {
		display: none;
}

#navcontainer {
		display: none;
}
#ControlBar_ControlPanel {
	display: none;
}

h2.nav , h1.nav{
	display:none;
}
.QLeftNav {
		display: none;
}

.Nav {
		display: none;
}
.bannerText, .parallaxMe, .index_carousel {
		display: none;
}

.tab-content > .tab-pane {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tab-content.hidden-sm {
    display: block !important;
  }

}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}
@import url("https://fonts.googleapis.com/css?family=Overlock:400,700,900,400italic,700italic,900italic");
@import url("/Portals/_default/skins/Common/css/animate.css");
/*@import url("/Portals/_default/skins/Common/css/owl.carousel.css");
@import url("/Portals/_default/skins/Common/css/owl.theme.css");
@import url("/Portals/_default/skins/Common/css/owl.transitions.css");
*/
@import url("/Portals/_default/skins/Common/css/snippets.css");
/*@import url("//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"); */
/*@import url("//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"); */
@import url("/Portals/_default/skins/Common/css/bootstrapBeyond.css");
/* @import url("//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"); */
@import url("/Portals/_default/skins/Common/css/skin.css");
@import url("/Portals/_default/skins/Common/css/modules.css");
@import url("/Portals/_default/skins/Common/css/container.css");
@import url("/Portals/_default/skins/zetadocs/css/colors.css");
@import url("/Portals/_default/skins/Common/css/mobile.css");
@import url("/Portals/_default/skins/Common/css/responsive.helpers.css");
@import url("/Portals/_default/skins/Common/css/system.css");
@import url("/Portals/_default/skins/Common/css/print.css");
@import url("/fancybox/fancybox357/dist/jquery.fancybox.css");



/*!
 *  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: 0px; /* EQ was 30px */
/*  font-family: "PT Sans", sans-serif; */
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */  
  line-height: 1.3;
  font-size: 15px; /* EQ was 13px */  
  color: #504e4e;
}
.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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
}
.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: #006699; /* EQ was #c81704 */
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.1;
}
.eds_news_Ozone h1 {
  font-size: 28px; /* EQ was 36px */
}
.eds_news_Ozone h2 {
  font-size: 24px; /* EQ was 30px */
}
.eds_news_Ozone h3 {
  font-size: 20px; /* EQ was 24px */
}
.eds_news_Ozone h4 {
  font-size: 16px; /* EQ was 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; */)
	font-size:1em; 
  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: #006699; /* EQ was #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; */)
	font-size:1em; 
  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;
 /* EQ 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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover::before {
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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 #006699; /* EQ was #c81704 */
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
  /* EQ was text-transform: uppercase; */
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #006699; /* EQ was #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;
   color: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: 0; /* EQ was 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 12px 20px; /* EQ was 0 0 5px 20px */
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li::before {
  color: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: 0; /* EQ was 1px dashed #bfbfbf */
  background-color: #f7f7f8; /* EQ was #EDEDED */
  /* EQ removed 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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
}
.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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
  /* EQ was 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 #006699; /* EQ was #c81704 */
  border-radius: 5px;
  background-color: #fff;
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #c81704 */
  background: none #fff;
  text-decoration: none;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
  text-transform: uppercase;
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  color: #006699; /* EQ was #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: #cc0033; /* EQ was #c81704 */
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: ##006699; /* EQ was #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 #006699!important; /* EQ was #c81704 */
  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 #006699; /* EQ was #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;
  color: #006699; /* EQ was #c81704 */
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */  
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
 /* EQ  font: normal normal 22px/1 "Roboto Condensed", sans-serif; */
  font: normal normal 22px/1 "FSMatthew", sans-serif;  
  color:#006699; /* EQ was #c81704 */
  /* EQ 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: #006699; /* EQ was #c81704 */
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 11px;
  line-height: 1;
  /* EQ was text-transform: uppercase; */
  border-radius: 0px;
  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:#006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  border: solid 1px #006699; /* EQ was #c81704 */
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  /* EQ
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  EQ end */
  padding: 4px;
  line-height: 1;
  color: #57575f; /* EQ was #fff */
  text-align: center;
  font-weight: normal;
  /* EQ 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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #006699; /* EQ was #c81704 */
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: #006699; /* EQ was #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;
  /* EQ
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  EQ end */
  padding: 4px;
  line-height: 1;
  color: #57575f; /* EQ was #fff */
  text-align: center;
  /* EQ 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: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #cc0033 /* EQ was #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;
  /* EQ   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 #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 10px;
  /* EQ was 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 #006699; /* EQ was #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 #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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 #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  color: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  color: #fff;
  background: ##006699; /* EQ was #c81704 */
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  /* EQ was 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: #006699; /* EQ was #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; */
  font: 14px/1.2 "FSMatthew", sans-serif;  
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  color: #fff;
  background: #006699; /* EQ was #c81704 */
  padding: 5px 25px;
  border: 0;
  margin: -1px 20px -1px -1px;
  /* EQ was 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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */
  color: #808080;
  /* EQ was 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 "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  color: #fff;
  /* EQ was 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 #006699; /* EQ was #c81704 */
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: 0; /* EQ was dashed 1px #a8a4a4 */
  border-bottom: 0; /* EQ was dashed 1px #a8a4a4 */
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #006699; /* EQ was #c81704 */
  font-size: 12px;
  line-height: 1;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
}
.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: 0px; /* EQ was 3px */
  background-color: #006699; /* EQ was #c81704 */
  border: solid 1px #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 14px;
   color: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: 20px /* EQ was 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: #57575f; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #006699; /* EQ was #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  #006699!important;/* EQ was #c81704 */
  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: #006699; /* EQ was #c81704 */
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  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 #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 14px;
  color: #006699; /* EQ was #c81704 */
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #006699; /* EQ was #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 #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #c81704 */
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
  /* EQ was text-transform: uppercase; */
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: 80%; /* EQ was 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 #006699!important; /* EQ was #c81704 */
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
 /* EQ was text-transform: uppercase; */
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 12px;
  line-height: 29px;
  /* EQ was text-transform: uppercase; */
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #006699; /* EQ was #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 #006699; /* EQ was #c81704 */
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  border-color: #006699; /* EQ was #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:#006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #c81704 */
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: #006699; /* EQ was #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: "FSMatthew", sans-serif; /* EQ was "Roboto Condensed" */ 
  font-size: 16px;
  border: solid 1px #006699; /* EQ was #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: #006699; /* EQ was #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 #006699; /* EQ was #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;
}
/* EQ added for Blogs imported from Wordpress */
.edn_article img[class*="wp-image-"] {
    border: 0;
    margin-bottom: 1em;
    padding: 8px;
    text-align: center;
}

.edn_article img[class*="wp-image-"].alignleft {
    display: inline;
    float: left;
    margin-right: 24px;
    margin-top: 4px;  
}

.edn_article img[class*="wp-image-"].alignright {
    display: inline;
    float: right;
    margin-right: 24px;
    margin-top: 4px;  
}
/* EQ end of Wordpress Blogs*/


/* EQ Added for tables pasted from Word into blog entries */
.edn_article td {
                padding:10px 10px 0px 10px;
}
.edn_article tr {
                border-width: 1px!important;
}
/* EQ end */


/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCkYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCAYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCgYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCsYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYb8td.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-20CF, 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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCQYbw.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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.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-20CF, 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/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCkYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCAYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCgYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCsYb8td.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYb8td.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-20CF, 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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYbw.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/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYbw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQ.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYbw.woff2") format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYaQ.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7Cw.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYaQ.woff") format('woff');
}



.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h1,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h2,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h3,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h4,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h5,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news h6,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news th,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .in_article_image .image_title
{
	color: #fff; /* EQ 	color: #ff6a00; */

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news a
{

	color: #fff; /* EQ 	color: #ff6a00; */	
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news a:hover
{
	color: #504e4e;
	color: #ddd;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section
{
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div .edn_articleTitle a
{
	color: #ff6a00;
	font-size: 19px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div:hover .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 h2.edn_articleTitle
{
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a
{
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle
{
	color: #ff6a00;
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a
{
	color: #ff6a00;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a
{
	color: #ff6a00;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.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_predefined_grey.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_predefined_grey.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_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_simpleArticle6Bullet::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultTabs .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .edn_article.edn_articleDetails h1.edn_articleTitle
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure:hover > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure:hover > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure:hover > figcaption
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure:hover > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure:hover > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure:hover > figcaption
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article .edn_articleSubTitle
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure:hover figcaption
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle
{
	color: #909090;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a
{
	color: #ff6a00;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:hover h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle:hover h2.edn_articleTitle
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle .edn_articleSubTitle
{
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock
{
	color: #666161;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active > section
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud .edn_module_title
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud > div a span:first-child
{
	background-color: #ff6a00;

	color: #ffffff;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud > div a:hover span:first-child
{
	background-color: #ffffff;

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud > div a
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud > div a span
{
	color: #33393f;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_tagCloud > div a:hover span
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_module_title
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_rss::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_rss:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category
{
	color: #504e4e;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn_verticalListWrapper
{
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary
{
	color: #504e4e;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .bread_crumbs > a
{
	font-family: "Roboto Condensed";
	color: #747474;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .bread_crumbs > a:hover
{
	border-bottom-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .bread_crumbs > a:last-child
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .bread_crumbs > i
{
	font-size: 17px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_categoryInfo
{
	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_predefined_grey.eds_subCollection_news .edn_catalogCategory
{
	background-color: #e5e5e5;

	box-shadow: inset 0px 0px 0px 1px #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_catalogCategory:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_catalogCategory:hover > figcaption > span
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_eventDetails
{
	border-radius: 0px;
	box-shadow: inset 0px 2px 0px 0px #ffffff,inset 0px -2px 0px 0px #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_eventDetails .edn_eventPrice
{
	font-family: "Roboto Condensed";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_calendarExport::after
{
	text-shadow: none;
	color: #504e4e;
	font-size: 13px;
	line-height: 1.3;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_calendarExport:hover::after
{
	text-shadow: none;
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_calendarExport.edn_toolTip:hover > .edn_toolTipContent
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_eventDetails .edn_eventLocation::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBarWrapper > h4
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span > label
{
	border-width: 1px;
	border-radius: 5px;
	color: #33393f;
	font-size: 15px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover
{
	border-color: #619c1c;

	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label
{
	border-color: #619c1c;

	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label::before
{
	background-color: #619c1c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover
{
	border-color: #d61603;

	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label
{
	border-color: #d61603;

	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label::before
{
	background-color: #d61603;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover
{
	border-color: #f89e00;

	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label
{
	border-color: #f89e00;

	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label::before
{
	background-color: #f89e00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before
{
	border-color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::before
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time
{
	background-color: #33393f;

	box-shadow: none;
	border-color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton
{
	border-color: #ff6a00;
	border-radius: 4px;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover
{
	background-color: #33393f;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer
{
	border-color: #ff6a00;
	border-radius: 0px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer:hover
{
	border-color: #504e4e;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_mediaContainer.edn_withTime > a::after,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticle2WithAccordion .edn_mediaContainer.edn_withTime > a::after,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > .edn_mediaLink
{
	border-color: #ffffff;
	border-radius: 3px;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > time
{
	background-color: #ff6a00;

	box-shadow: none;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_metaDetails
{
	color: #6e6e6e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a::before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails > time::before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listEventDetails
{
	color: #969696;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listEventDetails > span::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails
{
	background-color: #000000;

	opacity: 0.7;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberOfVievs::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberComments::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager.edn_articleScrolling a
{
	border-color: #ff6a00 !important;
	border-radius: 4px;
	background-color: #ffffff;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager.edn_articleScrolling a:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager.edn_articleScrolling .edn_toolTip:hover .edn_toolTipContent
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after
{

	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{

	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i
{
	color: #bababa;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i
{
	color: #37b1ab;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting > span:hover > i
{
	color: #37b1ab;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting .edn_voteTooltip,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_ArticleVoting .edn_voteTooltip::before
{

}

.eds_news_Ozone.eds_style_predefined_grey.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: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a
{
	border-color: #ff6a00;
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover
{
	background-color: #ffffff;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title
{
	color: #33393f;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title::after
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3
{
	color: #ff6a00;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3
{
	color: #333333;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time
{
	color: #8d8d8d;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before
{
	border-right-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a
{
	border-color: #e2e2e2;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before
{
	border-color: #bcbcbc;
	background-color: #dadada;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent::before
{
	background-color: #ececec;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary
{
	color: #8a8a8a;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport::after
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover::after
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .in_article_image
{
	border-color: #d1d2d3;
	border-radius: 4px;
	background-color: #e5e5e5;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .in_article_image .image_title
{
	color: #ff6a00;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .in_article_image .image_description
{
	color: #666161;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_listOfAttendants
{
	border-color: #e5e5e5;
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ff6a00;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader th
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #eeeeee;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr:hover
{
	background-color: #eaeaea;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_listOfAttendants > table tr:hover td
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2
{
	color: #ff6a00;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2 span::after
{
	border-bottom-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li a
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docExtension
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li
{
	border-bottom-color: #f7f5f5;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleLinks
{
	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_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2
{
	color: #ff6a00;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2 span::after
{
	border-bottom-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li span
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles
{
	border-color: #bfbfbf;
	border-radius: 4px;
	background-color: #ededed;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2
{
	color: #ff6a00;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2 span::after
{
	border-bottom-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a
{
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a span
{
	font-family: "Roboto Condensed";
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a:hover span
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li + li
{
	border-left-color: #acacac;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_authorGroupDetails > h4
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails > h4 .button::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.contact,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.full_bio
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.social
{
	border-color: #8d8989;
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.social:hover
{
	border-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.social::before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails .button.social:hover::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails
{
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact
{
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social
{
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .num_of_comment
{
	border-color: #ff6a00;
	border-radius: 4px;

	color: #555555;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment article > section > h4
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment article > section > div
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment article > section > time
{
	color: #999999;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment article > div img
{
	border-color: #ff6a00;
	border-radius: 50%;

}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover
{
	background-color: #909090;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete
{
	border-color: #9d241e;
	background-color: #d94e49;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover
{
	background-color: #d94e49;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment > h3
{
	color: #ff6a00;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment > div
{
	border-color: #ff6a00;
	border-radius: 4px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Roboto Condensed";
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"],
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:focus,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:focus
{
	border-color: #ff6a00;
	border-radius: 6px;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box .submit
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_readMore.edn_readMoreButton
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination span
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination table
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination a
{
	background-color: transparent;

	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination a:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .article_pagination span
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger
{
	border-color: #ff6a00;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer
{
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer
{
	background-color: #ff6a00;

	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger > span
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay
{
	background-color: rgba(255, 255, 255, 0.8);

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay::before
{
	color: #ff6a00;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .edn_articlesRssWrapper a:hover
{
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articlesRssWrapper a span::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articlesRssWrapper a:hover span::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articlesRssWrapper a span
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edn_articlesRssWrapper a:hover span
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab
{
	border-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edsTabulator .eds_tabsNav > li
{
	border-color: #ff6a00;

	color: #b4b4b4;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .edsTabulator .eds_tabsNav > li:hover
{

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount
{
	background-color: #ff6a00;

	border-radius: 10px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	color: #848484;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .do_search,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-radius: 4px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .do_search::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input .do_search:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search
{
	border-color: #ff6a00 !important;
	border-radius: 4px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search > span
{
	text-transform: uppercase;
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search > span:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .search_input.button_outside .do_search:hover::before
{
	color: #ffffff;
}

.EDN_search.theme_Ozone.grey
{
	background-color: #ffffff;

	border-color: #ff6a00;
	box-shadow: none;
}

.EDN_search.theme_Ozone.grey ul li span a
{
	color: #ff6a00;
	font-size: 12px;
}

.EDN_search.theme_Ozone.grey ul li span a:hover
{
	color: #33393f;
}

.EDN_search.theme_Ozone.grey .acSelect a
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	background-color: #f8f8f8;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span
{
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #ffffff;

	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after ,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before
{
	color: #ff6a00;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #ff6a00;

	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ba5813;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #b74e03;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffa86b;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #ba4e01;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #ff6a00;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	color: #a8a8a8;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider::before
{
	background-color: #db5b00;

	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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before,
.eds_news_Ozone.eds_style_predefined_grey.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: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.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: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit
{
	background-color: #ffffff;

	border-color: #ff6a00;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit
{
	color: #33393f;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover
{
	background-color: #ff6a00;

	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #33393f;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_item
{
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search span.ednSbl_item
{
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item
{
	border-color: #ff6a00;
	border-radius: 3px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_count
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc
{
	border-color: #ff6a00 !important;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_styledSelect > span
{
	background-color: #ffffff;

	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_styledSelect > span::after
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_styledSelect > span select
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_styledSelect > span::after 
{
	color: #ff6a00;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-toolbar h2
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #ffffff;

	border-bottom-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-next-button
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-next-button:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-next-button::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-widget-header
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc .fc-week-number a
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-widget-header th.fc-week-number
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc td.fc-week-number
{

	border-right-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #ff6a00;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts > a
{
	color: #ff6a00;
	border-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events > a
{
	color: #33393f;
	border-color: #33393f;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover
{
	background-color: #33393f;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc td.fc-day-top a:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button
{
	border-color: #dddddd;
	border-radius: 4px;

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-button.fc-state-active
{
	border-color: #ff6a00;

	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event
{
	background-color: transparent;

	border-color: #ff6a00;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event:hover
{
	background-color: transparent;

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{

	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{

	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{

	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{

	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{

	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{

	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{

	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{

	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{

	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events
{
	background-color: transparent;

	border-color: #33393f;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: transparent;

	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{

	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{

	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{

	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{

	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{

	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{

	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{

	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{

	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{

	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-slats .fc-time.fc-widget-content,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc .fc-axis
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-unthemed .fc-divider
{
	background-color: transparent;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-heading .fc-widget-header
{
	background-color: transparent;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item td a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .fc-list-item td a:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .edn_module_title
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list
{
	border-top-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink
{
	color: #504e4e;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul > li .expand_collapse::before
{
	color: #ff6a00;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span
{
	border-radius: 10px;
	background-color: #ff6a00;

	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover > span
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover::before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events ul li > a
{
	font-family: "Roboto Condensed";
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events ul li > a:hover
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_calendar .archive_list.events ul li::before
{
	color: #ff6a00;
}

.qtip.edn_calendarbox_Ozone.grey
{
	background-color: #ffffff;

	border-width: 1px;
	border-style: solid;
	border-color: #ff6a00;
	border-radius: 0px;
	box-shadow: none;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content div.title span,
.qtip.edn_calendarbox_Ozone.grey .qtip-content div.title span a
{
	color: #ff6a00;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content div.title span a:hover
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > p.title a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > p.title a:hover
{
	color: #ff6a00;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > p.title
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article_list > li > a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article_list > li > a:hover
{
	color: #ff6a00;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article_list > li
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article_list > li > p
{
	color: #999999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > .content
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article img
{
	border-color: #ff6a00;
	border-radius: 0px;
	background-color: #ffffff;

}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > a
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

	color: #33393f;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > a:hover
{
	background-color: #ff6a00;

	color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.grey .qtip-content .wrapper > .article > p.location::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink
{
	border-color: #ff6a00;
	border-radius: 4px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink > span
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #ff6a00;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText
{
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay::before
{
	color: #ff6a00;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	color: #ff6a00;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #ff6a00;
	border-radius: 0px;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer > a:hover .edsgg_image_thumbnail
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone
{
	border-radius: 6px;
	background-color: transparent;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	background-color: rgba(255, 255, 255, 0.7);

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation::after
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:hover::after
{
	color: #373737;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 5px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li::after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on::after
{
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .navigation_button
{
	border-radius: 3px;
	background-color: #ff6a00;

	box-shadow: inset 0px 48px 48px -48px #ff9f5a;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .navigation_button::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover::before
{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
	color: #b84c00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .title_box
{
	font-size: 18px;
	background-color: rgba(149, 149, 149, 0.5);

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport .overview,
.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport p
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box
{
	background-color: rgba(54, 54, 54, 0.5);

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb
{
	border-color: #ff6a00;
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay
{
	background-color: #ffffff;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay .indicator::before
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > time
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a
{
	background-color: #33393f;

	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red
{
	background-color: #db313c;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue
{
	background-color: #37cbcb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black
{
	background-color: #000000;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green
{
	background-color: #8de171;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow
{
	background-color: #f6c606;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink
{
	background-color: #ffc0cb;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray
{
	background-color: #808080;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange
{
	background-color: #ff6a00;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown
{
	background-color: #e49908;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.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_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_title
{
	background-color: #33393f;

	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title
{
	border-bottom-color: #33393f;
	border-radius: 0px;
	background-color: transparent;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span
{
	background-color: #33393f;

	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li
{
	color: #888888;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red
{
	color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow
{
	color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink
{
	color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray
{
	color: #808080;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown
{
	color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList
{

	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_pagination
{
	border-top-color: #33393f;
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_pagination > span
{
	border-radius: 0px;
	background-color: #33393f;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_pagination > span:hover
{
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper::before
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_contentBlock .edn_mainWrapper::after
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentsHeader
{
	border-bottom-color: #e4e4e4;
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentsHeader > h4
{
	background-color: #33393f;

	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentContainer .edNews_userAvatar
{
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor:hover
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentContainer .edNews__commentContent
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentDate
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink
{
	color: #33393f;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink:hover
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink::before
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_pagination
{
	border-top-color: #33393f;
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_pagination > span
{
	border-radius: 0px;
	background-color: #33393f;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn_pagination > span:hover
{
	border-radius: 0px;

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn__recentCommentsListContainer::before
{

}

.eds_news_Ozone.eds_style_predefined_grey.eds_subCollection_recentComments .edn__recentCommentsListContainer::after
{
	color: #33393f;
}






@charset "UTF-8";/*!
 * Bootstrap v5.1.1 (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-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--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-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--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));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-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%}.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{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%}.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{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%}.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{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%}.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{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%}.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{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-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{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}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{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}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@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}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@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}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@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}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@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-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.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-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.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+.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.showing{opacity:0}.toast:not(.show){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:1055;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:1050;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:1045;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-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.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}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.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}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.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}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.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}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!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{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.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}}
/*# sourceMappingURL=bootstrap.min.css.map */
