﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }


/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url("/bootstrap/fonts/glyphicons-halflings-regular.eot");src:url("/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/bootstrap/fonts/glyphicons-halflings-regular.woff2") format('woff2'),url("/bootstrap/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/bootstrap/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.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}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-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-image:-o-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-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);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-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-image:-o-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-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)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-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-image:-o-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-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)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-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-image:-o-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-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)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-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-image:-o-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-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)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{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}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */
@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/ZetadocsforNAVSkins/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/ZetadocsforNAVSkins/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%;
}
}
/* 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;
}
}



/* 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;
	}
}

/* EQ product colours for text in 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, .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: #8EC852;
}
/* EQ end */

/* Collapse */
.tabbable .panel-default {
  border:0;
}
.tabbable .panel-heading {
  /* EQ standard greys */
  background: #F7F7F8;
  border: 1px solid #A09FAC;
  /* EQ end */  
  color: #666;
  padding:0;
}
/* EQ product colours for text in accordion bars */
.tabbable .panel-heading a {
	color:#272780;
}
.tabbable .panel-heading a:hover {
	color: #8EC852;
}
/* EQ end */
.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';
	src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.eot?v=4.3.0");
	src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format('embedded-opentype'),
	url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.woff2?v=4.3.0") format('woff2'),
	url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.woff?v=4.3.0") format('woff'),
	url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.ttf?v=4.3.0") format('truetype'),
	url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format('svg');
	font-weight:normal;
	font-style:normal}
@font-face {
   
  font-family: FSMatthew;
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Regular.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Regular'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Regular.eot?#iefix&v=4.3.0") format('embedded-opentype'),url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Regular.woff") format('woff');
 
}

@font-face {
   	
  font-family: 'FSMatthew Medium Italic';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-MediumItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Regular'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-MediumItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-MediumItalic.woff") format('woff');
}

@font-face {
   	
  font-family: 'FSMatthew Medium';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Medium.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Medium'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Medium.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Medium.woff") format('woff');
}


@font-face {
   	
  font-family: 'FSMatthew Light Italic';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-LightItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-LightItalic'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-LightItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-LightItalic.woff") format('woff');
}
 

@font-face {
   	
  font-family: 'FSMatthew Light';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Light.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Light'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Light.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Light.woff") format('woff');
}
 
@font-face {
   	
  font-family: 'FSMatthew Italic';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Italic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Italic'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Italic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Italic.woff") format('woff');
}
 
 
@font-face {
   	
  font-family: 'FSMatthew Bold Italic';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-BoldItalic.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-BoldItalic'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-BoldItalic.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-BoldItalic.woff") format('woff');
}
 
@font-face {
   	
  font-family: 'FSMatthew Bold';
  src:url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Bold.eot?v=4.3.0");
  src: local(FSMatthew), local('FSMatthewWeb-Bold'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/fonts/FSMatthewWeb-Bold.eot?#iefix&v=4.3.0") format('embedded-opentype'), url("/Portals/_default/Skins/ZetadocsforNAVSkins/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;
}


.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

{
color:#272780;
 font-size:32px;
 font-family: 'FSMatthew Medium';

}

.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;

}


/* 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;
}




html {
	overflow-y:scroll;
	height:100%;
}
#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:#272780; 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:10px 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; */
	height:40px;
}
.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:#75CB19;
	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:#75CB19;
	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:#75CB19;
	font-size:15px;
	font-weight:bold;
	text-decoration:none;
}
a.Head:Hover {
	color:#75CB19;
	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:#75CB19;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}
a.SubHead:Hover {
	color:#75CB19;
	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:#75CB19;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}
a.SubSubHead:Hover {
	color:#75CB19;
	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:#75CB19;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
}
a.SkinObject:Hover {
	color:#75CB19;
	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:#75CB19;
}
a.CommandButton:hover {
	color:#666;
}
/* button style for standard HTML buttons */
.StandardButton, a.StandardButton:Link, a.StandardButton:Visited, a.StandardButton:Active {
	color:#75CB19;
}
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:#75CB19;
	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:#75CB19;
}
a.breadcrumbText:hover {
	color:#75CB19;
}
/* 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 #75CB19 !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:#75CB19;
}
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;}

/* 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:#75CB19;
/*	-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:15px !important;
	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:#75CB19;
}
.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;
	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:#75CB19;
	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;
}
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:#75CB19;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
	text-shadow:none;
}
.nav .caret {
	border-bottom-color:#75CB19;
	border-top-color:#75CB19;
}
.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:#75CB19;
	border-color:#75CB19;
	background-image:linear-gradient(to bottom, rgba(255,255,255,0.25) 0px, rgba(255,255,255,0) 100%);
}
.panel-primary {
	border-color:#75CB19;
}
.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:#75CB19;
	border-color:#75CB19;
	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;
}
/* Contact Form */
label.control-label{font-weight:normal !important;padding-bottom: 6px;}
.bstrap30 .form-group{padding: 0px 10px;}
.bstrap30 .form-group.last{background: rgb(233,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:hover{background:#0E0C26!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;}

/* 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/ZetadocsforNAVSkins/images/klip-icons-144x144px-play-12.png");
	background-repeat:no-repeat;
	display:block;
}
.customNavigation .btn.play:before{
	background-image:url("/Portals/_default/Skins/ZetadocsforNAVSkins/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;}
#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;}
*/

/*------Niraj------------*/
.row-fluid{padding:70px 0;}
.FSMatthewLight{padding:10px 0;}
#content{color:#fff;padding:30px;position:absolute; text-shadow:2px 2px #000;top:150px;}
.howwework-bg{background-image: url("/Portals/3/Content/Images/Classroom1.gif");background-attachment:fixed; background-repeat:repeat-y; background-size:cover;}
.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;}
.backgroundMe.fullScreen{ background-attachment:fixed;background-image: url("/Portals/3/Content/Images/Classroom1-wide-high.gif");background-position:50% 50%!important;height:363px;}
.bannerMainFull{width:100%;position:relative;}

.True_Admin #dnn_FooterPaneQuarter5{display:block!important;}
#dnn_FooterPaneQuarter5{padding: 0 30px 20px;}

.four-icons>div{margin-bottom:80px;}

.DnnModule-741 .parallaxMe{height:auto!important;}

h1.small_title{text-align:center;font-size:14px;}

#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;}

/*------Editor------------*/
.Equi_Green18 {font-family:FSMatthew; color:#272780; font-size:18px;font-weight:normal;}
.Equi_Red16  {font-family:FSMatthew ;color:red; font-size:16px;font-weight:bold;}
.Equi_Grey16 {font-family:FSMatthew; color:Grey; font-size:16px; font-weight:normal;}



/*--- 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: 48%;
    padding: 10px;
    padding-right: 0px;
    height: 94%;
}

.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: 85%;
        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;
    }

    .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: 992px) {
    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: 45px 10px 0 0px;
        ; }

    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 (max-width: 768px) {
    h1.bannerText {
        font-size: calc(25px + 20 * ((100vw - 320px) / (768 - 320)));
        padding: 0px 5px 0 0px;
        ; }

    h2.bannerText {
        font-size: calc(18px + 10 * ((100vw - 320px) / (768 - 320)));
    }

    a.largeButton.bannerText , a.largeButton.bannerText:hover, .largeButton.bannerText , .largeButton.bannerText:hover {
        font-size: 14px !important;
        padding: calc(6px + 4 * ((100vw - 320px) / (768 - 320))) !important;
    }
}


/* 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, .filter a:hover {
	color:#8EC852;
}
.classic.isotope li {
	padding: 0 0 25px 0;
}
.classic.isotope li:hover > h4 {
	border-bottom:3px solid #8EC852;
}
.classic.isotope a:link, .classic.isotope a:visited {
	color:#272780;
}
.classic.isotope a:hover {
	color:#8EC852;
}
a.menuButton, a.menuButton:hover {
	color:#272780;
}
a, a:link, a:visited, a:active {
	color:#8EC852;
}
a:hover {
	color:#BBB;
}
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:darkgray;
}
.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:#DDD;
}
.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;
	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;
}
.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;
	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;
}
.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;
}
#dnnMenu .rootMenu li.TWbreadcrumb a div div, #dnnMenu .rootMenu li.TWselected a div div, #dnnMenu .rootMenu li.TWbreadcrumb a:hover div div, #dnnMenu .rootMenu li.rmhover a div div, #dnnMenu .rootMenu li a:hover div div {
	color:#8EC852 !important;
}


h1.bannerText {
		text-shadow: #ffffff 0px 0px 20px;
		color: #272780;
}


h2.bannerText {
		text-shadow: #ffffff 0px 0px 20px;
		color: #0e0c26;
}


/* EQ various edits throughout file */
/* Let's go responsive, baby! */

img {
	max-width:100%;
	height:auto;
}

.logoMain img{transition:all 0.7s ease-out 0s;}

/* 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: 10px 0;
		height: 55px;
	}
	.logoMain img {
		height: 35px;
	}
}

@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; }
}


/* 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;
  }

}
@import url("https://fonts.googleapis.com/css?family=Overlock:400,700,900,400italic,700italic,900italic");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/animate.css");
/*@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/owl.carousel.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/owl.theme.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/owl.transitions.css");
*/
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/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/ZetadocsforNAVSkins/css/bootstrapBeyond.css");
/* @import url("//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"); */
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/skin.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/modules.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/container.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/colors.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/mobile.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/responsive.helpers.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/system.css");
@import url("/Portals/_default/Skins/ZetadocsforNAVSkins/css/print.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;
}






/*!
 *  Font Awesome 4.6.3 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("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.eot?v=4.6.3");src:url("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format('embedded-opentype'),url("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2?v=4.6.3") format('woff2'),url("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.woff?v=4.6.3") format('woff'),url("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf?v=4.6.3") format('truetype'),url("/fonts/font-awesome-4.6.3/fonts/fontawesome-webfont.svg?v=4.6.3#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-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"}.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}

.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}


#dnnMenu {
	margin:0;
	padding:0;
}
#dnnMenu * {
	padding:0;
	margin:0;
}
#dnnMenu li a * {
	text-decoration: none;
	-moz-transition:none!important;
	-webkit-transition:none!important;
	-o-transition:none!important;
	-ms-transition:none!important;
	transition:none!important;
}
#dnnMenu li a div *, #dnnMenu .subMenu li a * {
	text-decoration: none;
	-moz-transition:all 0.4s linear!important;
	-webkit-transition:all 0.4s linear!important;
	-o-transition:all 0.4s linear!important;
	-ms-transition:all 0.4s linear!important;
	transition:all 0.4s linear!important;
}
#dnnMenu .rootMenu {
	position:relative;
*	z-index:903;
}
#dnnMenu .rootMenu li {
	float:left;
	margin:0;
	padding:0;
	list-style-type:none;
	position:relative;
	background:none;
}
#dnnMenu .rootMenu li.last {
	padding:0;
	background:none;
}
/*EQ */
#dnnMenu .rootMenu li.underline {
	padding:0;
	background:none;
    border-bottom: 1px solid #A09FAC;
}

#dnnMenu .rootMenu li.blankline {
	height: 8px;
}

#dnnMenu .rootMenu li.increasebottom {
	 /* height: 43px;  */
	 margin-bottom: 8px;
}


/*EQ */

#dnnMenu .rootMenu li a {
	display:block;
	background:none;
	text-decoration:none;
}
#dnnMenu .rootMenu li.TWselected a, #dnnMenu .rootMenu li.rmhover a, #dnnMenu .rootMenu li.TWbreadcrumb a, #dnnMenu .rootMenu li a:hover {
	background:none;
	text-decoration:none;
}
/* Center*/
#dnnMenu .rootMenu li a div {
	display:block;
	background:none;
	padding:0;
	cursor:pointer;
}
#dnnMenu .rootMenu li.TWselected a div, #dnnMenu .rootMenu li.rmhover a div, #dnnMenu .rootMenu li.TWbreadcrumb a div, #dnnMenu .rootMenu li a:hover div {
	background:none;
}
/* Right*/
#dnnMenu .rootMenu li a div div {
	display:block;
	background:none;
	margin:0;
	padding:0 20px;
	/* EQ product colour */
    color:#272780;
    /* EQ end */
	white-space:nowrap;
	line-height:30px;
    /* EQ larger font in full size main menu */
	font-size:16px;
    /* EQ end */
	font-weight:normal;
	text-decoration:none;
    /* EQ don't force main menu into uppercase */
    /* text-transform:uppercase; */
    /* EQ end */
}
/* EQ main menu text reduces when window narrows */
@media (min-width:641px) and (max-width:992px) {
	#dnnMenu .rootMenu li a div div {
		font-size: 14px;
		padding:0 11px;
	}
}
/* EQ end */
#dnnMenu .rootMenu li.TWbreadcrumb a div div, #dnnMenu .rootMenu li.TWselected a div div, #dnnMenu .rootMenu li.TWbreadcrumb a:hover div div, #dnnMenu .rootMenu li.rmhover a div div, #dnnMenu .rootMenu li a:hover div div {
	color:#75CB19;
	background:none;
}
#dnnMenu .rootMenu li.TWselected a div div {
	color:#CCC;
	background:none;
}
#dnnMenu > .rootMenu > .haschild > a > div > div:after {
/*	content:''; */
	content: '\f0d7';
	display:block;
	text-decoration: inherit;
	font-size: 12px;
	font-family: 'FontAwesome';
	font-style: normal;
	line-height:100%;
	margin:-6px 0 0 0;
	text-align:center;
	width:100%;
}
/*Left*/
#dnnMenu .subMenu {
	display:none;
	position:absolute;
	width:auto;
	margin:8px 0 0;
	padding:0;
	z-index:9999;
	min-width:200px;
	/* EQ off white background to drop down menu */
	/* background: #FFF; */
	background: #F7F7F8;
	/* border:1px solid #F2F2F2; */
	border:1px solid #A09FAC;
	/* border-top:3px solid #75CB19; */
	/* border-bottom:3px solid #75CB19; */
	/* EQ end */
}
#dnnMenu ul ul {
	border-top:none;
	z-index:9999;
	
}
#dnnMenu ul ul ul {
}
#dnnMenu .rootMenu li.hover .subMenu {
	display:block;
	white-space:nowrap;
}
#dnnMenu .subMenu ul {
	margin:0;
	padding:0;
	position:relative;
	z-index:1200;
}	
	

#dnnMenu .subMenu li {
	float:none;
	background:none;
	clear:both;
	width:100%;
	padding:0;
	text-align:left;
}
#dnnMenu .subMenu li.haschild {
*	margin-bottom:-3px;
}
#dnnMenu .subMenu li.haschild > a > div:before {
/*	content:''; */
		content: '\f0da';
	display:block;
	float:right;
	text-decoration: inherit;
	font-size: 12px;
	font-family: 'FontAwesome';
	font-style: normal;
	line-height:100%;
	margin:2px 0 0;
}
#dnnMenu .subMenu li.item a {
	border:none;
	background:none;
}
#dnnMenu .subMenu li.first > a {
	border-top: none;
}
#dnnMenu .subMenu li.item a div {
	display:block;
	background:none;
	font-weight:normal;
	font-size:14px;
	/* EQ sub menu text in product colour */
	color:#272780;
	/* EQ end */
	/* padding:7px; */
	padding: 3px 7px 2px 7px;
	/* EQ remove fuss
	border-bottom:0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background:#FFF;
	margin:3px;
	EQ end */
}
/* EQ */
#dnnMenu .subMenu li.highlight > a div {
	font-weight:bold;
}
/* EQ */
#dnnMenu .subMenu li.TWselected > a div, #dnnMenu .subMenu li.TWbreadcrumb > a div, #dnnMenu .subMenu li.item a:hover div {
	/* EQ selected sub menu text in highlight colour */
	color:#8EC852 !important;

	/* background:#F7F7F7; */
	/* EQ end */
}
#dnnMenu .subMenu li.haschild > a {
}
#dnnMenu .subMenu li.TWselected.haschild > a div, #dnnMenu .subMenu li.TWbreadcrumb.haschild > a div, #dnnMenu .subMenu li.item.haschild > a:hover div {
}
#dnnMenu .subMenuRight {
	display:none;
	position:absolute;
	left:100%;
	top:-6px;
	width:auto;
	margin:0 0 0 4px;
	padding:0;
	z-index:9999;
	min-width:200px;

	
	/* EQ off white background to drop down menu */
	/* background: #FFF; */
	background: #F7F7F8;
	/* border:1px solid #F2F2F2; */
	border:1px solid #A09FAC;
	/* border-top:3px solid #75CB19; */
	/* border-bottom:3px solid #75CB19; */
	/* EQ end */	
	
}
#dnnMenu .subMenu > li.hover > .subMenuRight {
	display:none;
}

/* Mega Menu */
#dnnMenu .megamenu .subMenu {
	margin-left:-250%;
	padding:0 0 3px 3px;
}




#dnnMenu .megamenu .subMenu > ul {
	width:600px;
}
#dnnMenu .megamenu .subMenu li {
	width:200px;
	float:left;
	clear:none;
}
#dnnMenu .megamenu .subMenu li.item a div {
/*
	margin:3px 3px 0 0;
*/
	margin: 0 3px 0 0;
}
#dnnMenu .megamenu .subMenu li.haschild > a > div:before {
	content:'';
}
#dnnMenu .megamenu .subMenuRight {
	display:block !important;
	left:0;
	top:0;
	position: relative;
	width:198px;
	margin:0;
	padding:0 0 3px;
	border:0;
	background: #F7F7F8; /*EQ */
}


#dnnMenu .megamenu .subMenuRight li.item a div {
/*
	padding:4px 0 5px 17px;
*/
	padding:3px 0 3px 7px;
	/* EQ megamenu text in product colour */
	color:#272780;
	/* EQ end */
}
/* EQ */
#dnnMenu .megamenu .subMenuRight li.increasebottom {
	 /* height: 43px;  */
	 margin-bottom: 8px;
}
/* EQ remove indicators on megamenu
#dnnMenu .megamenu .subMenuRight li.item a div:before {

	content: '\f0da';
	font-family:'FontAwesome';
	width:10px;
	float:left;
	margin:0.5px 0 0 -10px;
}
*/
#dnnMenu .megamenu .subMenuRight li.item.haschild > a > div:before {
	margin:3px 0 0 -10px;
}

#dnnMenu .megamenu .subMenuRight .subMenuRight {
	padding:0;
}
#dnnMenu .megamenu .subMenuRight .subMenuRight .subMenuRight {
	width:183px;
	min-width:183px;
}
#dnnMenu .megamenu .subMenuRight li {
	margin-bottom: 0;
}
#dnnMenu .megamenu .subMenuRight li li {
	width:182px;
	margin-left:17px;
}
#dnnMenu .megamenu .subMenuRight li li li {
	width:165px;
	margin-left:17px;
}



#dnnMenu .megamenu .subMenuRight li.item  a > div:hover  {
	color: #8EC852;
}




#CollapseMenuMob {
	margin:0;
	/* EQ mobile menu: overall padding & background */
	padding:0 15px 15px 15px;
	background:#F7F7F8;
	/* EQ end */
	border-bottom:1px solid #F2F2F2;
	z-index:1000;
}
#CollapseMenuMob * {
	padding:0;
	margin:0;
}
#CollapseMenuMob ul {
	padding:0;
	margin:0;
	list-style:none;
	width:100%;
}
#CollapseMenuMob li.menuItem {
	position:relative;
	width:100%;
	margin-bottom:1px;
    /* EQ mobile menu: top level item */
	background: #EEE;
    /* EQ end */
}
#CollapseMenuMob li.menuItem a {
	line-height:20px;
	display:block;
	padding:12px 44px 12px 12px;
    /* EQ mobile menu: top level item */
	font-size:16px;
	border:1px solid #DDD;
	color: #272780;
    /* EQ end */
}

/* EQ text in product highlight colour for mouse hover & current page */
#CollapseMenuMob li.menuItem a:hover, #CollapseMenuMob li.menuItem.menubreadcrumb a{
	color:#8EC852;
}
/* EQ end */

#CollapseMenuMob .collapseArrow {
	width:44px;
	height:44px;
	position:absolute;
	top:1px;
	right:1px;
	cursor:pointer;
	background:#FFF;
}
#CollapseMenuMob .collapseArrow:before {
	font-family:'FontAwesome';
	content:'';
	font-size:20px;
	text-align:center;
	line-height:20px;
	width:44px;
	height:44px;
	line-height:44px;
	padding:0;
	display:block;
}
#CollapseMenuMob .collapseArrow.collapsed:before {
	content:'';
}
/* subMenu */
#CollapseMenuMob .subMenu {
	background:#F9F9F9;
	padding:3px;
}
#CollapseMenuMob .subMenu li.menuItem {
	margin-bottom:1px;
	/* EQ mobile menu: sub item */
	background:#F7F7F8;
	/* EQ end */
}
#CollapseMenuMob .subMenu li.menuItem a {/* 2nd Level */
	/* EQ mobile menu: sub item */
	color:#272780;
	/* EQ end */
	padding:10px 38px 10px 20px;
	/* EQ mobile menu: sub item */
	font-size:14px;
	/* EQ end */
	border:0;
}
#CollapseMenuMob .subMenu li li.menuItem a {/* 3rd Level */
	padding:10px 38px 10px 30px;
}
#CollapseMenuMob .subMenu li li li.menuItem a {/* 4th Level */
	padding:10px 38px 10px 38px;
}
#CollapseMenuMob .subMenu li li li li.menuItem a {/* 5th Level */
	padding:10px 38px 10px 50px;
}
#CollapseMenuMob .subMenu li.menuItem a:hover {
	/* EQ mobile menu: sub item mouse hover */
	color:#8EC852;
	/* EQ end */
}
#CollapseMenuMob .subMenu .collapseArrow {
	height:36px;
	width:36px;
	background:#F9F9F9;
}
#CollapseMenuMob .subMenu .collapseArrow:before {
	font-size:16px;
	line-height:35px;
	width:36px;
	height: 36px;
	margin:0 2px 0 0;
	/* EQ mobile menu: sub item expand/collapse arrow */
	background:#EEE;
	/* EQ end */
}
#CollapseMenuMob li li.menuItem a:before {
	font-family:'FontAwesome';
	content:'';
	line-height:20px;
	width:10px;
	display:block;
	margin:1px 0 0 -10px;
	float:left;
}
/* breadcrumbs */
#CollapseMenuMob .menuItem.in.haschild > a {
	color:#BBB;
}
#CollapseMenuMob .subMenu .menuItem.menubreadcrumb > a {
	/* EQ text in product highlight colour for current page in sub menu */
	color:#8EC852;
	/* EQ end */
}
#CollapseMenuMob .in.haschild > ul {
	display:block;
}


/*!
 * Font Awesome Free 5.14.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.eot");src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.woff2") format("woff2"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.woff") format("woff"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.ttf") format("truetype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.eot");src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.woff2") format("woff2"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.woff") format("woff"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.ttf") format("truetype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-regular-400.svg#fontawesome") format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.eot");src:url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.woff2") format("woff2"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.woff") format("woff"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.ttf") format("truetype"),url("/DesktopModules/DnnSharp/Common/static/font-awesome/webfonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}

div.wysiwyg{border:1px solid #999;padding:0;background:#fff url("/DesktopModules/DnnSharp/ActionForm/static/images/jquery.wysiwyg.bg.png") repeat-x top;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}div.wysiwyg *{margin:0;padding:0}div.wysiwyg ul.toolbar li.jwysiwyg-custom-command{overflow:hidden}div.wysiwyg div.toolbar-wrap{width:100%;border-bottom:1px solid #ccc}div.wysiwyg ul.toolbar{list-style:none;float:left;padding:0 3px 0 3px;margin:0}div.wysiwyg ul.toolbar li{display:block;float:left;width:18px;height:18px;padding:0;border:1px solid transparent;margin:3px 0 3px 0;text-indent:-5000px;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/jquery.wysiwyg.gif") no-repeat -640px -800px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;user-select:none}div.wysiwyg ul.toolbar li.separator{background:0 0;width:1px;height:auto;margin:3px 4px 3px 5px;border:none;border-left:1px solid #ccc}div.wysiwyg ul.toolbar li.active,div.wysiwyg ul.toolbar li.wysiwyg-button-hover{background-color:transparent;width:18px;height:18px;border:1px solid #d0d0d0;border-left-color:#aaa;border-top-color:#aaa}div.wysiwyg ul.toolbar li.disabled{background-color:transparent;opacity:.5;cursor:auto}div.wysiwyg ul.toolbar li.bold{background-position:-1px -15px}div.wysiwyg ul.toolbar li.italic{background-position:-18px -15px}div.wysiwyg ul.toolbar li.strikeThrough{background-position:-36px -15px}div.wysiwyg ul.toolbar li.underline{background-position:-55px -15px}div.wysiwyg ul.toolbar li.highlight{background-position:-48px -96px}div.wysiwyg ul.toolbar li.justifyLeft{background-position:0 2px}div.wysiwyg ul.toolbar li.justifyCenter{background-position:-18px 2px}div.wysiwyg ul.toolbar li.justifyRight{background-position:-36px 2px}div.wysiwyg ul.toolbar li.justifyFull{background-position:-55px 2px}div.wysiwyg ul.toolbar li.indent{background-position:-74px 1px}div.wysiwyg ul.toolbar li.outdent{background-position:-92px 1px}div.wysiwyg ul.toolbar li.subscript{background-position:-74px -15px}div.wysiwyg ul.toolbar li.superscript{background-position:-92px -15px}div.wysiwyg ul.toolbar li.undo{background-position:0 -68px}div.wysiwyg ul.toolbar li.redo{background-position:-18px -69px}div.wysiwyg ul.toolbar li.insertOrderedList{background-position:-36px -49px}div.wysiwyg ul.toolbar li.insertUnorderedList{background-position:-19px -49px}div.wysiwyg ul.toolbar li.insertHorizontalRule{background-position:0 -49px}div.wysiwyg ul.toolbar li.h1{background-position:0 -31px}div.wysiwyg ul.toolbar li.h2{background-position:-18px -31px}div.wysiwyg ul.toolbar li.h3{background-position:-36px -31px}div.wysiwyg ul.toolbar li.h4{background-position:-55px -31px}div.wysiwyg ul.toolbar li.h5{background-position:-74px -31px}div.wysiwyg ul.toolbar li.h6{background-position:-92px -31px}div.wysiwyg ul.toolbar li.paragraph{background-position:0 -106px}div.wysiwyg ul.toolbar li.colorpicker{background-position:-18px -106px}div.wysiwyg ul.toolbar li.fullscreen{background-position:-36px -106px}div.wysiwyg ul.toolbar li.cut{background-position:-36px -68px}div.wysiwyg ul.toolbar li.copy{background-position:-55px -68px}div.wysiwyg ul.toolbar li.paste{background-position:-74px -68px}div.wysiwyg ul.toolbar li.insertTable{background-position:-74px -49px}div.wysiwyg ul.toolbar li.increaseFontSize{background-position:-18px -87px}div.wysiwyg ul.toolbar li.decreaseFontSize{background-position:-36px -87px}div.wysiwyg ul.toolbar li.createLink{background-position:-92px -48px}div.wysiwyg ul.toolbar li.unLink{background-position:-74px -87px}div.wysiwyg ul.toolbar li.insertImage{background-position:-92px -87px}div.wysiwyg ul.toolbar li.html{background-position:-55px -49px}div.wysiwyg ul.toolbar li.removeFormat{background-position:-92px -68px}div.wysiwyg ul.toolbar li.empty{background-position:-73px -86px}div.wysiwyg ul.toolbar li.code{background-position:-74px -106px}div.wysiwyg ul.toolbar li.cssWrap{background-position:-92px -106px}div.wysiwyg-dialogRow{float:left;width:100%;font-size:16px}div.wysiwyg iframe{clear:left;background-color:#fff;padding:0;margin:0;display:block;width:100%}div.wysiwyg>textarea{border:0;outline:0;box-shadow:none}.wysiwyg-dialog{position:fixed;top:50px;left:50px;width:450px;height:300px;background:0 0;font:14px "Helvetic Neue",Helvetica,Arial,sans-serif}.wysiwyg-dialog .wysiwyg-dialog-topbar{background:#333;border:1px #111 solid;color:#fff;padding:10px;position:relative}.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-close-wrapper .wysiwyg-dialog-close-button{color:#fff;text-decoration:none;display:block;padding:6px 10px;position:absolute;right:12px;top:50%;height:14px;margin-top:-12px}.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-close-wrapper a.wysiwyg-dialog-close-button:hover{background:#666}.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-title{font-size:20px;font-weight:700;padding:5px}.wysiwyg-dialog .wysiwyg-dialog-content{border:1px #ccc solid;border-top:0;padding:15px;background:#fff}.wysiwyg-dialog-modal-div{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff;background-color:rgba(0,0,0,.5)}.wysiwyg-dialog-content form.wysiwyg fieldset{border:1px #ccc solid}.wysiwyg-dialog-content form.wysiwyg legend{padding:7px}.wysiwyg-dialog-content form.wysiwyg .form-row{clear:both;padding:4px 0}.wysiwyg-dialog form.wysiwyg .form-row .form-row-key,.wysiwyg-dialog-content form.wysiwyg .form-row label{display:block;float:left;width:35%;text-align:right;padding:4px 5px}.wysiwyg-dialog-content form.wysiwyg .form-row .form-row-value{display:block;float:left;width:55%}.wysiwyg-dialog-content form.wysiwyg .form-row input.width-auto{width:auto}.wysiwyg-dialog-content form.wysiwyg input.width-small{width:50px;min-width:50px;max-width:50px}.wysiwyg-dialog form.wysiwyg select,.wysiwyg-dialog-content form.wysiwyg input{padding:2px;width:100%;margin:2px}.wysiwyg-dialog form.wysiwyg input[type=reset],.wysiwyg-dialog-content form.wysiwyg input[type=submit]{padding:2px 7px;width:auto}form.wysiwyg{background:#fff;padding:1em;border:1px solid #eee;margin:2px;width:25em}form.wysiwyg fieldset div{margin:.3em 0;clear:both;margin-bottom:5px}form.wysiwyg label{display:block;text-align:right;margin-right:1em}form.wysiwyg legend{color:#0b77b7;font-size:1.2em}form.wysiwyg legend span{width:10em;text-align:right}form.wysiwyg input{padding:.15em;width:10em;border:1px solid #ddd;background:#fafafa;font:bold 0.95em arial,sans-serif;margin-bottom:5px;-moz-border-radius:.4em;-khtml-border-radius:0.4em}form.wysiwyg input.height,form.wysiwyg input.width{width:4em}form.wysiwyg input:focus,form.wysiwyg input:hover{border-color:#c5c5c5;background:#f6f6f6}form.wysiwyg .button{margin-top:8px}form.wysiwyg fieldset{border:1px solid #ddd;padding:0 .5em .5em}form.wysiwyg input.default{color:#bbb}.colorpicker{width:356px;height:176px;overflow:hidden;position:absolute;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_background.png");font-family:Arial,Helvetica,sans-serif;display:none;z-index:999}.colorpicker_color{width:150px;height:150px;left:14px;top:13px;position:absolute;background:red;overflow:hidden;cursor:crosshair}.colorpicker_color div{position:absolute;top:0;left:0;width:150px;height:150px;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_overlay.png")}.colorpicker_color div div{position:absolute;top:0;left:0;width:11px;height:11px;overflow:hidden;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_select.gif");margin:-5px 0 0 -5px}.colorpicker_hue{position:absolute;top:13px;left:171px;width:35px;height:150px;cursor:n-resize}.colorpicker_hue div{position:absolute;width:35px;height:9px;overflow:hidden;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_indic.gif") left top;margin:-4px 0 0 0;left:0}.colorpicker_new_color{position:absolute;width:60px;height:30px;left:213px;top:13px;background:red}.colorpicker_current_color{position:absolute;width:60px;height:30px;left:283px;top:13px;background:red}.colorpicker input{background-color:transparent;border:1px solid transparent;position:absolute;font-size:10px;font-family:Arial,Helvetica,sans-serif;color:#898989;top:4px;right:11px;text-align:right;margin:0;padding:0;height:11px}.colorpicker_hex{position:absolute;width:72px;height:22px;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_hex.png") top;left:212px;top:142px}.colorpicker_hex input{right:6px}.colorpicker_field{height:22px;width:62px;background-position:top;position:absolute}.colorpicker_field span{position:absolute;width:12px;height:22px;overflow:hidden;top:0;right:0;cursor:n-resize}.colorpicker_rgb_r{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_rgb_r.png");top:52px;left:212px}.colorpicker_rgb_g{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_rgb_g.png");top:82px;left:212px}.colorpicker_rgb_b{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_rgb_b.png");top:112px;left:212px}.colorpicker_hsb_h{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_hsb_h.png");top:52px;left:282px}.colorpicker_hsb_s{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_hsb_s.png");top:82px;left:282px}.colorpicker_hsb_b{background-image:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_hsb_b.png");top:112px;left:282px}.colorpicker_submit{position:absolute;width:22px;height:22px;background:url("/DesktopModules/DnnSharp/ActionForm/static/images/colorpicker_submit.png") top;left:322px;top:142px;overflow:hidden}.colorpicker_focus{background-position:center}.colorpicker_hex.colorpicker_focus{background-position:bottom}.colorpicker_submit.colorpicker_focus{background-position:bottom}.colorpicker_slider{background-position:bottom}.modal-open .colorpicker{z-index:9999}.jq-toast-wrap{display:block;position:fixed;width:250px;pointer-events:none!important;margin:0;padding:0;letter-spacing:normal;z-index:10000!important}.jq-toast-wrap *{margin:0;padding:0}.jq-toast-wrap.bottom-left{bottom:20px;left:20px}.jq-toast-wrap.bottom-right{bottom:20px;right:40px}.jq-toast-wrap.top-left{top:20px;left:20px}.jq-toast-wrap.top-right{top:20px;right:40px}.jq-toast-single{display:block;width:100%;padding:10px;margin:0 0 5px;border-radius:4px;font-size:12px;font-family:arial,sans-serif;line-height:17px;position:relative;pointer-events:all!important;background-color:#444;color:#fff}.jq-toast-single h2{font-family:arial,sans-serif;font-size:14px;margin:0 0 7px;background:0 0;color:inherit;line-height:inherit;letter-spacing:normal}.jq-toast-single a{color:#eee;text-decoration:none;font-weight:700;border-bottom:1px solid #fff;padding-bottom:3px;font-size:12px}.jq-toast-single ul{margin:0 0 0 15px;background:0 0;padding:0}.jq-toast-single ul li{list-style-type:disc!important;line-height:17px;background:0 0;margin:0;padding:0;letter-spacing:normal}.close-jq-toast-single{position:absolute;top:3px;right:7px;font-size:14px;cursor:pointer}.jq-toast-loader{display:block;position:absolute;top:-2px;height:5px;width:0%;left:0;border-radius:5px;background:red}.jq-toast-loaded{width:100%}.jq-has-icon{padding:10px 10px 10px 50px;background-repeat:no-repeat;background-position:10px}.jq-icon-info{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=');background-color:#31708f;color:#d9edf7;border-color:#bce8f1}.jq-icon-warning{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=');background-color:#8a6d3b;color:#fcf8e3;border-color:#faebcc}.jq-icon-error{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=');background-color:#a94442;color:#f2dede;border-color:#ebccd1}.jq-icon-success{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==');color:#dff0d8;background-color:#3c763d;border-color:#d6e9c6}#afTabs .err,.actionForm .err{color:#c22}.aftpl_wait{display:none;text-align:center;margin:20px}.actionForm .dnnForm{margin-left:0}div.dropdown-loader{background-color:#fff;color:#424242;margin-left:1px;margin-top:10px;position:absolute;width:90%}div.row-fluid div.dropdown-loader{background-color:#e9e9e9}div.ContentWrapDark div.dropdown-loader{background-color:#292929;color:#fff}div.contentWrap div.dropdown-loader{background-color:#f5f4f2}.dnnFormPopup{overflow:visible!important;padding:18px!important}.dnnFormPopup .dnnModalCtrl a.ui-dialog-titlebar-close{padding:0;position:static}.dnnFormPopup .ui-resizable-handle{display:none!important}.dnnFormPopup .ui-resizable-se{display:block!important}.ui-widget.ui-dialog .ui-dialog-titlebar{padding:1.3em 0 .4em 1.5em}.angucomplete-holder{position:relative}.angucomplete-dropdown{border-color:#ececec;border-width:1px;border-style:solid;border-radius:2px;width:100%;cursor:pointer;z-index:9999;position:absolute;margin-top:-6px;background-color:#fff;overflow:auto}.highlight{color:red}.angucomplete-selected-row{background-color:#abc;padding:2px 0;color:#fff}.angucomplete-row{padding:2px 4px 2px 4px;font-weight:400}ul.dropdown-menu.datetime-picker-dropdown li{list-style-type:none}.field-container ul.dropdown-menu.datetime-picker-dropdown{position:relative}.af-modal.in{display:inline-flex!important;height:100%}.af-modal .modal-dialog{position:relative;-webkit-align-self:center;align-self:center}.af-modal .modal-content{position:relative;top:0;bottom:0;left:0;right:0}.af-modal .modal-body{overflow:auto;max-height:80vh!important;margin:5px}.af-modal .modal-footer{position:relative;bottom:0;left:0;right:0}@media only screen and (min-width:1400px){.af-modal-module.in,.af-modal.in{display:inline-flex!important}}.af-modal-module.in,.af-modal.in{height:100%}.af-modal-module .modal-dialog{position:relative;-webkit-align-self:center;align-self:center}.af-modal-module .modal-content{position:relative;top:0;bottom:0;left:0;right:0}.af-modal-module .modal-body{overflow:auto;max-height:80vh!important}.af-modal-module .modal-footer{position:relative;bottom:0;left:0;right:0}.modal .dropdown-absolute{position:fixed}.ContentWrapDark .modal-dialog{color:#666}.ContentWrapDark .bstrap3-material .form-horizontal .control-label,.ContentWrapDark .bstrap30 .form-horizontal .control-label{color:#fff}.ContentWrapDark .bstrap3-material .form-horizontal .af-sortable,.ContentWrapDark .bstrap30 .form-horizontal .af-sortable,.ContentWrapDark .modal-dialog .modal-content label.control-label{color:#666}.multiple-choice-group-container{display:flex;flex-direction:column}.multiple-choice-group-container .multiple-choice-radio{display:grid;grid-template-columns:repeat(auto-fit,minmax(5%,1fr));align-items:center}.multiple-choice-group-container .multiple-choice-radio .radio{margin-left:0!important;padding:0!important;margin-top:-8%!important;display:flex;align-items:flex-end;justify-content:center}.multiple-choice-group-container .multiple-choice-radio .radio label{display:flex;flex-direction:column-reverse;justify-content:center;padding-left:0;align-items:center}.multiple-choice-group-container .multiple-choice-radio .radio input[type=radio]{margin-left:0}.bstrap30 .multiple-choice-group-container .multiple-choice-radio .radio input[type=radio]{position:relative}.multiple-choice-group-container .radiocontainer:not(:first-child) .multiple-choice-radio .radio span{display:none}.multiple-choice-group-container .multiple-choice-radio .radio span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}.pac-container{z-index:9051}.container-btn-vertical-center:before{content:' ';display:inline-block;vertical-align:middle;height:100%}.container-btn-vertical-center{position:absolute;display:flex;align-items:center;right:15px;vertical-align:bottom;bottom:0}div.color-picker{z-index:9051}.dnnsf-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.modal-backdrop.fade.in{height:100%;position:fixed}.fl-form{margin-top:5px}.fl-form .field-container .fl-wrap .fl-label{padding-top:0}

@charset "UTF-8";.bstrap30 table#Table1{width:100%;}::-ms-clear{display:none;}.common-loading-container{background-color:#fff;height:100%;margin:0 auto;overflow:hidden;position:absolute;min-height:100px;width:100%;z-index:999;top:0;left:0;}div.angrid .common-loading-container{min-height:350px;}div.tab-content .common-loading-container{margin:50px auto 0 auto;}.modal .common-loading-container{position:fixed;}.common-data-loading,.common-data-loading:before,.common-data-loading:after{animation:line-wave 1s infinite ease-in-out;background:#00c0ef;height:3em;width:1em;}.common-data-loading.af-loading,.common-data-loading.af-loading:before,.common-data-loading.af-loading:after{background:inherit;}.common-data-loading{animation-delay:-.16s;color:#00c0ef;font-size:10px;left:50%;margin:0 auto;position:absolute;transform:translateZ(0);top:50%;text-indent:-9999em;}.common-loading-text{left:47%;margin:0 auto;position:absolute;transform:translateZ(0);top:50%;}.common-data-loading:before,.common-data-loading:after{content:'';position:absolute;top:0;}.common-data-loading:before{animation-delay:-.32s;left:-1.5em;}.common-data-loading:after{left:1.5em;}@keyframes line-wave{0%,80%,100%{box-shadow:0 0;height:3em;}40%{box-shadow:0 -2em;height:4em;}}.bstrap30 .dropdown-menu li{list-style-type:none !important;}.dropdown-absolute{position:absolute;z-index:1030;}.dnnsf-disabled-checkboxes{pointer-events:none;}.not-allowed{cursor:not-allowed;}.dropdown-panel{display:table;white-space:nowrap;padding:12px;max-height:250px;overflow-x:hidden;opacity:0;}button>i.fa-action-form.pull-left{margin-top:3px;margin-left:0;}button>i.fa-action-form{margin-left:4px;}.bstrap .static{line-height:20px;font-size:13px;padding-top:5px;padding-left:6px;color:#444;}.modal-content>.modal-body .form-group{margin:0;}@media only screen and (max-width:992px){.modal-content{width:calc(100vw - 20px);}}.table-striped .preview img{min-width:80px;}html body.in-iframe .bstrap30 .dropdown-absolute{position:relative;}.fileinput-button{position:relative;overflow:hidden;}.fileinput-button input{position:absolute !important;top:0 !important;right:0 !important;margin:0 !important;opacity:0 !important;filter:alpha(opacity=0) !important;transform:translate(-300px,0) scale(4) !important;font-size:23px !important;direction:ltr !important;cursor:pointer !important;height:30px !important;border-width:0 !important;}.fileupload-buttonbar .btn,.fileupload-buttonbar .toggle{margin-bottom:5px;}.progress-animated .bar{background:url("/DesktopModules/DnnSharp/ActionForm/templates/Form/bootstrap/img/progressbar.gif") !important;filter:none;}.fileupload-loading{float:right;width:32px;height:32px;background:url("/DesktopModules/DnnSharp/ActionForm/templates/Form/bootstrap/img/loading.gif") center no-repeat;background-size:contain;display:none;}.fileupload-processing .fileupload-loading{display:block;}.files audio,.files video{max-width:300px;}@media(max-width:767px){.fileupload-buttonbar .toggle,.files .toggle,.files .btn span{display:none;}.files .name{width:80px;word-wrap:break-word;}.files audio,.files video{max-width:80px;}}.fileinput-button .dnnInputFileWrapper{overflow:visible !important;position:static !important;}.fileinput-button .dnnInputFileWrapper .dnnSecondaryAction{display:none !important;}.inline-error p{margin:0;padding:0;}.alert p{margin:10px 0 16px 0;padding:0;}.files p{margin:0;padding:0;}.ui-dialog .ui-dialog-titlebar-close{position:static !important;}.modal-open .DnnModule,.modal-open #DNN6,.modal-open #Content{position:static !important;}@media(min-width:992px){.modal .modal-dialog.modal-lg{width:900px;}}.ui-datepicker{z-index:9999 !important;}.popover{z-index:9999 !important;}.af-fade.ng-hide-add,.af-fade.ng-hide-remove{-webkit-transition:.5s linear all;-moz-transition:.5s linear all;-o-transition:.5s linear all;transition:.5s linear all;}.af-fade.ng-hide-remove{opacity:0;}.af-fade.ng-hide-remove.ng-hide-remove-active{opacity:1;}.af-fade.ng-hide-add{opacity:1;}.af-fade.ng-hide-add.ng-hide-add-active{opacity:0;}.af-slide.ng-hide-add,.af-slide.ng-hide-remove{-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out;display:block !important;}.af-slide.ng-hide-remove,.af-slide.ng-hide-add.ng-hide-add-active{height:0;opacity:0;}.af-slide.ng-hide-add,.af-slide.ng-hide-remove.ng-hide-remove-active{height:100%;opacity:1;}.autocomplete-wrapper{margin:44px auto 44px;max-width:600px;}.autocomplete-wrapper label{display:block;margin-bottom:.75em;color:#3f4e5e;font-size:1.25em;}.autocomplete-wrapper .text-field{padding:0 15px;width:100%;height:40px;border:1px solid #cbd3dd;font-size:1.125em;}.autocomplete-wrapper ::-webkit-input-placeholder{color:#cbd3dd;font-style:italic;font-size:18px;}.autocomplete-wrapper :-moz-placeholder{color:#cbd3dd;font-style:italic;font-size:18px;}.autocomplete-wrapper ::-moz-placeholder{color:#cbd3dd;font-style:italic;font-size:18px;}.autocomplete-wrapper :-ms-input-placeholder{color:#cbd3dd;font-style:italic;font-size:18px;}.autocomplete-suggestions{overflow:auto;border:1px solid #cbd3dd;background:#fff;}.autocomplete-suggestion{overflow:hidden;padding:5px 15px;white-space:nowrap;}.autocomplete-selected{background:#f0f0f0;}.autocomplete-suggestions strong{color:#1fadd7;font-weight:normal;}label.control-label{font-weight:bold !important;}.ContentWrapDark label.ng-binding{color:initial;}@media only screen and (max-width:768px){.af-modal-module .modal-dialog{transform:translate(0,0) !important;-ms-transform:translate(0,0) !important;-webkit-transform:translate(0,0) !important;}}.bstrap30 .row{min-width:0;}.bstrap30 .field-container{margin-bottom:15px;}.bstrap30 .loose .field-container{margin-bottom:27px;}.bstrap30 .compact .field-container{margin-bottom:4px;}.bstrap30 label{font-weight:normal;}.bstrap30 .form-horizontal .top .control-label{text-align:left;margin:0 0 3px 3px;padding:0;float:none;width:auto;}.bstrap30 .form-horizontal .control-label.radio-inline{width:auto;}@media(min-width:768px){.bstrap30 .form-horizontal .label-left{text-align:left;}.bstrap30 .form-horizontal .label-right{text-align:right;}.bstrap30 .form-horizontal .label-center{text-align:center;}}.bstrap30 .wysiwyg{overflow:hidden;}.bstrap30 label.required{font-weight:bold;}.bstrap30 .form-horizontal .control-label,.bstrap30 .form-horizontal .radio,.bstrap30 .form-horizontal .checkbox,.bstrap30 .form-horizontal .radio-inline,.bstrap30 .form-horizontal .checkbox-inline{padding-top:10px;}.bstrap30 .radio-inline,.bstrap30 .checkbox-inline{margin-left:10px;}.bstrap30 .form-horizontal .control-label.radio{text-align:left;}.bstrap30 .action-buttons{text-align:center;padding-top:17px;}.bstrap30 label.placeholder{background:none !important;line-height:27px !important;}.bstrap30 .submit-progress{visibility:hidden;}.bstrap30 .submit-progress img{width:auto;box-shadow:none;-webkit-box-shadow:none;background-color:transparent;border-color:transparent;}.bstrap30 .submit-progress.stretch img{width:100%;}.bstrap30 .section-title{padding-top:7px;padding-bottom:7px;}.bstrap30 .section-title.underlined{border-bottom:1px solid #ccc;}.bstrap30 .modal{overflow-y:auto !important;width:auto;background:transparent;margin:0;top:0 !important;z-index:9050 !important;}.bstrap30 .modal-body{max-height:none;}.bstrap30 .modal-backdrop,.bstrap30 .modal-backdrop.fade.in{position:fixed;opacity:.8 !important;filter:alpha(opacity=80);z-index:9040 !important;}.bstrap30 .form-actions{background:none;padding:0;margin:0;border:none;}.bstrap30 .form-horizontal .control-label{width:auto;float:none;}.bstrap30 .c-form .form-group{margin-bottom:0;}.bstrap30 input[type="radio"],.bstrap30 input[type="checkbox"]{margin-top:1px;}.bstrap30 .static{margin:8px 0 0 0;}.bstrap30 textarea.form-control{height:auto;}.bstrap30 .label-align-top .radio,.bstrap30 .label-align-top .checkbox{margin-left:20px;}.bstrap30 .centered{text-align:center;}.bstrap30 .label-align-top .btn-form{margin-top:17px;}.bstrap30 .required label:after,.bstrap30 legend.required:after{content:none;}.bstrap30 .btnc-left,.bstrap30 .form-horizontal .control-label.btnc-left{text-align:left;}.bstrap30 .btnc-right,.bstrap30 .form-horizontal .control-label.btnc-right{text-align:right;}.bstrap30 .btnc-center,.bstrap30 .form-horizontal .control-label.btnc-center{text-align:center;}.bstrap30 .form-button{height:auto;}.bstrap30 .table-borderless td,.bstrap30 .table-borderless th{border:none !important;}.bstrap30 .table-inline{width:auto !important;}.bstrap30 .table-inline td,.bstrap30 .table-inline th{padding-left:30px !important;}.bstrap30 .bootstrap-tagsinput{width:100%;}.bstrap30 .tt-dropdown-menu{min-width:160px;margin-top:2px;padding:5px 0;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.bstrap30 .tt-hint{color:#ccc;}.bstrap30 .tt-suggestion{display:block;padding:3px 20px;}.bstrap30 .tag{font-size:85% !important;}.bstrap30 .tt-suggestion.tt-is-under-cursor{color:#fff;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);}.bstrap30 .tt-suggestion.tt-is-under-cursor a{color:#fff;}.bstrap30 .tt-suggestion p{margin:0;padding:0;}.bstrap30 .twitter-typeahead input{font-family:Arial !important;}.bstrap30 .modal-body{width:100%;}.bstrap30 fieldset.checkboxlist-fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em;}.bstrap30 .form-group .form-control-inline-block{display:inline-block;}.datetime-picker-dropdown{z-index:9051;}.custom-cover{position:absolute;top:0;left:0;right:0;bottom:0;cursor:not-allowed;}.files span.glyphicon{cursor:pointer;font-size:20px;}.loader-wrapper{position:fixed;width:100%;height:100%;background:#000;z-index:999999999999;top:0;text-align:center;opacity:.7;}.loader,.loader:before,.loader:after{background:#fff;-webkit-animation:load1 1s infinite ease-in-out;animation:load1 1s infinite ease-in-out;width:1em;height:4em;}.loader:before,.loader:after{position:absolute;top:0;content:'';}.loader:before{left:-1.5em;-webkit-animation-delay:-.32s;animation-delay:-.32s;}.loader{text-indent:-9999em;margin:88px auto;font-size:11px;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation-delay:-.16s;animation-delay:-.16s;}.loader:after{left:1.5em;}@-webkit-keyframes load1{0%,80%,100%{box-shadow:0 0 #fff;height:4em;}40%{box-shadow:0 -2em #fff;height:5em;}}@keyframes load1{0%,80%,100%{box-shadow:0 0 #fff;height:4em;}40%{box-shadow:0 -2em #fff;height:5em;}}.af-handler{padding:10px;margin:-10px;}.bstrap30 div.af-slider{margin-bottom:30px;margin-top:8px;}@media only screen and (max-width:768px){.field-container .af-sortable{font-size:16px;}}.field-container[disabled="disabled"] .af-slider{pointer-events:none;}.field-container[disabled] .af-slider .slider-handle{background-image:linear-gradient(to bottom,grey,grey);}.form-root .form-horizontal .field-container .radio.radio-as-buttons{display:inline-flex;margin-left:0;padding-left:0;}.form-root .form-horizontal .field-container .radio.radio-as-buttons input[type="radio"].normalCheckBox{opacity:0;position:absolute;}.form-root .form-horizontal .field-container .radio.radio-as-buttons label input[type="radio"]:checked+span.btn{background-color:#e6e6e6;color:#333;}.form-root .form-horizontal .field-container .radio.radio-as-buttons label>.radio-boxes-buttons{display:table-cell;text-align:center;vertical-align:middle;white-space:normal;}.form-root .form-horizontal .field-container .radio.radio-as-buttons label.radio-boxes-labels{padding-left:0;}.form-root .form-horizontal .field-container .radio.radio-as-buttons .radio-btn-text{display:inline-flex;width:50px;justify-content:center;align-items:center;}.form-root .form-horizontal .field-container .radio.radio-as-buttons{padding-left:0;}.bstrap30 .label-align-top .agreement-links{margin-left:20px;}@media(min-width:768px){.bstrap30 .form-horizontal .control-label{text-align:left;margin-bottom:0;padding-top:7px;}}
