﻿@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;
}

/* 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: 980px;
}

    .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%;
    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;
}

    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 */
.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*/
@charset "utf-8";
/* CSS Document */

/*-------------------------------------*/
/* ADMIN CONTROL PANEL - TEMPORARY */
/*-------------------------------------*/
	.ControlPanel {}
	form #dnnCPWrap {
		height:36px;
		padding:0;
		-webkit-box-shadow: 	0 1px 3px 0px rgba(0, 0, 0, 0.55);
		box-shadow: 			0 1px 3px 0px rgba(0, 0, 0, 0.55);
	}
	#dnnCPWrap #RibbonBar_ControlPanel{width:960px;}
	
	/* Navigation */
	#dnnCPWrap #RibbonBar_adminMenus{}
	#dnnCPWrap ul.dnnadminmega { padding-top:0; }
	#dnnCPWrap .dnnCPHMode {}
	#RibbonBar_adminMenus > ul,
	#dnn_cp_RibbonBar_adminMenus > ul{
		height:35px;
		border-right:1px solid #eee;
		border-left:1px solid #aaa;
	}
	#RibbonBar_adminMenus > ul > li,
	#dnn_cp_RibbonBar_adminMenus > ul > li
	{margin-right:0}
	#RibbonBar_adminMenus > ul > li > a,
	#dnn_cp_RibbonBar_adminMenus > ul > li > a {
		display:block;
		padding:8px 16px;
		text-decoration:none;
		color:#444;
		text-shadow:0px 1px 0px rgba(255,255,255,0.7);
		border-right:1px solid #aaa;
		border-left:1px solid #eee;
	}
	#RibbonBar_adminMenus > ul > li > a:hover,
	#dnn_cp_RibbonBar_adminMenus > ul > li > a:hover {
		color:#333;
		background: #f2f2f2; /* Old browsers */
		background: -moz-linear-gradient(top,  #f2f2f2 0%, #c4c4c4 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f2f2f2 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
	}
	#RibbonBar_adminMenus .dnnadminmega .megaborder,
	#dnn_cp_RibbonBar_adminMenus  .dnnadminmega .megaborder {
		top:25px;
	}
	
	
	/* Mode */
	#dnnCPWrap .dnnCPHNav {
		margin-top:5px;
	}
	#dnnCPWrap .dnnCPHNav select {
		padding:2px;
		margin-bottom:0;
	}
	#dnnCPWrap .dnnCPHNav span {
		display:inline-block;
		margin-right:8px;
	}


/*-------------------------------------*/
/* MODULE ACTIONS - TEMPORARY */
/*-------------------------------------*/

	.DnnModule {
		position:relative;
		/*z-index:902;*/
	}
	.dnnActionMenu {
		position:absolute;
		left:10px; top:10px;
		margin:0; padding:0;
		z-index:3;
		color:#000;
	}
	/* Button */
	.dnnActionMenuTag {
		display:block;
		height:16px;
		min-width:65px;
		padding:5px 10px;
		background:#efefef;
		border:1px #999 solid;
		border-radius:3px;
		-moz-border-radius:3px;
		line-height:16px;
		font-weight:bold;
		font-size:11px;
		cursor:default;
	}
	.dnnActionMenuTag img {
		float:left;
		display:block;
		padding-right:3px;
	}
	/* Action Menu Body */
	ul.dnnActionMenuBody {
		display:none;
		position:absolute;
		left:0;
		top:10;
		min-width:320px;
		padding:18px;
		background:#fff;
		border:1px solid #ddd;
		border-radius:3px;
		-moz-border-radius:3px;
		text-align:left;
		-moz-box-shadow:		0 0 5px 0 rgba(0,0,0,0.35);
		-webkit-box-shadow:		0 0 5px 0 rgba(0,0,0,0.35);
		box-shadow:				0 0 5px 0 rgba(0,0,0,0.35);
		z-index: 10;
	}
	ul.dnnActionMenuBody li {
		list-style:none;
	}
	ul.dnnActionMenuBody li span {
		clear:both;
		display:block;
		margin-bottom:10px;
		border-bottom:1px solid #ddd;
		font-weight:bold;
	}
	/* Sub ul */
	ul.dnnActionMenuBody li ul {
		/*display:inline-block;*/
		margin:0 0 12px 0;
	}
	ul.dnnActionMenuBody li ul li {
		float:left;
		width:150px;
	}
	ul.dnnActionMenuBody li ul li a {
		text-decoration:none;
		font-size:12px;
	}
	ul.dnnActionMenuBody li ul li a img {
		display:block;
		float:left;
		min-height:16px;
		padding-right:3px;
		line-height:16px;
	}
	/* List of Form Actions */
	.dnnActions {
		display:inline-block;
	}
	.dnnActions li {
		margin-right:5px;
		list-style:none;
		float:left;
	}


/*-------------------------------------*/
/* EDIT STATE Z-INDEX MANAGEMENT */
/*-------------------------------------*/

/* Set Z-index of module action menus on edit state */
.dnnEditState .actionMenu{ z-index:3; } 
.dnnEditState .actionMenu:hover{ z-index:4; }

/* Set Z-index of Control Panel */
body > form #ControlBar_ControlPanel { z-index:1001 !important; /* set higher than module action menus */ }

/* Set Z-index of Telerik Dropdowns */
body > form > .rcbSlide { z-index:6000!important;} 

/* Set Z-index of Telerik Tree context menu */
body > form > .RadMenu_Context { z-index: 1000 !important;}
.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;
    }

        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 v2.3.1
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover,
a:active {
  outline: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  /* Responsive images (ensure images don't scale beyond their parents) */

  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */

  width: auto\9;
  /* IE7-8 need help adjusting responsive images */

  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
  max-width: none;
}
button {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
} /* custom setting */
button {
  *overflow: visible;
  line-height: normal;
}  /* custom setting */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}  /* custom setting */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}
/* custom setting */
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  background-color: #ffffff;
}
a {
  color: #0088cc;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #005580;
  text-decoration: underline;
}
.img-rounded {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.img-circle {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
.row {
  margin-left: -20px;
  *zoom: 1;
}
.row:before,
.row:after {
  display: table;
  content: "";
  line-height: 0;
}
.row:after {
  clear: both;
}
[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}
/* custom setting -- remove span settings */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}
.row-fluid:after {
  clear: both;
}
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 2.127659574468085%;
  *margin-left: 2.074468085106383%;
}
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.127659574468085%;
}
.row-fluid .span12 {
  width: 100%;
  *width: 99.94680851063829%;
}
.row-fluid .span11 {
  width: 91.48936170212765%;
  *width: 91.43617021276594%;
}
.row-fluid .span10 {
  width: 82.97872340425532%;
  *width: 82.92553191489361%;
}
.row-fluid .span9 {
  width: 74.46808510638297%;
  *width: 74.41489361702126%;
}
.row-fluid .span8 {
  width: 65.95744680851064%;
  *width: 65.90425531914893%;
}
.row-fluid .span7 {
  width: 57.44680851063829%;
  *width: 57.39361702127659%;
}
.row-fluid .span6 {
  width: 48.93617021276595%;
  *width: 48.88297872340425%;
}
.row-fluid .span5 {
  width: 40.42553191489362%;
  *width: 40.37234042553192%;
}
.row-fluid .span4 {
  width: 31.914893617021278%;
  *width: 31.861702127659576%;
}
.row-fluid .span3 {
  width: 23.404255319148934%;
  *width: 23.351063829787233%;
}
.row-fluid .span2 {
  width: 14.893617021276595%;
  *width: 14.840425531914894%;
}
.row-fluid .span1 {
  width: 6.382978723404255%;
  *width: 6.329787234042553%;
}
.row-fluid .offset12 {
  margin-left: 104.25531914893617%;
  *margin-left: 104.14893617021275%;
}
.row-fluid .offset12:first-child {
  margin-left: 102.12765957446808%;
  *margin-left: 102.02127659574467%;
}
.row-fluid .offset11 {
  margin-left: 95.74468085106382%;
  *margin-left: 95.6382978723404%;
}
.row-fluid .offset11:first-child {
  margin-left: 93.61702127659574%;
  *margin-left: 93.51063829787232%;
}
.row-fluid .offset10 {
  margin-left: 87.23404255319149%;
  *margin-left: 87.12765957446807%;
}
.row-fluid .offset10:first-child {
  margin-left: 85.1063829787234%;
  *margin-left: 84.99999999999999%;
}
.row-fluid .offset9 {
  margin-left: 78.72340425531914%;
  *margin-left: 78.61702127659572%;
}
.row-fluid .offset9:first-child {
  margin-left: 76.59574468085106%;
  *margin-left: 76.48936170212764%;
}
.row-fluid .offset8 {
  margin-left: 70.2127659574468%;
  *margin-left: 70.10638297872339%;
}
.row-fluid .offset8:first-child {
  margin-left: 68.08510638297872%;
  *margin-left: 67.9787234042553%;
}
.row-fluid .offset7 {
  margin-left: 61.70212765957446%;
  *margin-left: 61.59574468085106%;
}
.row-fluid .offset7:first-child {
  margin-left: 59.574468085106375%;
  *margin-left: 59.46808510638297%;
}
.row-fluid .offset6 {
  margin-left: 53.191489361702125%;
  *margin-left: 53.085106382978715%;
}
.row-fluid .offset6:first-child {
  margin-left: 51.063829787234035%;
  *margin-left: 50.95744680851063%;
}
.row-fluid .offset5 {
  margin-left: 44.68085106382979%;
  *margin-left: 44.57446808510638%;
}
.row-fluid .offset5:first-child {
  margin-left: 42.5531914893617%;
  *margin-left: 42.4468085106383%;
}
.row-fluid .offset4 {
  margin-left: 36.170212765957444%;
  *margin-left: 36.06382978723405%;
}
.row-fluid .offset4:first-child {
  margin-left: 34.04255319148936%;
  *margin-left: 33.93617021276596%;
}
.row-fluid .offset3 {
  margin-left: 27.659574468085104%;
  *margin-left: 27.5531914893617%;
}
.row-fluid .offset3:first-child {
  margin-left: 25.53191489361702%;
  *margin-left: 25.425531914893618%;
}
.row-fluid .offset2 {
  margin-left: 19.148936170212764%;
  *margin-left: 19.04255319148936%;
}
.row-fluid .offset2:first-child {
  margin-left: 17.02127659574468%;
  *margin-left: 16.914893617021278%;
}
.row-fluid .offset1 {
  margin-left: 10.638297872340425%;
  *margin-left: 10.53191489361702%;
}
.row-fluid .offset1:first-child {
  margin-left: 8.51063829787234%;
  *margin-left: 8.404255319148938%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right;
}
.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}
.container:before,
.container:after {
  display: table;
  content: "";
  line-height: 0;
}
.container:after {
  clear: both;
}
.container-fluid {
  padding-right: 20px;
  padding-left: 20px;
  *zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}
.container-fluid:after {
  clear: both;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
cite {
  font-style: normal;
}
.muted {
  color: #999999;
}
a.muted:hover,
a.muted:focus {
  color: #808080;
}
.text-warning {
  color: #c09853;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a47e3c;
}
.text-error {
  color: #b94a48;
}
a.text-error:hover,
a.text-error:focus {
  color: #953b39;
}
.text-info {
  color: #3a87ad;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d6987;
}
.text-success {
  color: #468847;
}
a.text-success:hover,
a.text-success:focus {
  color: #356635;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 20px;
  color: inherit;
  text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
h2,
h3 {
  line-height: 40px;
}
h1 {
  font-size: 38.5px;
}
h2 {
  font-size: 31.5px;
}
h3 {
  font-size: 24.5px;
}
h4 {
  font-size: 17.5px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 11.9px;
}
h1 small {
  font-size: 24.5px;
}
h2 small {
  font-size: 17.5px;
}
h3 small {
  font-size: 14px;
}
h4 small {
  font-size: 14px;
}
.page-header {
  padding-bottom: 9px;
  margin: 20px 0 30px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  padding: 0;
  margin: 0 0 10px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
li {
  line-height: 20px;
}
ul li li {
    list-style-type:circle;
} /* custom setting */
ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}
ul.unstyled li,
ol.unstyled li {
  margin-left: 0;
  list-style: none;
} /* custom setting */
ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none;
}
ul.inline > li,
ol.inline > li {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 20px;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 10px;
}
.dl-horizontal {
  *zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: "";
  line-height: 0;
}
.dl-horizontal:after {
  clear: both;
}
.dl-horizontal dt {
  float: left;
  width: 160px;
  clear: left;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dl-horizontal dd {
  margin-left: 180px;
}
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #ffffff;
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
	font-family: Arial;
	font-size: 16px; /* custom setting */
}
blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
blockquote small {
  display: block;
  line-height: 20px;
  color: #999999;
	font-size: 80%; /* custom setting */
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}
blockquote.pull-right small:before {
  content: '';
}
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}
code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
pre.prettyprint {
  margin-bottom: 20px;
}
pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999999;
}
.label {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}
.label:empty,
.badge:empty {
  display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.label-important,
.badge-important {
  background-color: #b94a48;
}
.label-important[href],
.badge-important[href] {
  background-color: #953b39;
}
.label-warning,
.badge-warning {
  background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}
.label-success,
.badge-success {
  background-color: #468847;
}
.label-success[href],
.badge-success[href] {
  background-color: #356635;
}
.label-info,
.badge-info {
  background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
  background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
  background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
  background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
  top: 0;
}
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
}
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}
.table td.span1,
.table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
.table td.span2,
.table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
.table td.span3,
.table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
.table td.span4,
.table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
.table td.span5,
.table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
.table td.span6,
.table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
.table td.span7,
.table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
.table td.span8,
.table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
.table td.span9,
.table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
.table td.span10,
.table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
.table td.span11,
.table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
.table td.span12,
.table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
.table tbody tr.success > td {
  background-color: #dff0d8;
}
.table tbody tr.error > td {
  background-color: #f2dede;
}
.table tbody tr.warning > td {
  background-color: #fcf8e3;
}
.table tbody tr.info > td {
  background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}
.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}
.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}
.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}
.btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
	font-family:Arial; /* custom setting */
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  border: 1px solid #cccccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *margin-left: .3em;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.btn:active,
.btn.active {
  background-color: #cccccc \9;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}
.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}
.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #003399 \9;
}
.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f89406;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  color: #ffffff;
  background-color: #f89406;
  *background-color: #df8505;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}
.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #bd362f;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  color: #ffffff;
  background-color: #bd362f;
  *background-color: #a9302a;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}
.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #51a351;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
}
.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}
.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  background-repeat: repeat-x;
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2f96b4;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #ffffff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}
.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}
.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #222222;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #ffffff;
  background-color: #222222;
  *background-color: #151515;
}
.btn-inverse:active,
.btn-inverse.active {
  background-color: #080808 \9;
}
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
    color: #FFFFFF !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}/* custom setting */
button.btn,
input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #0088cc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px;
}
/* White icons with optional class, or on hover/focus/active states of certain elements */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/img/glyphicons-halflings-white.png");
}
.the-icons, .the-icons li {
    list-style: none outside none;
    margin-left: 0;
}/* custom setting */ 
.icon-glass {
  background-position: 0      0;
}
.icon-music {
  background-position: -24px 0;
}
.icon-search {
  background-position: -48px 0;
}
.icon-envelope {
  background-position: -72px 0;
}
.icon-heart {
  background-position: -96px 0;
}
.icon-star {
  background-position: -120px 0;
}
.icon-star-empty {
  background-position: -144px 0;
}
.icon-user {
  background-position: -168px 0;
}
.icon-film {
  background-position: -192px 0;
}
.icon-th-large {
  background-position: -216px 0;
}
.icon-th {
  background-position: -240px 0;
}
.icon-th-list {
  background-position: -264px 0;
}
.icon-ok {
  background-position: -288px 0;
}
.icon-remove {
  background-position: -312px 0;
}
.icon-zoom-in {
  background-position: -336px 0;
}
.icon-zoom-out {
  background-position: -360px 0;
}
.icon-off {
  background-position: -384px 0;
}
.icon-signal {
  background-position: -408px 0;
}
.icon-cog {
  background-position: -432px 0;
}
.icon-trash {
  background-position: -456px 0;
}
.icon-home {
  background-position: 0 -24px;
}
.icon-file {
  background-position: -24px -24px;
}
.icon-time {
  background-position: -48px -24px;
}
.icon-road {
  background-position: -72px -24px;
}
.icon-download-alt {
  background-position: -96px -24px;
}
.icon-download {
  background-position: -120px -24px;
}
.icon-upload {
  background-position: -144px -24px;
}
.icon-inbox {
  background-position: -168px -24px;
}
.icon-play-circle {
  background-position: -192px -24px;
}
.icon-repeat {
  background-position: -216px -24px;
}
.icon-refresh {
  background-position: -240px -24px;
}
.icon-list-alt {
  background-position: -264px -24px;
}
.icon-lock {
  background-position: -287px -24px;
}
.icon-flag {
  background-position: -312px -24px;
}
.icon-headphones {
  background-position: -336px -24px;
}
.icon-volume-off {
  background-position: -360px -24px;
}
.icon-volume-down {
  background-position: -384px -24px;
}
.icon-volume-up {
  background-position: -408px -24px;
}
.icon-qrcode {
  background-position: -432px -24px;
}
.icon-barcode {
  background-position: -456px -24px;
}
.icon-tag {
  background-position: 0 -48px;
}
.icon-tags {
  background-position: -25px -48px;
}
.icon-book {
  background-position: -48px -48px;
}
.icon-bookmark {
  background-position: -72px -48px;
}
.icon-print {
  background-position: -96px -48px;
}
.icon-camera {
  background-position: -120px -48px;
}
.icon-font {
  background-position: -144px -48px;
}
.icon-bold {
  background-position: -167px -48px;
}
.icon-italic {
  background-position: -192px -48px;
}
.icon-text-height {
  background-position: -216px -48px;
}
.icon-text-width {
  background-position: -240px -48px;
}
.icon-align-left {
  background-position: -264px -48px;
}
.icon-align-center {
  background-position: -288px -48px;
}
.icon-align-right {
  background-position: -312px -48px;
}
.icon-align-justify {
  background-position: -336px -48px;
}
.icon-list {
  background-position: -360px -48px;
}
.icon-indent-left {
  background-position: -384px -48px;
}
.icon-indent-right {
  background-position: -408px -48px;
}
.icon-facetime-video {
  background-position: -432px -48px;
}
.icon-picture {
  background-position: -456px -48px;
}
.icon-pencil {
  background-position: 0 -72px;
}
.icon-map-marker {
  background-position: -24px -72px;
}
.icon-adjust {
  background-position: -48px -72px;
}
.icon-tint {
  background-position: -72px -72px;
}
.icon-edit {
  background-position: -96px -72px;
}
.icon-share {
  background-position: -120px -72px;
}
.icon-check {
  background-position: -144px -72px;
}
.icon-move {
  background-position: -168px -72px;
}
.icon-step-backward {
  background-position: -192px -72px;
}
.icon-fast-backward {
  background-position: -216px -72px;
}
.icon-backward {
  background-position: -240px -72px;
}
.icon-play {
  background-position: -264px -72px;
}
.icon-pause {
  background-position: -288px -72px;
}
.icon-stop {
  background-position: -312px -72px;
}
.icon-forward {
  background-position: -336px -72px;
}
.icon-fast-forward {
  background-position: -360px -72px;
}
.icon-step-forward {
  background-position: -384px -72px;
}
.icon-eject {
  background-position: -408px -72px;
}
.icon-chevron-left {
  background-position: -432px -72px;
}
.icon-chevron-right {
  background-position: -456px -72px;
}
.icon-plus-sign {
  background-position: 0 -96px;
}
.icon-minus-sign {
  background-position: -24px -96px;
}
.icon-remove-sign {
  background-position: -48px -96px;
}
.icon-ok-sign {
  background-position: -72px -96px;
}
.icon-question-sign {
  background-position: -96px -96px;
}
.icon-info-sign {
  background-position: -120px -96px;
}
.icon-screenshot {
  background-position: -144px -96px;
}
.icon-remove-circle {
  background-position: -168px -96px;
}
.icon-ok-circle {
  background-position: -192px -96px;
}
.icon-ban-circle {
  background-position: -216px -96px;
}
.icon-arrow-left {
  background-position: -240px -96px;
}
.icon-arrow-right {
  background-position: -264px -96px;
}
.icon-arrow-up {
  background-position: -289px -96px;
}
.icon-arrow-down {
  background-position: -312px -96px;
}
.icon-share-alt {
  background-position: -336px -96px;
}
.icon-resize-full {
  background-position: -360px -96px;
}
.icon-resize-small {
  background-position: -384px -96px;
}
.icon-plus {
  background-position: -408px -96px;
}
.icon-minus {
  background-position: -433px -96px;
}
.icon-asterisk {
  background-position: -456px -96px;
}
.icon-exclamation-sign {
  background-position: 0 -120px;
}
.icon-gift {
  background-position: -24px -120px;
}
.icon-leaf {
  background-position: -48px -120px;
}
.icon-fire {
  background-position: -72px -120px;
}
.icon-eye-open {
  background-position: -96px -120px;
}
.icon-eye-close {
  background-position: -120px -120px;
}
.icon-warning-sign {
  background-position: -144px -120px;
}
.icon-plane {
  background-position: -168px -120px;
}
.icon-calendar {
  background-position: -192px -120px;
}
.icon-random {
  background-position: -216px -120px;
  width: 16px;
}
.icon-comment {
  background-position: -240px -120px;
}
.icon-magnet {
  background-position: -264px -120px;
}
.icon-chevron-up {
  background-position: -288px -120px;
}
.icon-chevron-down {
  background-position: -313px -119px;
}
.icon-retweet {
  background-position: -336px -120px;
}
.icon-shopping-cart {
  background-position: -360px -120px;
}
.icon-folder-close {
  background-position: -384px -120px;
  width: 16px;
}
.icon-folder-open {
  background-position: -408px -120px;
  width: 16px;
}
.icon-resize-vertical {
  background-position: -432px -119px;
}
.icon-resize-horizontal {
  background-position: -456px -118px;
}
.icon-hdd {
  background-position: 0 -144px;
}
.icon-bullhorn {
  background-position: -24px -144px;
}
.icon-bell {
  background-position: -48px -144px;
}
.icon-certificate {
  background-position: -72px -144px;
}
.icon-thumbs-up {
  background-position: -96px -144px;
}
.icon-thumbs-down {
  background-position: -120px -144px;
}
.icon-hand-right {
  background-position: -144px -144px;
}
.icon-hand-left {
  background-position: -168px -144px;
}
.icon-hand-up {
  background-position: -192px -144px;
}
.icon-hand-down {
  background-position: -216px -144px;
}
.icon-circle-arrow-right {
  background-position: -240px -144px;
}
.icon-circle-arrow-left {
  background-position: -264px -144px;
}
.icon-circle-arrow-up {
  background-position: -288px -144px;
}
.icon-circle-arrow-down {
  background-position: -312px -144px;
}
.icon-globe {
  background-position: -336px -144px;
}
.icon-wrench {
  background-position: -360px -144px;
}
.icon-tasks {
  background-position: -384px -144px;
}
.icon-filter {
  background-position: -408px -144px;
}
.icon-briefcase {
  background-position: -432px -144px;
}
.icon-fullscreen {
  background-position: -456px -144px;
}
/*From Bootstrap3.0*/
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/fonts/glyphicons-halflings-regular.eot");
  src: url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'), url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/fonts/glyphicons-halflings-regular.ttf") format('truetype'), url("/Portals/_default/Skins/Clear-LightCoral/bootstrap/fonts/glyphicons-halflings-regular.woff") format('woff'), url("/Portals/_default/Skins/Clear-LightCoral/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: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.glyphicon:empty {
  width: 1em;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.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-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-print:before {
  content: "\e045";
}
.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-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.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-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-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.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-briefcase:before {
  content: "\1f4bc";
}
.glyphicon-calendar:before {
  content: "\1f4c5";
}
.glyphicon-pushpin:before {
  content: "\1f4cc";
}
.glyphicon-paperclip:before {
  content: "\1f4ce";
}
.glyphicon-camera:before {
  content: "\1f4f7";
}
.glyphicon-lock:before {
  content: "\1f512";
}
.glyphicon-bell:before {
  content: "\1f514";
}
.glyphicon-bookmark:before {
  content: "\1f516";
}
.glyphicon-fire:before {
  content: "\1f525";
}
.glyphicon-wrench:before {
  content: "\1f527";
}

.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em;
}
.btn-group:first-child {
  *margin-left: 0;
}
.btn-group + .btn-group {
  margin-left: 5px;
}
.btn-toolbar {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group {
  margin-left: 5px;
}
.btn-group > .btn {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group > .btn + .btn {
  margin-left: -1px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 14px;
}
.btn-group > .btn-mini {
  font-size: 10.5px;
}
.btn-group > .btn-small {
  font-size: 11.9px;
}
.btn-group > .btn-large {
  font-size: 17.5px;
}
.btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group > .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  *padding-top: 5px;
  *padding-bottom: 5px;
}
.btn-group > .btn-mini + .dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 2px;
  *padding-bottom: 2px;
}
.btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}
.btn-group > .btn-large + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
  *padding-top: 7px;
  *padding-bottom: 7px;
}
.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}
.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0044cc;
}
.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}
.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}
.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}
.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}
.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222222;
}
.btn .caret {
  margin-top: 8px;
  margin-left: 0;
}
.btn-large .caret {
  margin-top: 6px;
}
.btn-large .caret {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}
.btn-mini .caret,
.btn-small .caret {
  margin-top: 8px;
}
.dropup .btn-large .caret {
  border-bottom-width: 5px;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.btn-group-vertical {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
}
.btn-group-vertical > .btn {
  display: block;
  float: none;
  max-width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group-vertical > .btn + .btn {
  margin-left: 0;
  margin-top: -1px;
}
.btn-group-vertical > .btn:first-child {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.btn-group-vertical > .btn:last-child {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.btn-group-vertical > .btn-large:first-child {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.btn-group-vertical > .btn-large:last-child {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.nav {
  margin-left: 0;
  margin-bottom: 15px; /* custom setting*/
  list-style: none;
}
.nav li {
    list-style: none outside none;
} /* custom setting*/
.nav > li > a {
  display: block;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li > a > img {
  max-width: none;
}
.nav > .pull-right {
  float: right;
}
.nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.nav li + .nav-header {
  margin-top: 9px;
}
.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
.nav-list > li > a,
.nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.nav-list > li > a {
  padding: 3px 15px;
}
.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #0088cc;
}
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  margin-right: 2px;
}
.nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}
.nav-tabs,
.nav-pills {
  *zoom: 1;
}
.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
  display: table;
  content: "";
  line-height: 0;
}
.nav-tabs:after,
.nav-pills:after {
  clear: both;
}
.nav-tabs > li,
.nav-pills > li {
  float: left;
}
.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
	font-weight:bold; /* custom setting */
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
  color: #ffffff;
  background-color: #0088cc;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li > a {
  margin-right: 0;
}
.nav-tabs.nav-stacked {
  border-bottom: 0;
}
.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.nav-tabs.nav-stacked > li:first-child > a {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
  border-color: #ddd;
  z-index: 2;
}
.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}
.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}
.nav-tabs .dropdown-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.nav-pills .dropdown-menu {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.nav .dropdown-toggle .caret {
  border-top-color: #0088cc;
  border-bottom-color: #0088cc;
  margin-top: 6px;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
  border-top-color: #005580;
  border-bottom-color: #005580;
}
/* move down carets for tabs */
.nav-tabs .dropdown-toggle .caret {
  margin-top: 8px;
}
.nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
  cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}
.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
  border-color: #999999;
}
.tabbable {
  *zoom: 1;
}
.tabbable:before,
.tabbable:after {
  display: table;
  content: "";
  line-height: 0;
}
.tabbable:after {
  clear: both;
}
.tab-content {
  overflow: auto;
}
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}
.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 #ddd;
}
.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-bottom-color: transparent;
  border-top-color: #ddd;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}
.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: 19px;
  border-right: 1px solid #ddd;
}
.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;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}
.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: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff;
}
.nav > .disabled > a {
  color: #999999;
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}
.navbar {
  overflow: visible;
  margin-bottom: 20px;
  *position: relative;
  *z-index: 2;
}
.navbar-inner {
  min-height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  *zoom: 1;
}
.navbar-inner:before,
.navbar-inner:after {
  display: table;
  content: "";
  line-height: 0;
}
.navbar-inner:after {
  clear: both;
}
.navbar .container {
  width: auto;
}
.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}
.navbar .brand {
  float: left;
  display: block;
  padding: 10px 20px 10px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #777777;
  text-shadow: 0 1px 0 #ffffff;
}
.navbar .brand:hover,
.navbar .brand:focus {
  text-decoration: none;
}
.navbar-text {
  margin-bottom: 0;
  line-height: 40px;
  color: #777777;
}
.navbar-link {
  color: #777777;
}
.navbar-link:hover,
.navbar-link:focus {
  color: #333333;
}
.navbar .divider-vertical {
  height: 40px;
  margin: 0 9px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #ffffff;
}
.navbar .btn,
.navbar .btn-group {
  margin-top: 5px;
}
.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
  margin-top: 0;
}
.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}
.navbar-form:before,
.navbar-form:after {
  display: table;
  content: "";
  line-height: 0;
}
.navbar-form:after {
  clear: both;
}
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
  margin-top: 5px;
}
.navbar-form input,
.navbar-form select,
.navbar-form .btn {
  display: inline-block;
  margin-bottom: 0;
}
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
  margin-top: 3px;
}
.navbar-form .input-append,
.navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}
.navbar-form .input-append input,
.navbar-form .input-prepend input {
  margin-top: 0;
}
.navbar-search {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 0;
}
.navbar-search .search-query {
  margin-bottom: 0;
  padding: 4px 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.navbar-static-top {
  position: static;
  margin-bottom: 0;
}
.navbar-static-top .navbar-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}
.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}
.navbar-fixed-top {
  top: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
  box-shadow: 0 1px 10px rgba(0,0,0,.1);
}
.navbar-fixed-bottom {
  bottom: 0;
}
.navbar-fixed-bottom .navbar-inner {
  -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
  box-shadow: 0 -1px 10px rgba(0,0,0,.1);
}
.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
.navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}
.navbar .nav > li {
  float: left;
}
.navbar .nav > li > a {
  float: none;
  padding: 10px 15px 10px;
  color: #777777;
  text-decoration: none;
  text-shadow: 0 1px 0 #ffffff;
}
.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  background-color: transparent;
  color: #333333;
  text-decoration: none;
}
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  color: #555555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #ededed;
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e5e5e5;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}
.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
  background-color: #cccccc \9;
}
.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}
.navbar .nav > li > .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 9px;
}
.navbar .nav > li > .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 10px;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  border-top: 6px solid #ffffff;
  border-bottom: 0;
  bottom: -6px;
  top: auto;
}
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
}
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #e5e5e5;
  color: #555555;
}
.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
}
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}
.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}
.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -1px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -moz-linear-gradient(top, #222222, #111111);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
  border-color: #252525;
}
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
  color: #999999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-inverse .brand:hover,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:focus {
  color: #ffffff;
}
.navbar-inverse .brand {
  color: #999999;
}
.navbar-inverse .navbar-text {
  color: #999999;
}
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  background-color: transparent;
  color: #ffffff;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
  color: #ffffff;
  background-color: #111111;
}
.navbar-inverse .navbar-link {
  color: #999999;
}
.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
  color: #ffffff;
}
.navbar-inverse .divider-vertical {
  border-left-color: #111111;
  border-right-color: #222222;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #111111;
  color: #ffffff;
}
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999999;
  border-bottom-color: #999999;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.navbar-inverse .navbar-search .search-query {
  color: #ffffff;
  background-color: #515151;
  border-color: #111111;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
  color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  color: #cccccc;
}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #ffffff;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  outline: 0;
}
.navbar-inverse .btn-navbar {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  border-color: #040404 #040404 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
  background-color: #000000 \9;
}
/* custom setting -- remove breadcrumb settings */
.pagination {
  margin: 20px 0;
}
.pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination ul > li {
  display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999999;
  cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999999;
  background-color: transparent;
  cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 10.5px;
}
.pager {
  margin: 20px 0;
  list-style: none;
  text-align: center;
  *zoom: 1;
}
.pager:before,
.pager:after {
  display: table;
  content: "";
  line-height: 0;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  background-color: #fff;
  cursor: default;
}
.thumbnails {
  margin-left: -20px;
  list-style: none;
  *zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
  display: table;
  content: "";
  line-height: 0;
}
.thumbnails:after {
  clear: both;
}
.row-fluid .thumbnails {
  margin-left: 0;
}
.thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 20px;
}
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #0088cc;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #555555;
}
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.alert,
.alert h4 {
  color: #c09853;
}
.alert h4 {
  margin: 0;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert-success h4 {
  color: #468847;
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
  color: #b94a48;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert-info h4 {
  color: #3a87ad;
}
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}
.alert-block p + p {
  margin-top: 5px;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.progress .bar {
  width: 0%;
  height: 100%;
  color: #ffffff;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress .bar + .bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
}
.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar,
.progress .bar-danger {
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-success .bar,
.progress .bar-success {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.progress-success.progress-striped .bar,
.progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-info .bar,
.progress .bar-info {
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.progress-info.progress-striped .bar,
.progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-warning .bar,
.progress .bar-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}
.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eeeeee;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}
.hero-unit li {
  line-height: 30px;
}
.media,
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  margin-left: 0;
  list-style: none;
}
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  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: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.popover-title:empty {
  display: none;
}
.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 {
  border-width: 10px;
  content: "";
}
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.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, 0.25);
}
.popover.left .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 10%;
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-header h3 {
  margin: 0;
  line-height: 30px;
}
.modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}
.modal-form {
  margin-bottom: 0;
}
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  *zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
  line-height: 0;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle {
  *margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}
.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;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 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, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  text-decoration: none;
  color: #ffffff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: default;
}
.open {
  *z-index: 1000;
}
.open > .dropdown-menu {
  display: block;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px;
}
.typeahead {
  z-index: 1051;
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.accordion {
  margin-bottom: 20px;
}
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.accordion-heading {
  border-bottom: 0;
}
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}
.accordion-toggle {
  cursor: pointer;
}
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}
.carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}
.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}
.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: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}
.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #333333;
  background: rgba(0, 0, 0, 0.75);
}
.carousel-caption h4,
.carousel-caption p {
  color: #ffffff;
  line-height: 20px;
}
.carousel-caption h4 {
  margin: 0 0 5px;
}
.carousel-caption p {
  margin-bottom: 0;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.affix {
  position: fixed;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.collapse.in {
  height: auto;
}
@-ms-viewport {
  width: device-width;
}
.hidden {
  display: none;
  visibility: hidden;
}
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}
.visible-desktop {
  display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: -20px;
    margin-right: -20px;
  }
  .container-fluid {
    padding: 0;
  }
  .dl-horizontal dt {
    float: none;
    clear: none;
    width: auto;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
  .container {
    width: auto;
  }
  .row-fluid {
    width: 100%;
  }
  .row,
  .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  [class*="span"],
  .uneditable-input[class*="span"],
  .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .span12,
  .row-fluid .span12 {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  .input-large,
  .input-xlarge,
  .input-xxlarge,
  input[class*="span"],
  select[class*="span"],
  textarea[class*="span"],
  .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .input-prepend input,
  .input-append input,
  .input-prepend input[class*="span"],
  .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
  .modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
  .modal.fade {
    top: -100px;
  }
  .modal.fade.in {
    top: 20px;
  }
}
@media (max-width: 480px) {
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc;
  }
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-left: 10px;
    padding-right: 10px;
  }
  .media .pull-left,
  .media .pull-right {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  .modal {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
  .carousel-caption {
    position: static;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .row {
    margin-left: -20px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 724px;
  }
/* custom setting -- remove span settings */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.7624309392265194%;
    *margin-left: 2.709239449864817%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392265194%;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  .row-fluid .span11 {
    width: 91.43646408839778%;
    *width: 91.38327259903608%;
  }
  .row-fluid .span10 {
    width: 82.87292817679558%;
    *width: 82.81973668743387%;
  }
  .row-fluid .span9 {
    width: 74.30939226519337%;
    *width: 74.25620077583166%;
  }
  .row-fluid .span8 {
    width: 65.74585635359117%;
    *width: 65.69266486422946%;
  }
  .row-fluid .span7 {
    width: 57.18232044198895%;
    *width: 57.12912895262725%;
  }
  .row-fluid .span6 {
    width: 48.61878453038674%;
    *width: 48.56559304102504%;
  }
  .row-fluid .span5 {
    width: 40.05524861878453%;
    *width: 40.00205712942283%;
  }
  .row-fluid .span4 {
    width: 31.491712707182323%;
    *width: 31.43852121782062%;
  }
  .row-fluid .span3 {
    width: 22.92817679558011%;
    *width: 22.87498530621841%;
  }
  .row-fluid .span2 {
    width: 14.3646408839779%;
    *width: 14.311449394616199%;
  }
  .row-fluid .span1 {
    width: 5.801104972375691%;
    *width: 5.747913483013988%;
  }
  .row-fluid .offset12 {
    margin-left: 105.52486187845304%;
    *margin-left: 105.41847889972962%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 102.76243093922652%;
    *margin-left: 102.6560479605031%;
  }
  .row-fluid .offset11 {
    margin-left: 96.96132596685082%;
    *margin-left: 96.8549429881274%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276243%;
    *margin-left: 94.09251204890089%;
  }
  .row-fluid .offset10 {
    margin-left: 88.39779005524862%;
    *margin-left: 88.2914070765252%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 85.6353591160221%;
    *margin-left: 85.52897613729868%;
  }
  .row-fluid .offset9 {
    margin-left: 79.8342541436464%;
    *margin-left: 79.72787116492299%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 77.07182320441989%;
    *margin-left: 76.96544022569647%;
  }
  .row-fluid .offset8 {
    margin-left: 71.2707182320442%;
    *margin-left: 71.16433525332079%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.50828729281768%;
    *margin-left: 68.40190431409427%;
  }
  .row-fluid .offset7 {
    margin-left: 62.70718232044199%;
    *margin-left: 62.600799341718584%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 59.94475138121547%;
    *margin-left: 59.838368402492065%;
  }
  .row-fluid .offset6 {
    margin-left: 54.14364640883978%;
    *margin-left: 54.037263430116376%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.38121546961326%;
    *margin-left: 51.27483249088986%;
  }
  .row-fluid .offset5 {
    margin-left: 45.58011049723757%;
    *margin-left: 45.47372751851417%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 42.81767955801105%;
    *margin-left: 42.71129657928765%;
  }
  .row-fluid .offset4 {
    margin-left: 37.01657458563536%;
    *margin-left: 36.91019160691196%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.25414364640884%;
    *margin-left: 34.14776066768544%;
  }
  .row-fluid .offset3 {
    margin-left: 28.45303867403315%;
    *margin-left: 28.346655695309746%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.69060773480663%;
    *margin-left: 25.584224756083227%;
  }
  .row-fluid .offset2 {
    margin-left: 19.88950276243094%;
    *margin-left: 19.783119783707537%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.12707182320442%;
    *margin-left: 17.02068884448102%;
  }
  .row-fluid .offset1 {
    margin-left: 11.32596685082873%;
    *margin-left: 11.219583872105325%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.56353591160221%;
    *margin-left: 8.457152932878806%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  input.span12,
  textarea.span12,
  .uneditable-input.span12 {
    width: 710px;
  }
  input.span11,
  textarea.span11,
  .uneditable-input.span11 {
    width: 648px;
  }
  input.span10,
  textarea.span10,
  .uneditable-input.span10 {
    width: 586px;
  }
  input.span9,
  textarea.span9,
  .uneditable-input.span9 {
    width: 524px;
  }
  input.span8,
  textarea.span8,
  .uneditable-input.span8 {
    width: 462px;
  }
  input.span7,
  textarea.span7,
  .uneditable-input.span7 {
    width: 400px;
  }
  input.span6,
  textarea.span6,
  .uneditable-input.span6 {
    width: 338px;
  }
  input.span5,
  textarea.span5,
  .uneditable-input.span5 {
    width: 276px;
  }
  input.span4,
  textarea.span4,
  .uneditable-input.span4 {
    width: 214px;
  }
  input.span3,
  textarea.span3,
  .uneditable-input.span3 {
    width: 152px;
  }
  input.span2,
  textarea.span2,
  .uneditable-input.span2 {
    width: 90px;
  }
  input.span1,
  textarea.span1,
  .uneditable-input.span1 {
    width: 28px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-left: -30px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 30px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1170px;
  }
/* custom setting -- remove span settings */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.564102564102564%;
    *margin-left: 2.5109110747408616%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.564102564102564%;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  .row-fluid .span11 {
    width: 91.45299145299145%;
    *width: 91.39979996362975%;
  }
  .row-fluid .span10 {
    width: 82.90598290598291%;
    *width: 82.8527914166212%;
  }
  .row-fluid .span9 {
    width: 74.35897435897436%;
    *width: 74.30578286961266%;
  }
  .row-fluid .span8 {
    width: 65.81196581196582%;
    *width: 65.75877432260411%;
  }
  .row-fluid .span7 {
    width: 57.26495726495726%;
    *width: 57.21176577559556%;
  }
  .row-fluid .span6 {
    width: 48.717948717948715%;
    *width: 48.664757228587014%;
  }
  .row-fluid .span5 {
    width: 40.17094017094017%;
    *width: 40.11774868157847%;
  }
  .row-fluid .span4 {
    width: 31.623931623931625%;
    *width: 31.570740134569924%;
  }
  .row-fluid .span3 {
    width: 23.076923076923077%;
    *width: 23.023731587561375%;
  }
  .row-fluid .span2 {
    width: 14.52991452991453%;
    *width: 14.476723040552828%;
  }
  .row-fluid .span1 {
    width: 5.982905982905983%;
    *width: 5.929714493544281%;
  }
  .row-fluid .offset12 {
    margin-left: 105.12820512820512%;
    *margin-left: 105.02182214948171%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 102.56410256410257%;
    *margin-left: 102.45771958537915%;
  }
  .row-fluid .offset11 {
    margin-left: 96.58119658119658%;
    *margin-left: 96.47481360247316%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.01709401709402%;
    *margin-left: 93.91071103837061%;
  }
  .row-fluid .offset10 {
    margin-left: 88.03418803418803%;
    *margin-left: 87.92780505546462%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 85.47008547008548%;
    *margin-left: 85.36370249136206%;
  }
  .row-fluid .offset9 {
    margin-left: 79.48717948717949%;
    *margin-left: 79.38079650845607%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 76.92307692307693%;
    *margin-left: 76.81669394435352%;
  }
  .row-fluid .offset8 {
    margin-left: 70.94017094017094%;
    *margin-left: 70.83378796144753%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.37606837606839%;
    *margin-left: 68.26968539734497%;
  }
  .row-fluid .offset7 {
    margin-left: 62.393162393162385%;
    *margin-left: 62.28677941443899%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 59.82905982905982%;
    *margin-left: 59.72267685033642%;
  }
  .row-fluid .offset6 {
    margin-left: 53.84615384615384%;
    *margin-left: 53.739770867430444%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.28205128205128%;
    *margin-left: 51.175668303327875%;
  }
  .row-fluid .offset5 {
    margin-left: 45.299145299145295%;
    *margin-left: 45.1927623204219%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 42.73504273504273%;
    *margin-left: 42.62865975631933%;
  }
  .row-fluid .offset4 {
    margin-left: 36.75213675213675%;
    *margin-left: 36.645753773413354%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.18803418803419%;
    *margin-left: 34.081651209310785%;
  }
  .row-fluid .offset3 {
    margin-left: 28.205128205128204%;
    *margin-left: 28.0987452264048%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.641025641025642%;
    *margin-left: 25.53464266230224%;
  }
  .row-fluid .offset2 {
    margin-left: 19.65811965811966%;
    *margin-left: 19.551736679396257%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.094017094017094%;
    *margin-left: 16.98763411529369%;
  }
  .row-fluid .offset1 {
    margin-left: 11.11111111111111%;
    *margin-left: 11.004728132387708%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.547008547008547%;
    *margin-left: 8.440625568285142%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 30px;
  }
  input.span12,
  textarea.span12,
  .uneditable-input.span12 {
    width: 1156px;
  }
  input.span11,
  textarea.span11,
  .uneditable-input.span11 {
    width: 1056px;
  }
  input.span10,
  textarea.span10,
  .uneditable-input.span10 {
    width: 956px;
  }
  input.span9,
  textarea.span9,
  .uneditable-input.span9 {
    width: 856px;
  }
  input.span8,
  textarea.span8,
  .uneditable-input.span8 {
    width: 756px;
  }
  input.span7,
  textarea.span7,
  .uneditable-input.span7 {
    width: 656px;
  }
  input.span6,
  textarea.span6,
  .uneditable-input.span6 {
    width: 556px;
  }
  input.span5,
  textarea.span5,
  .uneditable-input.span5 {
    width: 456px;
  }
  input.span4,
  textarea.span4,
  .uneditable-input.span4 {
    width: 356px;
  }
  input.span3,
  textarea.span3,
  .uneditable-input.span3 {
    width: 256px;
  }
  input.span2,
  textarea.span2,
  .uneditable-input.span2 {
    width: 156px;
  }
  input.span1,
  textarea.span1,
  .uneditable-input.span1 {
    width: 56px;
  }
  .thumbnails {
    margin-left: -30px;
  }
  .thumbnails > li {
    margin-left: 30px;
  }
  .row-fluid .thumbnails {
    margin-left: 0;
  }
}
@media (max-width: 979px) {
  body {
    padding-top: 0;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: #777777;
    text-shadow: none;
  }
  .nav-collapse .nav > li > a,
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777777;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover,
  .nav-collapse .nav > li > a:focus,
  .nav-collapse .dropdown-menu a:hover,
  .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  .navbar-inverse .nav-collapse .nav > li > a,
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999999;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover,
  .navbar-inverse .nav-collapse .nav > li > a:focus,
  .navbar-inverse .nav-collapse .dropdown-menu a:hover,
  .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0;
  }
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu:before,
  .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .navbar-form,
  .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
    -moz-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);
  }
  .navbar-inverse .nav-collapse .navbar-form,
  .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
  }
  .navbar .btn-navbar {
    display: block;
  }
  .navbar-static .navbar-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 980px) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}

/*
 * For Demo Styles
 *
 */

/*Glyphicons */
.bs-glyphicons {
  padding-left: 0;
  padding-bottom: 1px;
  margin-bottom: 20px;
  list-style: none;
  overflow: hidden;
}
.bs-glyphicons li {
  float: left;
  width: 25%;
  height: 115px;
  padding: 10px;
  margin: 0 -1px -1px 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  border: 1px solid #ddd;
}
.bs-glyphicons .glyphicon {
  display: block;
  margin: 5px auto 10px;
  font-size: 24px;
}
.bs-glyphicons li:hover {
  background-color: rgba(86,61,124,.1);
}

@media (min-width: 768px) {
  .bs-glyphicons li {
    width: 12.5%;
  }
}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2013 By BESTDNNSKINS.COM
 */
/*-------- Design style --------*/
.floatl{ float:left;}
.floatr{ float:right;}
.pc_display { display:block;}
.mobile_display { display:none;}
.mobile_nav{ display:none;}
.pre_defined_color {background:#ed7d67;}

.skin_wrapper {width:100%;margin:0 auto;position:inherit!important;z-index:1;padding:0; background:#fff;}
.skin_width { width:100%; max-width:1140px;min-width:767px;margin:0 auto;}

#skin_header{background:#fff;background:rgba(255,255,255,0.92);min-height:60px;}
.skin_header{}
.logo_style { float:left; padding:0 1.5%; line-height:80px;}
.logo_style img { max-height:80px; }
.menu_style{position:relative;padding:20px 20px 0 0;float:right;}
.skin_main { min-height:620px;}
.banner_style{ background:#ed7d67; border-bottom:1px solid #e9e9e9;}
.content_whitebg{ background:#fff;}
.content_graybg{ background:#f1f1f1; }
.skin_top_content {padding:25px 1.5%;}
.skin_main_padding{ padding:0 1.5%;}

.footer_top{background:#f1f1f1;}
.footerpane_style { padding:0 1.5%;}
.copyright_bar{background:#a0a0a0; min-height:55px;margin:0 auto;padding:0;}
.footer_left{float:left;line-height:55px; color:#fff!important; padding-left:10px;}
.footer_right{float:right; padding:5px 1.5%;}

/*page name*/
.page_name { background:#ddd;min-height:60px; }
.pagename_style h1{ float:left; padding-left:1.5%; color:#ed7d67; line-height:60px; font-size:22px; font-weight:normal; position:relative; z-index:913; margin:0; font-family:'Oswald',Arial, Tahoma, sans-serif; }
.pagename_style h1:hover {color:#555; transition: all 0.8s ease 0s; -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s; }
.breadcrumb_style {float:right; padding-right:1.5%; color:#000; line-height:60px;}

/*leftsidebar layout*/
.LM_main_content { margin-top:0;}
.LM_position { float:left; width:22%; padding:0 1% 20px 0; }
.LM_skin_content { float:left; min-height:350px; width:75%; padding:5px 1% 20px;}
.leftside_style { padding:0;}

/*top right icons*/
.icons_menu{ float:right; margin-right:0; background:#ed7d67; padding:25px 0; position:relative; z-index:910;}
.icon_search{ display:block; background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_search.png") no-repeat; width:30px; height:30px; float:left; position:relative; padding-right:5px; cursor:pointer; }
.icon_search_style{ display:none; width:170px;position:absolute; left:-83px; top:35px; padding:15px; background:#e9e9e9; background:rgba(233,233,233,.9); border:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
.icon_search_style:before {width:0; height:0; position: absolute; left:92px; top:-5px; border-bottom:6px solid #e9e9e9; border-bottom:6px solid rgba(233,233,233,.9); border-left:6px solid transparent; border-right:6px solid transparent; border-top:none; content:"";}

.icon_user{ position:relative;float:left; padding-right:5px; cursor:pointer; }
.icon_user_hover{ display:none; width:160px;position:absolute; left:-63px; top:35px; padding:0; background:#e9e9e9; background:rgba(233,233,233,.9); border:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; }
.icon_user_hover:before {width:0; height:0; position: absolute; left:72px; top:-5px; border-bottom:6px solid #e9e9e9; border-bottom:6px solid rgba(233,233,233,.9); border-left:6px solid transparent; border-right:6px solid transparent; border-top:none; content:"";}

.icon_login{ float:left; padding-right:5px; }
.icon_lang{ display:block; background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_lang.png") no-repeat; width:30px; height:30px;float:left; position:relative; cursor:pointer;}
.icon_lang_style{display:none; width:60px;position:absolute; left:-13px; top:35px; padding:0 0 15px; background:#e9e9e9; background:rgba(233,233,233,.9);  border:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; }
.icon_lang_style:before {width:0; height:0;position: absolute;left:22px; top:-5px; border-bottom:6px solid #e9e9e9; border-bottom:6px solid rgba(233,233,233,.9); border-left:6px solid transparent; border-right:6px solid transparent; border-top:none; content:"";}

/*Login Style*/
.login_style { float:left; position: relative;}
.login_style .login-button { display: block; cursor: pointer; }
.login_style .logout-button  { display: block; cursor: pointer; }
.login_style .login-button span { background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_login.png") no-repeat center; display: block; height: 30px; width: 30px; overflow:hidden;}
.login_style .logout-button span { background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_logout.png") no-repeat center; display: block; height: 30px; width: 30px; overflow:hidden;}
.login_style .login-button span a, .login_style .logout-button span a {filter:alpha(opacity=0);moz-opacity: 0;-html-opacity: 0;opacity:0; padding:10px 0;}
.user_login{ display:none;}

/*User Style*/
.icon_user { float:left; }
.icon_user .user-button { display: block; cursor: pointer; }
.icon_user .user-button span { background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_user.png") no-repeat center; display: block; height: 30px; width: 30px; overflow:hidden;}
.icon_user .user-button span a { filter:alpha(opacity=0);moz-opacity: 0;-khtml-opacity: 0;opacity:0; padding:10px 0; }
.icon_user .user-back span { background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_user.png") no-repeat center; display: block; height: 30px; width: 30px;}
.user_register { display:none;}
#dnn_dnnUSER3_registerLink { float:left; display:block;filter:alpha(opacity=0);moz-opacity: 0;-khtml-opacity: 0;opacity:0; height:0; max-width:2px; overflow:hidden;}

/*-----------------Fixed Header--------------*/
.headerfixed {position:fixed; width:100%; z-index:1000;box-shadow: 0 0 4px #ccc;-webkit-box-shadow: 0 0 4px #ccc;-moz-box-shadow: 0 0 4px #ccc;left:0; }
.headerfixed .logo_style{ padding:0 1.5%; line-height:60px;}
.headerfixed .logo_style img { max-height:60px; }
.headerfixed .menu_style{padding:10px 20px 0 0; }
.headerfixed .icons_menu { padding:15px 0;}

/*--------- StandardMenu style ----------*/
#standardMenu { position:relative; margin:0 auto;}
#standardMenu ul { list-style:none; margin:0; padding:0;}
#standardMenu li{ position:relative; display:block; float:left; margin:0; list-style-type:none;}

#standardMenu .rootMenu li a{ display:block; position:relative; cursor:pointer; text-decoration:none;}
#standardMenu .rootMenu li.selected a, #standardMenu .rootMenu li.rmHover a, #standardMenu .rootMenu li.breadcrumb a, #standardMenu .rootMenu li:hover a, #standardMenu .rootMenu li a:hover { text-decoration:none;}

#standardMenu .rootMenu li a span { display:block; padding:0 18px; line-height:40px; color:#6b6b6b;  white-space:nowrap; font-size:14px; font-weight:normal;text-transform:none;  transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
#standardMenu .rootMenu li.selected a span, #standardMenu .rootMenu li.breadcrumb a span, #standardMenu .rootMenu li:hover a span, #standardMenu .rootMenu li a:hover span { color:#ed7d67;}

/*-- submenu --*/
#standardMenu .subMenu_arrow { border-bottom: 6px solid #ddd; border-bottom: 6px solid rgba(221,221,221,.93); border-right: 8px solid transparent;border-left: 8px solid transparent ;border-top: 0px solid transparent;content: "";height: 0;left: 15%;position: absolute;top:-5px;width: 0;}
#standardMenu .subMenu {position:absolute;top:auto;z-index:1210;width:180px; display:none;padding:1px 0; margin:0; background:#ddd; background:rgba(221,221,221,.93); border:none;}
#standardMenu .rootMenu li.rmHover .subMenu { display:block; }
#standardMenu .subMenu ul{ margin:0; padding:0;position:relative; z-index:1200;}
#standardMenu .subMenu li{ float:none; clear:both; background:none; width:100%; padding:0; *margin-bottom:-3px;}
#standardMenu .subMenu li.item a{ border-top:1px solid #eee; border-bottom:1px solid #ccc; border-left:none; border-right:none; padding:0; background:none; margin:0;}
#standardMenu .subMenu li.first > a { border-top:none; }
#standardMenu .subMenu li.last > a{ border-bottom: none;}
#standardMenu .subMenu li.item a span{ display:block; background:none; font-size:12px; color:#666;  font-weight:normal; white-space:normal; height:auto; line-height:1.5em; padding:10px 14px 10px 12px; text-transform:none; margin:0; text-shadow:none;}
#standardMenu .subMenu li.selected > a span, #standardMenu .subMenu li.breadcrumb > a span, #standardMenu .subMenu li.item a:hover span { background:#e8e8e8; background:rgba(255,255,255,.3); color:#ed7d67; cursor:pointer; }
#standardMenu .subMenu .subarrow{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/menu-arrow01.gif") no-repeat; position:absolute; right:0; top:15px; width:14px; height:7px;}

#standardMenu ul li ul li ul{ width:180px; margin:0; background:#ddd; background:rgba(221,221,221,.93); border:none; }
#standardMenu ul li ul li ul.level1{ display: none;position:absolute;left:181px; top:0; padding:1px 0;}
#standardMenu ul li ul li.first ul.level1{ top:-1px; }
#standardMenu ul li ul li ul li ul{ display:none;}
#standardMenu ul li ul li ul li ul.level2 { display:none;position:absolute;left:181px;top:0; padding:1px 0;}
#standardMenu ul li ul li ul li.first ul.level2{ top:-1px; }
#standardMenu ul li ul li ul li ul li ul{ display:none;}
#standardMenu ul li ul li ul li ul li:hover ul.level3 { display: block;position:absolute;left:181px;top:0; padding:1px 0;}
#standardMenu ul li ul li ul li ul li.first ul.level3{ top:-1px; }

#standardMenu img.rootIcon {max-height:30px; margin-right: 6px; vertical-align: middle;}
#standardMenu img.mmIcon {max-height:24px; margin-right: 6px; vertical-align: middle;}


/*--------- MegaMenu style ----------*/
#megaMenu { position:relative; margin:0 auto;}
#megaMenu ul { list-style:none; margin:0; padding:0;}
#megaMenu li{ position:relative; display:block; float:left; margin:0; list-style-type:none;}

#megaMenu .root li a{ display:block; position:relative; cursor:pointer; text-decoration:none;}
#megaMenu .root li.selected a, #megaMenu .root li.rmHover a, #megaMenu .root li.breadcrumb a, #megaMenu .root li:hover a, #megaMenu .root li a:hover { text-decoration:none;}

#megaMenu .root li a span { display:block; padding:0 18px; line-height:40px; color:#6b6b6b;  white-space:nowrap; font-size:14px; font-weight:normal;text-transform:none;  transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
#megaMenu .root li.selected a span, #megaMenu .root li.breadcrumb a span, #megaMenu .root li:hover a span, #megaMenu .root li a:hover span { color:#ed7d67;}

/*-- category --*/
#megaMenu .category_arrow { border-bottom: 6px solid #ddd; border-bottom: 6px solid rgba(221,221,221,.93); border-right: 8px solid transparent;border-left: 8px solid transparent ;border-top: 0px solid transparent;content: "";height: 0;left:8%;position: absolute;top:-5px;width: 0; } 
#megaMenu .category { position:absolute;left:0;top:auto;z-index:1210;width:362px; display:none; padding:5px 8px 12px 8px;  background:#ddd; background:rgba(221,221,221,.93);border:none; }
#megaMenu ul li:hover ul{ visibility: visible; }
#megaMenu .root li.rmHover .category { display:block;}
#megaMenu .category ul{ margin:0; padding:0; position:relative; z-index:1200;}
#megaMenu .category li{ background:none; margin:0 8px; width:163px; padding:0 0 0 2px; float:left;}
#megaMenu .category li.item a{ border:none; border-bottom:1px solid #ccc;  background:none;}
#megaMenu .category li.item a span{ display:block; background:none; font-size:12px; color:#666; font-weight:normal; white-space:normal; height:auto; line-height:1.5em; padding:12px 0 6px 0; margin:0; text-transform:none; }
#megaMenu .category li.selected > a span, #megaMenu .category li.item a:hover span { background:none; text-decoration:none; color:#ed7d67; cursor:pointer; }

#megaMenu ul li ul li ul{ position: relative; padding:0; width:auto; border:none;}
#megaMenu .leaf li{ clear:both;float:none; width:160px; margin:0 0 0 5px; padding:0; }
#megaMenu .leaf li.item a{ text-transform: none; font-size:12px; padding:0 0 0 6px; line-height:1em; background:url("/Portals/_default/Skins/Clear-LightCoral/images/right.gif") left 17px no-repeat; border:none;}
#megaMenu .leaf li.item a span{ display:block; background:none; font-size:12px; color:#666; font-weight:normal; height:auto; line-height:1.5em; padding:10px 0; text-transform:none; }
#megaMenu .leaf li li{ clear:both;float:none; width:155px; }
#megaMenu .leaf li.selected > a span{ color:#ed7d67; cursor:pointer;}

#megaMenu img.rootIcon {max-height:30px; margin-right: 6px; vertical-align: middle;}
#megaMenu img.mmIcon {max-height:24px; margin-right: 6px; vertical-align: middle;}


/*--------- LeftMenu style ----------*/
#leftMenu { position:relative; margin:0 auto;}
#leftMenu ul { list-style:none; margin:0; padding:0;}
#leftMenu li{ display:block; float:none; list-style-type:none; margin:0; padding:0; line-height:normal;}
#leftMenu .leftRoot li a {text-decoration:none;}
#leftMenu .leftRoot li a span { display:none; text-decoration:none;} 

/*-- submenu --*/
#leftMenu .leftSub { z-index:900;width:100%; display:none;padding:0; margin:0;}
#leftMenu .leftRoot li.breadcrumb .leftSub { display:block;}
#leftMenu .leftSub ul{ margin:0; padding:0; position:relative; background:none; border:none; z-index:900;}
#leftMenu .leftSub li{float:none; clear:both; padding:0; position:relative; background:#E5E5E5; border:1px solid #CCCCCC;  margin:3px 0; }
#leftMenu .leftSub li.selected { background:url("/Portals/_default/Skins/Clear-LightCoral/images/menu-arrow01.gif") no-repeat right 15px #E5E5E5;}
#leftMenu .leftSub li.item a{ background:none;}
#leftMenu .leftSub li.item a span{ display:block; font-size:13px; color:#555555; font-weight:normal; white-space:normal; line-height:22px; padding:8px 10px 8px 18px; text-shadow:none; text-transform:none; margin:0; }
#leftMenu .leftSub li.selected > a span, #leftMenu .leftSub li a:hover span{ color:#ed7d67;}
#leftMenu .level1{ display: block;}
#leftMenu .level1 li, #leftMenu .leftSub .level1 li.selected{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/right.gif") no-repeat 17px 16px #f5f5f5; margin:0; border:none; border-radius:0; webkit-border-radius:0; -moz-border-radius:0; }
#leftMenu .level1 li.item a span { font-size:12px; padding-left:23px;}
#leftMenu .level2 { display: block; }
#leftMenu .level2 li{ background-position:21px 18px;  }
#leftMenu .level2 li.item a span { padding-left:30px;}
#leftMenu .level3 { display: block; }
#leftMenu .level3 li{ background-position:27px 18px;  }
#leftMenu .level3 li.item a span { padding-left:36px;}
#leftMenu img.mmIcon {max-height:24px; margin-right: 7px; vertical-align: middle;}
#leftMenu img.rootIcon {max-height:30px; margin-right: 6px; vertical-align: middle;}

/*--------- Pane Style ----------*/
.DNNEmptyPane{ display:none!important;}
.dnnpane [class*="grid"] {}
.bannerpane {}
.bannerpane p{ margin:0;}

.topgrid6a{}
.topgrid6b{}
.topgrid4a{}
.topgrid4b{}
.topgrid4c{}
.topgrid3a{}
.topgrid3b{}
.topgrid3c{}
.topgrid3d{}
.topgrid8l{}
.topgrid8r{}
.topgrid4l{}
.topgrid8r{}
.topgrid12{}

.graygrid4a{}
.graygrid4b{}
.graygrid4c{}
.graygrid12{}

.middlegrid4a{}
.middlegrid4b{}
.middlegrid4c{}
.middlegrid12{}

.gray2grid4a{}
.gray2grid4b{}
.gray2grid4c{}
.gray2grid12{}

.bottomgrid4a{}
.bottomgrid4b{}
.bottomgrid4c{}
.bottomgrid12{}
.content_grid12 {}

.footer_grid4a { margin:30px 0;}
.footer_grid4b { margin:30px 0;}
.footer_grid4c { margin:30px 0;}
.footerpane { margin:0 0 30px 0;}
.socialpane {}

.i_content_grid12 {}
.i_one_grid3 {}
.i_one_grid9 {}
.i_two_grid4a {}
.i_two_grid4b {}
.i_two_grid4c {}
.i_three_grid9 {}
.i_three_grid3 {}
.i_four_grid12 {}
.leftsidepane { padding:10px 0; }
.l_one_grid8 {}
.l_one_grid4 {}
.l_two_grid6a {}
.l_two_grid6b {}
.l_three_grid4 {}
.l_three_grid8 {}
.l_four_grid12 {}

/*--------- Grid Style ----------*/
.row-fluid span.SubHead center { font-weight:normal;  font-size:13px; }

/*--------- User Profile Style ----------*/
.user_profile{  cursor: pointer; display: block; }
.user_profile ul { margin:0; padding:5px 0; border:none;}
.user_profile .registerGroup, .user_profile .registerGroup *{ display:block;} 
.user_profile .registerGroup{ float:left;padding:0;margin:0;} 

/* Register Group Styles */
.user_profile .registerGroup li{ width:150px; margin:0; padding:5px;border:none; border-bottom:1px solid #d9d9d9; border-top:1px solid #f5f5f5; }
.user_profile .registerGroup li:first-child { border-top:none; }
.user_profile .registerGroup li:last-child { border-bottom:none; }
.user_profile .registerGroup .buttonGroup{ margin-right:0;}
.user_profile .registerGroup a{ position:relative;display:block;padding:0 9px;min-width:15px;font-weight:normal;font-size:12px;vertical-align:middle;color:#333!important; height:28px; vertical-align:middle;line-height:28px;}
.user_profile .registerGroup a:hover{  color:#444!important; text-decoration:none;}
.user_profile .registerGroup a:active{ color:#444;padding:0 9px;}
.user_profile .registerGroup a strong{ position:absolute;left:0; top:0; padding-left:30px; height:100%;display:block;font-size:12px;font-weight:normal;overflow:hidden;}
.registerGroup .userMessages,.registerGroup .userNotifications { background:none;}
.registerGroup .userMessages strong,.registerGroup .userNotifications strong{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/userLoginSprite.png") no-repeat 9px 10px;}
.registerGroup .userNotifications strong{ background-position:-91px 7px;}
.registerGroup .userMessages strong:hover{ background-position:9px -41px;}
.registerGroup .userNotifications strong:hover{ background-position:-91px -44px;}
.registerGroup .userMessages strong:active{ background-position:9px 11px;}
.registerGroup .userNotifications strong:active{ background-position:-91px 8px;}	
.user_profile .registerGroup a span{ position:absolute;right:5px; top:-7px;display:inline-block;padding:2px 4px;line-height:20px;min-width:7px;text-align:center;margin-right:3px;background: rgb(31,152,241); /* Old browsers */font-size:9px;color:#fff;text-shadow: 0px 1px 0px #333333;
/*CSS3*/	
background: -moz-linear-gradient(top, rgba(31,152,241,1) 0%, rgba(2,111,196,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(31,152,241,1)), color-stop(100%,rgba(2,111,196,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(31,152,241,1) 0%,rgba(2,111,196,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(31,152,241,1) 0%,rgba(2,111,196,1) 100%); /* Opera 11.10+ */
background: linear-gradient(top, rgba(31,152,241,1) 0%,rgba(2,111,196,1) 100%); /* W3C */			
-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; -webkit-box-shadow: 0px 1px 0px 0px #222222;-moz-box-shadow: 0px 1px 0px 0px #222222;box-shadow: 0px 1px 0px 0px #222222; }
.user_profile .registerGroup li.userDisplayName { border-bottom:none; padding-top:10px;}
.user_profile .registerGroup li.userDisplayName a{ padding-left:32px;}
.user_profile .registerGroup li.userProfileImg{ border-top:none; margin-top:-38px; }	
.user_profile .registerGroup .userProfileImg a{padding:0;background:none;min-width:25px;}
.user_profile .registerGroup a img{border:none;height:28px; width:28px;background:#ccc;}

/*--------- Color Picker Style ----------*/
#custom-button {display:block;position: fixed;top: 200px;left:0;cursor:pointer;z-index: 999;}
#custom_wrapper{ display:block;position: fixed;top: 170px;left:-155px;width: 150px;padding: 18px 0 18px 0;background: #fff;z-index: 99999;font-size: 12px;border: 1px solid #E1E1E1;border-bottom: 1px solid rgba(150, 150, 150, 0.2);-webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);-moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);}
#custom_wrapper div, #custom_wrapper span, #custom_wrapper p, #custom_wrapper li, #custom_wrapper td {color: #555;}
#custom_wrapper #bg_color {width: 100%;height: 25px;cursor: pointer;}
#custom_wrapper .custom_inner{width: 80%;margin:auto;}
.colorpicker_preview{width: 100%;height: 30px;margin: 5px 0 0 0;}
#custom_wrapper .use-form-styles select{width: 110px;}
.color-box, .pattern-box, .pattern-box2, .bg-box { width:24px;height:24px;display:block;float:left; margin:5px 2px 0 2px;border: 1px solid #cacaca;}
.pattern-box, .pattern-box2 { background:#ccc;}
#colorpicker { width: 36px;height: 36px;background: url("/Portals/_default/Skins/Clear-LightCoral/images/colorpicker/select2.png");}
#colorpicker div { width: 28px;height: 28px;background: url("/Portals/_default/Skins/Clear-LightCoral/images/colorpicker/select2.png") center;}
#custom_wrapper #bg_pattern { margin-top:10px; margin-bottom:15px;}
.optional_width { position:relative; padding:10px 0 0 0;}
#boxed_button { background:#444444; float:left; margin-top:2px; padding:5px; color:#FFFFFF;}
#stretched_button { background:#444444;  float:right; margin-top:2px; padding:5px; color:#FFFFFF;}
#boxed_button:hover, #stretched_button:hover { text-decoration:none;}
#custom_wrapper #custom-reset{ float:left; padding:5px 8px; margin:0; background:#444444; color:#fff; text-decoration:none;} 
#custom_wrapper .getcss_btn{ float:right; padding:5px 8px; margin:0; background:#444444; color:#fff; text-decoration:none;}
#getCSSModal.modal { width:620px;  margin-left: -310px;}
textarea.get-css { height: 325px; width: 577px; resize: none; cursor: text;}
#getCSSModal .modal-body { overflow:hidden; }
#getCSSModal .modal-dialog { display:none;}

/*--------- Search style ----------*/
#Search{ float:left;position:relative; padding:0;}
.searchcss, a.searchcss:link, a.searchcss:active, a.searchcss:visited{ color:#ffffff; text-decoration:none; font-weight:normal; font-size:15px; display:block; position:absolute; width:33px; height:33px; right:2px; top:4px; text-indent:-99999px; overflow:hidden; }
.searchSite {text-indent:-99999px; }
a.searchcss:hover{ color:#000000; text-decoration:none; font-weight:normal; font-size:15px; }
#Search input[type="text"] {background: #fff; border: 1px solid #d1d1d1; font-size:15px; color: #888888; width:130px; padding: 7px 34px 7px 7px;}
#Search a{ display: block;position:absolute;right:0; top:0;height:35px; width:34px; padding:0;border:none;box-shadow:none;webkit-box-shadow:none;overflow:hidden;text-indent:-99999px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/icon_search2.png") no-repeat 5px 7px;z-index:1;cursor:pointer;}
#Search .searchInputContainer a.dnnSearchBoxClearText {right: 30px !important;}

/*--------- Language Style ----------*/
.language-object{ text-align:center;display:block; margin:0; }
.language-object span {display:block; width:100%;}
.language-object .Language {margin:0 2px;}
.language-object span img{height:18px; width:27px;opacity:0.9; margin:10px 0 0 0; border:2px solid transparent;}
.language-object span:hover img{opacity:1;}
.language-object .Language.selected img{ opacity:1; border-color:#555; border-color:rgba(0,0,0,.1); -webkit-border-radius: 2px;border-radius: 2px;}
#Language { float:right; display:inline-block; display:block\9; filter:alpha(opacity=0);moz-opacity: 0;-khtml-opacity: 0;opacity:0; height:0; max-width:3px;}

/*--------- Scroll Top Style ----------*/
#top-link { background:url("/Portals/_default/Skins/Clear-LightCoral/images/scroll_top.png") no-repeat scroll center -2px rgba(0, 0, 0, 0.3); border: 0 none; border-radius: 2px; bottom: 60px; right: 80px; display:block; height:40px; padding:0; width:40px; position: fixed; text-decoration: none; z-index: 903;border-radius:40px;-moz-border-radius:40px;-webkit-border-radius:40px;}
#top-link:hover { background:url("/Portals/_default/Skins/Clear-LightCoral/images/scroll_top.png") no-repeat scroll center bottom rgba(0, 0, 0, 0.6);  -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s; -o-transition: all 0.2s ease-in 0s; transition: all 0.2s ease-in 0s;}

/*--------- Tipsy Style ----------*/
.tipsy { display:block; float: left; padding:5px 2px; font-size: 12px; background-repeat: no-repeat; background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/tipsy.png");}
.tipsy-inner { padding:8px; background:#e9e9e9; color: #555; max-width: 200px; text-align: center; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px;}
.tipsy-up { background-position: top center;}
.tipsy-down { background-position: bottom center;}
.tipsy-right { background-position: right center;}
.tipsy-left { background-position:left center;}


/*********************************************/
/* All Content Styles */
/*********************************************/

/*-----------------Demo Top Bubble Style---------------------*/
.main_top_text{text-align:center;}
.hi-icon { display: inline-block; font-size: 0px; cursor: pointer; width: 77px; height: 77px; border-radius: 50%; text-align: center; position: relative; z-index: 1; color: #ed7d67;margin-top:20px; } 
.hi-icon:after { pointer-events: none; position: absolute; width: 100%; height: 100%; border-radius: 50%; content: '';-webkit-box-sizing: content-box; -moz-box-sizing: content-box;box-sizing: content-box;}
.hi-icon:before {line-height: 77px;}
.icon_effect .hi-icon { -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s;}
.main_top_icon1 > .icon_effect > .hi-icon:after {top:-2px; left:-2px; padding:2px; z-index: -1;	background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon1a.png") no-repeat -10px -8px #ed7d67;-webkit-transition: -webkit-transform 0.2s, opacity 0.3s;-moz-transition: -moz-transform 0.2s, opacity 0.3s;transition: transform 0.2s, opacity 0.3s;}
.main_top_icon2 > .icon_effect > .hi-icon:after{top:-2px; left:-2px; padding:2px; z-index: -1;	background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon2a.png") no-repeat -10px -8px #ed7d67;-webkit-transition: -webkit-transform 0.2s, opacity 0.3s;-moz-transition: -moz-transform 0.2s, opacity 0.3s;transition: transform 0.2s, opacity 0.3s;}
.main_top_icon3 > .icon_effect > .hi-icon:after{top:-2px; left:-2px; padding:2px; z-index: -1;	background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon3a.png") no-repeat -10px -8px #ed7d67;-webkit-transition: -webkit-transform 0.2s, opacity 0.3s;-moz-transition: -moz-transform 0.2s, opacity 0.3s;transition: transform 0.2s, opacity 0.3s;}
.main_top_icon4 > .icon_effect > .hi-icon:after{top:-2px; left:-2px; padding:2px; z-index: -1;	background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon4a.png") no-repeat -10px -8px #ed7d67;-webkit-transition: -webkit-transform 0.2s, opacity 0.3s;-moz-transition: -moz-transform 0.2s, opacity 0.3s;transition: transform 0.2s, opacity 0.3s;}
.icon_effects .hi-icon:hover:after {-webkit-transform: scale(1.3);	-moz-transform: scale(1.3);	-ms-transform: scale(1.3);	transform: scale(1.3);	opacity: 0; }
.main_top_img1 { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon1b.png") no-repeat -12px -10px #ed7d67; width:77px; height:77px; border:solid 5px #ed7d67;}
.main_top_img2 { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon2b.png") no-repeat -12px -10px #ed7d67; width:77px; height:77px; border:solid 5px #ed7d67;}
.main_top_img3 { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon3b.png") no-repeat -12px -10px #ed7d67; width:77px; height:77px; border:solid 5px #ed7d67;}
.main_top_img4 { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon4b.png") no-repeat -12px -10px #ed7d67; width:77px; height:77px; border:solid 5px #ed7d67;}
.main_top_text h3{ padding-top:10px; color:#686868;}
.main_top_text:hover h3{ color:#ed7d67; transition: all 0.8s ease 0s; -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.main_top_text p{ color:#686868; font-size:13px;}

/*--------- Togglable Tabs Style ----------*/
.skin_tabs{position:relative;height:auto;min-height:430px;overflow:hidden;border-bottom:solid 1px #eaeaea;margin-top:40px;}
.tab_border{padding:15px 10px 0;background:#FFF; }
.nav { margin-bottom: 0; border:none;}
.nav-tabs { border-bottom: 1px solid #CECECE;padding:0 30px;}
.nav-clear{margin-left:50%;}
.nav-tabs > .active > a, 
.nav-tabs > .active > a:hover {}
.tab_title{line-height:42px;padding:0 20px;font-size:16px;}
.nav-tabs > li > a { padding-top:12px; margin-right:10px;font-size:15px;}
.nav-tabs > li > a:hover { color:#333333; }
.tab-content { padding:11px 0 5px 10px;float:right;z-index:909;width:100%;}
.tab_right_content{ line-height:2em;float:right;width:47%;}
.tab_right_content p{font-size:13px;}
.tab_photo{position:absolute;left:0;top:10px;z-index:999;}
.tab_photo img{}
.tab_right_content li{list-style-type:disc!important;}

/*--------- Togglable Tabs4 Style ----------*/
.nav2 { margin-bottom: 0; border:none;}
.tab-content2 p { line-height:2em;}
.nav-tabs2 { float:left; border:none;  min-height:300px;  width:30%;}
.nav-tabs2 > li { margin-bottom: 0; margin-right:1px; border:1px solid #e5e5e5;height:60px; line-height:60px; background:#f9f9f9;border-left:solid 2px #000;border-right:1px solid #e5e5e5;}
.nav-tabs2 > li > a { color:#888; padding:12px 15px 0;font-size:20px;margin:0;}
.nav-tabs2 > li > a:hover { color:#333333; }
.nav-tabs2 > li > a .Icon_one{color:#7c7c7c;}
.nav-tabs2 > li > a .Icon_one:hover, .nav-tabs2 > .active > a .Icon_one{color:#ed7d67;}
.nav-tabs2 > li > a .Icon_two{color:#7c7c7c;}
.nav-tabs2 > li > a .Icon_two:hover, .nav-tabs2 > .active > a .Icon_two{ color:#ed7d67;}
.nav-tabs2 > li > a .Icon_three{color:#7c7c7c; }
.nav-tabs2 > li > a .Icon_three:hover, .nav-tabs2 > .active > a .Icon_three{color:#ed7d67;}
.nav-tabs2 > li > a .Icon_four{color:#7c7c7c; }
.nav-tabs2 > li > a .Icon_four:hover, .nav-tabs2 > .active > a .Icon_four{color:#ed7d67;}
.nav-tabs2 > li:first-child { }
.nav-tabs2 > li:last-child { border-bottom:none;}
.nav-tabs2 > li {float: none;}
.nav-tabs2 > .active{background:#fff;border-left:solid 2px #ed7d67;border-right:none;}
.nav-tabs2 > .active > a{color:#ed7d67;}
.nav-tabs2 > .active > a:hover {border:solid 1px #fff;border-radius:0; margin-right:-4px; position:relative; color:#000; background:#fff;color:#ED7D67;}
.nav-tabs2 > .active > a span{}
.nav-tabs2 > .active > a:before {}
.tab-content2 { border:1px solid #e5e5e5; padding:10px 10px 5px 25px;float:left;width:62%;border-left:none;}
.tab-content2 .right_list h3 { margin:0; padding:8px 0 0 0; font-size:17px; color:#333;}
.tab-content2 .right_list p { padding:10px 0 0 0; font-size:13px; color:#888;}
.tab-content2 .right_list ul { float:left; list-style:none; margin:0; padding:5px 0 0 0; color:#888;}
.tab-content2 .right_list ul.u1 { margin-right:50px;}
.tab-content2 .right_list ul li { background:url("/Portals/_default/Skins/Clear-LightCoral/images/tab_icon.jpg") no-repeat left center; list-style:none; margin:0; padding:5px 0 0 18px;}

/*--------- CarouFredSel Style ----------*/
.Slider_banner{padding:0 20px;}
.Slider_banner_nav{background:#fff;width:50px;height:21px;position:absolute;top:-40px;right:-5px;z-index:8;padding:0 22px 0 5px;}
.carouFredSel { position:relative; height:auto;}
h3.carousel_title{ padding:5px 0 10px 0; color:#444;height:20px; font-size:18px; text-transform:uppercase; }
.carouFredSel ul { list-style:none; margin:0;  width:auto;}
.carouFredSel ul li { float:left; list-style:none; height:auto;  position:relative; padding:0 15px;}
.carouFredSel ul li:hover img {filter:Alpha(Opacity=80);opacity:0.8;}
.carouFredSel_Slider {padding:5px 5px 0!important; border:solid 1px #bdbdbd;margin:0 5px;}
.carouFredSel_nav{position:absolute; right:-4px; top:-40px;padding:5px 25px 0 5px;background:#FFFFFF;}
a.caroul_prev{display:inline-block;width:21px;height:21px;background:#f6f6f6 url("/Portals/_default/Skins/Clear-LightCoral/images/widget_nav.png") no-repeat left top;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;-ms-transition:background-color 0.3s ease-in-out 0s;-o-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:solid 1px #d2d2d2;}
a.caroul_next{display:inline-block;width:21px;height:21px;background:#f6f6f6 url("/Portals/_default/Skins/Clear-LightCoral/images/widget_nav.png") no-repeat bottom right;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;-ms-transition:background-color 0.3s ease-in-out 0s;-o-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:solid 1px #d2d2d2;}
a.caroul_prev:hover {background:#ed7d67 url("/Portals/_default/Skins/Clear-LightCoral/images/widget_nav.png") no-repeat left top;}
a.caroul_next:hover {background:#ed7d67 url("/Portals/_default/Skins/Clear-LightCoral/images/widget_nav.png") no-repeat bottom right;}
.pg-img-wrapper p{padding:10px 5px 0;font-size:13px;}
.carouFredSel .carou_text { font-size:14px;color:#8d8d8d;padding:10px 0;line-height:24px}

/*--------- CarouFredSel2 Style ----------*/
.carouFredSel2 { position:relative;padding:0 40px;margin:40px 0 20px; }
.carouFredSel2 ul { list-style:none; margin:0; padding:0; width:auto;}
.carouFredSel2 ul li { float:left; list-style:none; height:auto;min-height:70px; margin:0 15px; margin-bottom:0; position:relative;}
.carouFredSel2 ul li img {filter:Alpha(Opacity=100);opacity:1; }
.carouFredSel2 ul li:hover img {filter:Alpha(Opacity=80);opacity:0.8;}
.carouFredSel2_Slider {padding:5px!important;;margin:10px 5px 0;}
.Slider_banner_nav2 { position:absolute; right:0; top:-25px; background:#FFFFFF; padding:5px 25px 0 5px;font-size:12px;}
a.caroul_prev2{display:inline-block;width:20px;height:26px;background: url("/Portals/_default/Skins/Clear-LightCoral/images/carouFredSel_prev05.jpg") no-repeat ;position:absolute; top:12px;left:0;opacity:0.5;filter:Alpha(Opacity=50);}
a.caroul_next2{display:inline-block;width:20px;height:26px;background:#f6f6f6 url("/Portals/_default/Skins/Clear-LightCoral/images/carouFredSel_prev06.jpg") no-repeat ;position:absolute; top:12px;right:0;opacity:0.5;filter:Alpha(Opacity=50);}
a.caroul_prev2:hover {background: url("/Portals/_default/Skins/Clear-LightCoral/images/carouFredSel_prev05.jpg") no-repeat left top;opacity:1;filter:Alpha(Opacity=100);}
a.caroul_next2:hover{background: url("/Portals/_default/Skins/Clear-LightCoral/images/carouFredSel_prev06.jpg") no-repeat bottom right;opacity:1;filter:Alpha(Opacity=100);}

/*---------- Latest Works  Style -------------- */
.pg-img-wrapper{position:relative;overflow:hidden;}
.pg-img-wrapper figure{width:100%;margin:0;}
.pg-info{width:100%; height: 100%;text-align: left; padding:0; min-height: 35px; position: absolute; bottom: 0; left: 0; z-index: 10; background: rgba(237, 125, 103, 0.82); -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; }
.pg-info:hover{-moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1;}
.pg-info:hover .pg-details{bottom: 25%; bottom: calc(33% - 10px);}
.pg-details{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 10%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details h2{color:#fff!important;font-size:16px;font-weight: bold;text-align:center;}
.pg-categories{width: 100%; display: block; font-size: 10px; text-transform: uppercase; margin:0; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}
.icon-circle{width:50px;height:50px;background:#000;position: absolute; top: 10%; left: 40%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -moz-opacity: 0.7; -khtml-opacity: 0.7; -webkit-opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: 0.7; ;   z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.pg-info:hover .icon-circle{-moz-opacity: 0.8; -khtml-opacity: 0.8; -webkit-opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); opacity: 0.8; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); top: 37%; top: calc(30% - 10px);}
.icon-one{width: 22px; height: 20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/px_sprites_w.png") no-repeat -40px 0;display:inline-block; position:relative;top:15px;left:14px; }
.icon-two{width: 22px; height: 20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/px_sprites_w.png") no-repeat -285px 0;display:inline-block; position:relative;top:15px;left:14px; }
.icon-three{width: 22px; height: 20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/px_sprites_w.png") no-repeat -80px 0;display:inline-block; position:relative;top:15px;left:14px; }
.icon-four{width: 22px; height: 20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/px_sprites_w.png") no-repeat -368px 0;display:inline-block; position:relative;top:15px;left:14px; }
.icon-five{width: 22px; height: 20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/px_sprites_w.png") no-repeat -408px 0;display:inline-block; position:relative;top:15px;left:14px; }

.icon-circle2{width:50px;height:50px;background:#000;position: absolute; top: 30%; left: 45%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -moz-opacity: 0.7; -khtml-opacity: 0.7; -webkit-opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: 0.7; ;   z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.pg-details2{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 40%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details2 h2{color:#fff!important;font-size:25px;font-weight: bold;text-align:center;}
.pg-categories2{width: 100%; display: block; font-size: 18px; text-transform: uppercase; margin:0; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}
.project_skills{width:100%;}

.icon-circle3{width:50px;height:50px;background:#000;position: absolute; top:30%; left: 42%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -moz-opacity: 0.7; -khtml-opacity: 0.7; -webkit-opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: 0.7; ;   z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.pg-details3{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 30%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details3 h2{color:#fff!important;font-size:20px;font-weight: bold;text-align:center;}
.pg-categories2{width: 100%; display: block; font-size: 15px; text-transform: uppercase; margin:0; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}

.pg-info4{width:100%; height: 100%;text-align: left; padding:0; min-height: 35px; position: absolute; bottom: 0; left: 0; z-index: 10; background: rgba(237, 125, 103, 0.82); -moz-opacity: 0; -khtml-opacity: 0; -webkit-opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; }
.pg-info4:hover{-moz-opacity: 1; -khtml-opacity: 1; -webkit-opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1;}
.pg-info4:hover .pg-details4{bottom: 25%; bottom: calc(33% - 10px);}
.pg-info4:hover .icon-circle4{-moz-opacity: 0.8; -khtml-opacity: 0.8; -webkit-opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); opacity: 0.8; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); top: 37%; top: calc(30% - 10px);}
.icon-circle4{width:50px;height:50px;background:#000;position: absolute; top:25%; left: 40%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -moz-opacity: 0.7; -khtml-opacity: 0.7; -webkit-opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: 0.7; ;   z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.pg-details4{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 28%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details4 h2{color:#fff!important;font-size:16px;font-weight: bold;text-align:center;}
.pg-categories4{width: 100%; display: block; font-size: 14px; text-transform: uppercase; margin:0; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}

.icon-circle5{width:50px;height:50px;background:#000;position: absolute; top:30%; left: 42%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -moz-opacity: 0.7; -khtml-opacity: 0.7; -webkit-opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: 0.7; ;   z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.pg-details5{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 30%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details5 h2{color:#fff!important;font-size:17px;font-weight: bold;text-align:center;}
.pg-categories5{width: 100%; display: block; font-size: 13px; text-transform: uppercase; margin:0; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}

/*All demo_content_title*/
.demo_content_title h3{ font-size:22px;  font-weight:500;color:#000;}
.demo_content_title h3:hover{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}

/*--------- Sidebar Tag style ----------*/
.sidebar_tag { padding-top:5px;}
.sidebar_tag ul { list-style:none; margin:0; padding:0;}
.sidebar_tag ul li { list-style:none; margin-bottom:6px; padding:4px 0;}
.sidebar_tag ul li a {  padding:6px 2px; text-decoration:none;}
.sidebar_tag ul li a span { background:#f1f1f1; padding:6px ; font-size:13px; color:#444; border:1px solid #e0e0e0;border-radius:4px; -webkit-border-radius:4px ; -moz-border-radius:4px ;}
.sidebar_tag ul li a span:hover { background:#409dc1; transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s; color:#fff;}
.sidebar_tag a { text-decoration:none;}

/*---------Project Pagination---------*/
.project-pagination a{display:block;height:32px;line-height:32px;border:1px solid #f0f0f0;color:#ed7d67;float:left;padding:0 15px;}
.project-pagination a.next-btn{margin-left:10px;}
.project-pagination a:hover{background-color:#ed7d67;border-color:#ed7d67;color:#fff;  transition: all 0.2s ease-in 0s; -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s;}
.project-pagination ul{margin-left:10px;float:left;overflow:hidden;}
.project-pagination li{float:left;display:block;padding:0px 2px;}
.project-pagination li:before{content:"";width:auto;}
.project-pagination li.selected a{background-color:#ed7d67;border-color:#ed7d67;color:#fff;}
.project-pagination li.selected a:hover{cursor:default;}

/*------------------ Contact Page -------------------*/
.contact_shadow{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/contact_top_shadow.png") no-repeat top center; width:100%; height:23px; margin-top:40px;}
.contact_page_content{ border-bottom:1px solid #e5e5e5;}
.input_style{float:left;width:33.33%;padding:20px 0 ;}
.input_style input{background:#f2f2f2; border:none; width:90%;}
.input_style input[type="text"]{ padding:5px 0 5px 5px;}
.input_style p, .textarea_style p{ font-size:15px;}
.textarea_style textarea{background:#f2f2f2; border:none; width:98%;}
.textarea_style textarea[type="text"]{ padding:5px 0 5px 5px; min-height:150px;}
.input_button { min-width:80px;  margin-top:50px; padding-bottom:50px;}
.input_button a{background:#ed7d67; padding:15px 20px 15px 30px; text-decoration:none; color:#fff!important; font-size:22px;}
.input_button a:hover { background:#333333; transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s;}
.border_bottom{ border-bottom:1px solid #e5e5e5;}
.map_img_style {padding-top:15px;}
.map_img_style p{padding:5px 0;}
.support_text {float:left;line-height:10px;padding-right:30px; min-height:105px;}
.support_style > p{line-height:20px;padding-bottom:10px; }
.support_text .select{font-size:15px;color:#000;padding-bottom:8px;}
.support_img{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/support_style_img.jpg") no-repeat; width:107px; height:100px; float:left;padding:0 15px 5px 0;}

/*------------------ Buttons Page -------------------*/
.buttons_page{font-size:13px;line-height:22px;height:auto;overflow:hidden;width:100%;}
.buttons_page li{width:30%;float:left;padding:20px 20px 30px 0;border-bottom:solid 1px #ccc;}
.buttons_page p{padding:10px 0;}
.buttons_page .demo_content_title h3{ font-size:15px; font-weight:600; }
.button1_style p{ color:#666;}
.button1_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons_bg_shade.png") repeat-x bottom left #ed7d67; padding:7px 15px;border-radius:4px; -webkit-border-radius:4px; -moz-border-radius:4px; }
.button1_style span a{ color:#fff;}
.button1_style span:hover{ background:#ed7d67;}
.button2_style p{ color:#666;}
.button2_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons_bg_shade.png") repeat-x bottom left #ed7d67; padding:7px 15px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button2_style span a{ color:#fff;}
.button2_style span:hover{ background:#ed7d67;}
.button3_style p{ color:#666;}
.button3_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons_bg_shade.png") repeat-x bottom left #b6b6b6; padding:7px 15px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button3_style span a{ color:#fff;}
.button3_style span:hover{ background:#b6b6b6;}
.button_border{ }
.button4_style p{ color:#666;}
.button4_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons4_left_bg.png") no-repeat bottom left, url("/Portals/_default/Skins/Clear-LightCoral/images/buttons_bg_shade.png") repeat-x bottom left  #dfc727;  padding:8px 15px 8px 35px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button4_style span a{ color:#fff; }
.button4_style span:hover{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons4_left_bg.png") no-repeat bottom left #dfc727;}
.button5_style p{ color:#666;}
.button5_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons5_left_bg.png") no-repeat bottom left, url("/Portals/_default/Skins/Clear-LightCoral/images/buttons_bg_shade.png") repeat-x bottom left  #79bf92;  padding:8px 15px 8px 35px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button5_style span a{ color:#fff; }
.button5_style span:hover{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons5_left_bg.png") no-repeat bottom left #79bf92;}
.button6_style p{ color:#666;}
.button6_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons6_left_bg.png") no-repeat bottom left, url("/Portals/_default/Skins/Clear-LightCoral/images/buttons_bg_shade.png") repeat-x bottom left  #7aab1b;  padding:8px 15px 8px 35px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button6_style span a{ color:#fff; }
.button6_style span:hover{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons6_left_bg.png") no-repeat bottom left #7aab1b;}
.button7_style p{ color:#666;}
.button7_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons_bg_shade.png") repeat-x bottom left #e34608; padding:7px 15px 7px 30px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button7_style span a{ color:#fff;}
.button7_style span:hover{ background:#e34608;}
.buttons7_left_bg{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons7_left_bg.png") no-repeat bottom left; width:33px; height:33px;position:relative; top:-26px;}
.buttons7_bottom_bg{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons7_bottom_bg.png") no-repeat bottom left; width:33px; height:3px;position:relative; top:-28px; left:25px;}
.button8_style p{ color:#666;}
.button8_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons8_right_bg.png") no-repeat bottom right, url("/Portals/_default/Skins/Clear-LightCoral/images/buttons_bg_shade.png") repeat-x top left  #2f3452;  padding:7px 35px 6px 15px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button8_style span a{ color:#fff; }
.button8_style span:hover{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons8_right_bg.png") no-repeat bottom right #2f3452;}
.button9_style p{ color:#666;}
.button9_style span{ background: url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons8_right_bg.png") no-repeat bottom right, url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons_bg_shade.png") repeat-x top left  #272724;  padding:7px 35px 6px 15px;border-radius:14px; -webkit-border-radius:14px; -moz-border-radius:14px; }
.button9_style span a{ color:#fff; }
.button9_style span:hover{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/buttons8_right_bg.png") no-repeat bottom right #272724; }

/*------------------ Socia Page -------------------*/
.socia3, .socia2{height:auto;overflow:hidden;padding:0 30px;}
.socialicons_text, .socialicons3_text, .socialicons2_text{background:#f5f5f5;padding:10px 20px;}
.socialicons2{overflow:hidden;border:solid 1px #fff;}

/*--------- Togglable Tabs Style ----------*/
.Togglable_Tabs{height:auto;overflow:hidden;padding:20px 30px;width:75%;}
.tob_toggles_page .nav { margin-bottom: 0;}

/*------------------ Info boxes Page -------------------*/
.Info_boxes{padding:0 5%;font-size:15px;line-height:22px;height:auto;overflow:hidden;}
.Info_icon{float:left;padding-right:20px;}
.Info_pink{background:#fde2e2;margin:10px 0;padding:25px;}
.Info_greed{background:#daf7c9;margin:10px 0;padding:25px;}
.Info_blue{background:#d3f1fa;margin:10px 0;padding:25px;}
.Info_orange{background:#feeecb;margin:10px 0;padding:25px;}
.Info_greed{background:#d1f9c9;margin:10px 0;padding:25px;}
.Info_gray{background:#f6f5f5;margin:10px 0;padding:25px;}

.Info_box{margin:15px 5%;}
.Info_wrapper{min-height:150px;border:solid 1px #e0e0e0;border-top:none;}
.Info_wrapper h2 { font-size:15px; font-weight:normal; color:#fff!important; line-height:35px; padding: 0 15px;}
.Info_wrapper .Info_content { padding:10px;}
.Info_one{min-height:35px;background:#ed7d67;margin:0 -1px;}
.Info_two{min-height:35px;background:#f69804; margin:0 -1px;}
.Info_three{min-height:35px;background:#696969; margin:0 -1px;}	
.Info_four{min-height:35px;background:#f75e64; margin:0 -1px;}


/*------------------ 404 Page -------------------*/
.error_left{min-height:160px;padding-top:50px;margin-top:10%;overflow:hidden;}
.content_404{ font-size:220px; color:#9e9e9e; text-align:center; float:right;padding-top:30px;}
.error_title_one { font-size:40px; color:#9e9e9e; text-align:center;}
.error_page .sitemap_button {float:right;padding:60px 0 0 20px;float:right;}
.error_page .sitemap_button  a{ text-align:center; background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/sitemap_button.png") repeat-x #ed7d67; font-size:16px; padding:10px 35px; text-decoration:none; color:#FFFFFF;opacity:1;border-radius:10px; }
.error_page .sitemap_button  a:hover{opacity:0.9;}
.error_page .search_style { text-align:center;padding-top:50px;float:right;}
.error_page .search_style input[type="text"] { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/icon_search2.png") no-repeat right center ; border: 1px solid #C7C7C7; font-size:13px; color: #333333; width: 250px; padding: 10px 30px 7px 8px;border-radius:10px;}
.error_bg{float:left;width:26%;}

/*Footer Categories Style*/
.error_right{padding:0;margin-top:0;overflow:hidden;}
.error_text p{font-size:16px;color:#9f9f9f;line-height:22px;}
.error_categories ul { list-style:none;  margin:0 0 0 15px;width:100%;}
.error_categories ul li { list-style:none;width:50%;float:left;}
.error_categories ul .error_another { list-style:none;width:100%;float:left;}
.error_categories ul li a {  background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/foot_icon.png")  no-repeat left center; font-size:14px; height:30px; line-height:30px;  -moz-transition:padding 0.6s ease; -webkit-transition:padding 0.6s ease; transition:padding 0.6s ease;color:#9e9e9e;padding-left:18px}
.error_categories ul li a:hover {padding-left:25px; color:#ed7d67; -moz-transition:padding 0.4s ease; -webkit-transition:padding 0.4s ease; transition:padding 0.4s ease;}
.error_list_line{ border-bottom:solid 1px #dfdfdf; margin:3px 0; width:92%;}
.error_text_line{ border-bottom:solid 1px #dfdfdf; margin:3px 0; width:46.5%;}

/*--------- DropDown Style ----------*/
.dropdowns_page .navbar .brand { padding:5px 20px;} 

/*------------------ About Us Page -------------------*/
.page_about{}
.page_about ul{padding-top:20px;}
.page_about li{float:left;width:28%;margin:0 1%;}
.page_about li:hover img{filter:Alpha(Opacity=80);opacity:0.8;}
.about_name{font-size:23px;}
.about_orange{color:#ed7d67;font-size:16px;}
.about_content{padding:30px 0;}
.about_content p {font-size:14px;color:#8d8d8d;padding:10px 0;line-height:24px;}

.about_us{padding:10px 10px 0;border-bottom:solid 1px #eeeeee;}
.about_us .accordion2 div {font-size:14px;color:#8d8d8d;padding:10px 0;line-height:24px;}
.demo_top_title h3{color:#7c7c7c;font-size:25px;}
.about_us p{font-size:14px;color:#7c7c7c;line-height:24px;}
.about_us_right{padding:0 10px 20px;border-bottom:solid 1px #eeeeee;}

/*--------- FAQ Style ----------*/
.faq_right{height:auto;overflow:hidden;padding:15px 10px 0;}
.categories_design {width:100%;height:50px;font-size:14px;border-bottom:solid 1px #e6e6e6;margin-bottom:5px;line-height:50px;}
.categories_design a{color:#5c5c5c!important	;}
.categories_design a:hover{color:#ed7d67!important	;}
.categories_left{float:left;}
.categories_right{float:right;width:25px;height:25px;border-radius:5px;background:#f3f3f3;text-align:center;line-height:25px;}
.categories_design a:hover .categories_right{background:#ed7d67; color:#fff;}

.categories_style ul{ margin:0px;}
.categories_style li{ border-bottom:1px solid #ececec; line-height:2.5em; }
.categories_style li a{ color:#555;}
.categories_style li a:hover{ color:#ed7d67;}

.faq_style{padding:0 10px;}
.faq_style input[type="text"] { background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/faq_seach.png") no-repeat right center #f9f9f9;  border:none;font-size:13px; color: #585858; width: 250px; padding: 15px 30px 10px 8px;}


/*---------Left Slidebar Style ----------*/
.fancybox_style ul{width:100px;height:auto;overflow:hidden;width:100%;opacity:0.8;}
.fancybox_style .random_top{border-top:dashed 1px #c1c1c1;padding-top:5px;}
.fancybox_style .random_list{border:solid 1px #ececec;padding:5px;margin-right:2%;}

.recent_list{border-top:dashed 1px #c1c1c1;padding-top:5px;}
.recent_contents{width:auto;padding:5px 0;height:auto;overflow:hidden;}
.recent_pic img{border:solid 1px #eee;padding:3px;float:left;margin-right:10px;filter:Alpha(Opacity=80);opacity:0.8;}
.recent_pic:hover img{filter:Alpha(Opacity=100);opacity:1;}
.recent_contents p{border:none;font-size:14px;}

.twitter_style .twitter_contents{border-top:dashed 1px #c1c1c1;padding:10px 0 0;}
.twitter_pic{float:left;padding:5px;}
.twitter_contents p{margin-left:50px;font-size:12px;line-height:20px;}
.color_black{color:#000;}

.defult_contents{border-top:solid 1px #e7e7e7;padding:20px 0;}
.defult_contents p{font-size:14px;line-height:24px;padding:10px 0;color:#717171;}
.defult_text{background:#f5f5f5;border-left:solid 5px #ed7d67;padding:20px;font-size:15px;line-height:22px;margin:10px 0;color:#323232;}

/*Page Style-*/
.demo_top_text{ text-align:center; font-size:15px;padding:20px 0;}
.prices_page{height:auto;overflow:hidden;padding:0 20px;}

/*------------------ Services Page -------------------*/
.page_choose{padding-top:15px;}
.choose_list{margin:10px 0}
.choose_list img{float:left;}
.choose_list a{margin-left:15px;font-size:15px!important;color:#7c7c7c!important;line-height:20px;}
.choose_list a:hover{color:#ed7d67!important;}

.page_perfect{ height:auto;overflow:hidden;background:#f9f9f9;padding:20px 10px 30px;margin-top:0;}
.perfect_left{width:70%;float:left;text-align:center;}
.perfect_left h3{font-size:25px;color:#515151;}
.perfect_left p{font-size:16px;color:#7c7c7c;}
.perfect_right{width:30%;float:left}
.perfect_right input{width:210px;height:50px;background:#ed7d67;border:none;margin:25px 0 0;}
.perfect_right a input{ color:#fff;font-size:20px;transition: all 0.2s ease-in 0s; -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s;}
.perfect_right a:hover input{ background:#474747;}

/*------------------ Testimonials Page -------------------*/
.page_testimonials ul li{width:45%;margin:0 1% 3% 0;float:left;background:#f6f6f6!important;position:relative;}
.page_testimonials li p{padding:20px;font-size:14px;color:#848484;line-height:24px;}
.page_testimonials li:before {border-top: 40px solid #f6f6f6; border-left: 25px solid transparent;border-bottom: 25px solid transparent;content: "";height: 0;left: 10%;position: absolute;bottom: -20px;width:0;}
.testimonials_list{text-align:center;font-size:18px;padding-top:20px;background:#fff;}
.testimonials_list span{color:#ed7d67;}

.page_services li{width:30%;margin:3% 1%;;float:left;}
.page_services li p{line-height:20px;font-size:13px;color:#7c7c7c;margin-left:70px;}
.services_arround{width:55px;height:55px;background:#ed7d67;float:left;border-radius:30px; transition: all 0.8s ease-in 0s; -webkit-transition: all 0.8s ease-in 0s; -moz-transition: all 0.8s ease-in 0s;}
.page_services li:hover .services_arround { background:#666; }
.services_arround img{padding:16px 0 0 14px;}
.services_title{font-size:20px;color:#7c7c7c;padding-bottom:10px;margin-left:70px;}

/*--------- Quovolve Style ----------*/
.quovolve-box { position:relative;text-align:center;min-height:220px;}
.quovolve-box ul { clear: both;list-style: none; margin: 0;padding-top:20px;}
.quovolve-box ul li { list-style:none;position: relative;}
.quovolve-box ul li .quovolve-box_text p { margin: 0; padding-top:20px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/quovolve-box_img.png") no-repeat 20% 20%;text-indent: 40px;color:#707070;}
.quovolve-box ul li .quovolve-box_text p span{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/content/quovolve-box_img2.png") no-repeat 80% 100%;display: block; font-size:22px;line-height:30px; }
.quovolve-box ul li .quovolve-box_text h5 { line-height: 1em; color:#ed7d67;}
.quovolve-box .quovolve-nav .nav-numbers { height: 51px;margin: 0; min-width:100px; position: absolute;bottom:20px; left:43%;}
.quovolve-box .quovolve-nav .nav-numbers li { float: left;list-style: none;margin-right: 3px;}
.quovolve-box .quovolve-nav .nav-numbers li a { display: block;width:51px;height:51px;font-size:0; background: rgba(255,255,255,0.5);}
.quovolve-box .quovolve-nav .nav-numbers li.active a{background: none;-webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s;}
.quovolve-box .quovolve-nav .nav-numbers li a:hover {background: none;-webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s;}
.quovolve-box ul.quovolve {  margin: 10px 0 0;}

/*---------- Project style -------------- */
.project_inner{position:relative;overflow:hidden;margin:0 10px 10px 5px;}
.project_inner figure{width:100%;height:0;padding:0 0 100%;margin:0;}
.project_inner .project_rollover{position:absolute; width:100%;left:0;bottom:0;display:block;height:25%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height 0.3s ease-in-out 0s;-moz-transition:height 0.3s ease-in-out 0s;-ms-transition:height 0.3s ease-in-out 0s;-o-transition:height 0.3s ease-in-out 0s;transition:height 0.3s ease-in-out 0s;color:#fff; background:#63adca;overflow:hidden;}
.project_inner:hover .project_rollover {height:100%; width:100%;}
.project_inner p{padding-top:30px;width:250px;}
.project_inner .entry-title a {color:#fff!important;font-size:20px;}
.project_inner a{color:#fff!important;}
.entry_icon{margin-top:40px;}
.project_item1{padding:18px 15px 10px 15px!important;}

/*---------Prices Dark---------*/
.prices_dark_style{ float:left;width:22%;margin:0 1%;}
.prices_dark_style_three{ float:left;width:30%;margin:0 1%;}
.prices_top_dark{ background:#353535; margin:5px; }
.dark_title{ padding-top:1px;} 
.dark_title h3{ text-align:center; color:#fff;}
.price_dark{ background:#ebebeb; text-align:center; padding:30px 0 20px;}
.price_dark p{ font-size:38px; color:#000; padding:15px 0; margin:0; padding:0;}
.prices_name{display:block;margin-top:20px;font-size:15px;}
.prices_text p{ border-bottom:1px solid #d9d9d9; text-align:center;line-height:2em;background:#f9f9f9;font-size:15px;padding:5px 0;}
.price_dark_button{ text-align:center; padding:25px 0;} 
.price_dark_button span a{ padding:10px 60px; background:#474747; color:#fff;font-size:20px; transition: all 0.2s ease-in 0s; -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s;}
.price_dark_button span a:hover{ background:#ed7d67;}

/*---------Prices Purple---------*/
.prices_color_style{ float:left;width:22%;margin:0 1%;}
.prices_color_style_three{ float:left;width:30%;margin:0 1%;}
.prices_top_purple{ background:#ed7d67; margin:5px; }
.purple_title{ padding-top:1px;} 
.purple_title h3{ text-align:center; color:#fff!important;}
.price_color{ background:#ebebeb; text-align:center; padding:30px 0 20px;}
.price_color p{ font-size:38px; color:#000; padding:15px 0; margin:0; padding:0;}
.prices_name{display:block;margin-top:20px;font-size:15px;}
.prices_text p{ border-bottom:1px solid #d9d9d9; text-align:center;line-height:2em;background:#f9f9f9;font-size:15px;padding:5px 0;}
.price_color_button{ text-align:center; padding:25px 0;} 
.price_color_button span a{ padding:10px 60px; background:#ed7d67; color:#fff;font-size:20px;transition: all 0.2s ease-in 0s; -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s;}
.price_color_button span a:hover{ background:#474747;}

/*---------Prices Liem---------*/
.prices_liem_style{ border:1px solid #d9d9d9;border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px;float:left;width:14%;margin:0 1%;}
.prices_top_liem{ background:#353535; margin:5px;border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
.liem_title{ padding-top:1px;} 
.liem_title h3{ text-align:center; color:#fff;}
.price_liem{ background:#12c250;background:url("/Portals/_default/Skins/Clear-LightCoral/images/prices_shadow.png") repeat-x,#12c250;  text-align:center; padding:8px 0;}
.price_liem p{ font-size:38px; color:#fff; padding:15px 0;margin:0; padding:0;}
.liem_arrow-down {width:0px; height:0px;border-left:5px solid transparent; border-right:5px solid transparent; border-top:5px solid #12c250; font-size:0px; line-height:0px; position:relative; left:45%; padding-bottom:11px;}
.prices_text p{ border-bottom:1px solid #d9d9d9; padding-left:15px; line-height:2em;}
.price_liem_button{ text-align:center; padding:25px 0;} 
.price_liem_button span a{ padding:5px 15px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/buttons_bg_shade.png") repeat-x bottom left #12c250; color:#fff;border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px;}
.price_liem_button span a:hover{ background:#12c250;}

/*Title_portfolio_page*/
.title_portfolio_page{height:auto;overflow:hidden;padding:20px;}

/*------------------ Gallery Page -------------------*/
.gallery_page{height:auto;overflow:hidden;padding:20px;}
.gallery_box_outer{  min-height:160px; margin-bottom:5px;width:23%;float:left;padding:1% 1%;}
.page_number{float:left;padding-top:20px;}
.page_number span{ margin:0 7px;}
.page_number span a{ padding:10px; background:#fff; text-decoration:none;color:#000;text-align:center; width:22px;height:22px;line-height:22px;}
.page_number .active{background:#ed7d67;color:#fff;}
.page_number span a:hover{ color:#fff; background:#ed7d67;}

/*------------------ Project Page -------------------*/
.project_page_left{height:auto;overflow:hidden;padding:0 30px;}
.project_page_left p{font-size:13px;}
.project_page_right .demo_content_title h3{ font-size:18px;  font-weight:300;padding:0; }
.project_overview{ line-height:1.8em;padding:5px 0 ;}
.project_datails{padding:20px 0 10px;}
.project_datails span{ font-weight:500; color:#222; font-size:16px; }
.project_border{ background:#ededed; height:1px;}

/*---------- Project List -------------- */
.project_page{height:auto;overflow:hidden;padding:0;width:100%;}
.project_contain{margin:20px 0;float:left;}
.project_pic{display:block;float:left;width:60%;}
.project_pic:hover img{filter:Alpha(Opacity=80);opacity:0.8;}
.project_list { padding:0 0 0 15px!important;float:left;width:35%;}
.project_page h3{font-size:25px;-webkit-transition: all 0.8s ease-in 0s;-moz-transition: all 0.8s ease-in 0s;transition: all 0.8s ease-in 0s;color:#000;}
.project_page h3:hover{color:#ed7d67;}
.project_list .categories {margin-bottom:20px;}
.project_list .categories a{ color:#999; }
.project_list .intro { font-size:12px; margin-bottom:20px; margin-top:20px; }
.project_list a.read-more { font-size:13px; height:30px;line-height:30px;display:block;text-align:center; background:#bbb; color:#fff;  transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s;}
.project_list a.read-more:hover { background:#ed7d67; }

/*----------Shortcode Portfolio List -------------- */
.shortcode-portfolio{width:100%;float:left;padding:20px 0px 10px 0px;margin:0;}
.thisportfolioitem{-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;overflow:hidden;position:relative;margin:5px;}
.thisportfolioitem > img{-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.thisportfolioitem > img,
ul.shortcodes-portfolio-lists > img{width:100%;height:auto;}
ul.shortcodes-portfolio-lists li > .portfolio-overlay{width:100%;height:100%;position:absolute;top:0px;left:0px;background: rgba(237, 125, 103, 0.82);margin-top:-300%;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;-o-transition: all .3s ease-in-out;transition: all .3s ease-in-out;}
ul.shortcodes-portfolio-lists li:hover > .portfolio-overlay{margin-top:0%;z-index:19;}
ul.shortcodes-portfolio-lists li > .portfolio-overlay-link,
ul.shortcodes-portfolio-lists li > .portfolio-overlay-zoom{width:25px;height:29px;line-height:28px;padding:2px 3px;font-size:15px;color:white;background-color:rgba(0,0,0,.3);position:absolute;top:50%;left:50%;margin:-200% 0px 0px -35px;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-o-transition: all .5s ease-in-out;transition: all .5s ease-in-out;text-align:center;z-index:20;}
ul.shortcodes-portfolio-lists li > .portfolio-overlay-link > i,
ul.shortcodes-portfolio-lists li > .portfolio-overlay-zoom > i{padding:0px;}
ul.shortcodes-portfolio-lists li > .portfolio-overlay-zoom{margin:-300% 0px 0px 5px;-webkit-transition: all .6s ease-in-out;-moz-transition: all .6s ease-in-out;-o-transition: all .6s ease-in-out;transition: all .6s ease-in-out;}
.portfolio-overlay-icon{width:30px;height:25px;position:absolute;top:0px;right:0px;background-color:rgba(0,0,0,.2);border-radius:0px 3px 0px 3px;z-index:20;text-align:center;color:white;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;-o-transition: all .3s ease-in-out;transition: all .3s ease-in-out;margin-top:-100px;}
.portfolio-overlay-icon > i{padding:5px 0px;}
ul.shortcodes-portfolio-lists li:hover > .portfolio-overlay-icon{margin:0px;}
ul.shortcodes-portfolio-lists li:hover > .portfolio-overlay-link{margin:-20px 0px 0px -35px;}
ul.shortcodes-portfolio-lists li:hover > .portfolio-overlay-zoom{margin:-20px 0px 0px 5px;}
.shortcode-portfolio .icon_link, .shortcode-portfolio .icon_zoom_in{padding-top:5px!important;}/*Compatible Firefox*/

/*---------- Twitter Style ----------*/
.latest_tweets{font-size: 13px;}
.latest_tweets ul{width:100%;float:left;padding:0;margin:0;}
.latest_tweets li{padding-bottom:10px;border:0px !important; margin:0;}
.latest_tweets p {color:#868686!important;line-height:20px;}
.latest_tweets a, .latest_tweets a:visited{color:#ed7d67;}
.latest_tweets a:hover{color:#000!important;}

/*---------- Footer-widget Style ----------*/
ul.footerblog_post{width:100%;float:left;padding:0;margin:0;height:auto;overflow:hidden;}
ul.footerblog_post li{display:block;list-style:none;list-style-image:none;padding:10px 20px 20px 0px;border:0px;}
ul.footerblog_post li:first-child{padding-top:0px;}
ul.footerblog_post li:last-child{border:0px;}
ul.footerblog_post a, ul.footerblog_post a:hover, ul.footerblog_post a:visited{color:#ed7d67;font-size:14px}
ul.footerblog_post li p{color:#868686;font-size:13px;padding:1px 0;margin:0;width:100% !important;display:block;}
.icon_around{width:25px;height:22px;background:#ed7d67;float:left;display:block;padding:8px 5px 5px;float:left;margin:5px 10px 0 0;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;text-align:center;}
.footerblog_post li img {transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s;cursor: pointer;margin:0 auto;}
.footerblog_post li:hover {transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s; }
.footerblog_post li:hover img { -moz-transform: rotate(360deg);-webkit-transform: rotate(360deg);}
ul.footerblog_post a:link.post_more, ul.footerblog_post a:visited.post_more { font-size:12px; font-style:italic; color:#555;transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s;}
ul.footerblog_post a:hover.post_more {color:#ed7d67;}

.tsc_clr{clear:both; padding:0; margin:0; width:100%; font-size:0px; line-height:0px;}
.tsc_clear{clear:both; padding:0; margin:0; width:100%; font-size:0px; line-height:0px;}

/*---------- Price Table Style3 ----------*/
/* PRICING TABLE STYLE 2 */
.prices_style02{font-family: Calibri, Arial, Helvetica, sans-serif;font-size: 13px;font-weight: normal;color: #313131;width:100%;}
.prices_style02 ul{margin: 0px;padding: 0px;list-style: none;}.prices_style02 ul li{margin: 0px;width: 100%;height: 100%;height: 26px;padding-top: 10px;float: left;text-align: center;padding-left: 0px;}
.prices_style02 li.pricing_header1{height:36px;font-size: 18px;line-height:24px;color:#ffffff;}
.prices_style02 li.pricing_header2{height:60px;font-size: 30px;font-weight:bold;line-height:50px;border-bottom:1px solid #cccccc;color:#333;background-color:#eee;}.prices_style02 li.pricing_header2 span{font-size: 12px;line-height:40px;}
.prices_style02 .pricing_column_first li.pricing_header1{background:none;}
.prices_style02 .pricing_column_first li.pricing_header2{background-color:#efefef;border-bottom:1px solid #cccccc;-webkit-border-radius:19px 0px 0 0;-khtml-border-radius:19px 0px 0 0;-moz-border-radius:19px 0px 0 0;border-radius:19px 0px 0 0;}.prices_style02 .pricing_column_first li.pricing_header2 span{font-size:15px;font-weight:bold;line-height:56px;padding-left:16px;}
.prices_style02 .pricing_column_first,
.prices_style02 .pricing_column{height: 100%;float: left;margin-right:1px;position:relative;}
.prices_style02 .pricing_column_first{*z-index:2;}
/* 2. Columns sizes */
.pricing_six .pricing_column,
.pricing_six .pricing_column_first{width: 16.5%;}
.pricing_five .pricing_column,
.pricing_five .pricing_column_first{width: 19.8%;}
.pricing_four .pricing_column,
.pricing_four .pricing_column_first{width: 24.8%;}
.pricing_three .pricing_column,
.pricing_three .pricing_column_first{width: 33.1%;}
.prices_style02 .odd{background-color: #ffffff;border-bottom:1px dotted #ccc;}
.prices_style02 .even{background-color: #efefef;border-bottom:1px dotted #ccc;}
.prices_style02 .pricing_yes,
.prices_style02 .pricing_no{height:20px;width:100%;float:left;}
.prices_style02 .pricing_yes{background:url("/Portals/_default/Skins/Clear-LightCoral/images/yes.png") center top no-repeat;}
.prices_style02 .pricing_no{background:url("/Portals/_default/Skins/Clear-LightCoral/images/no.png") center top no-repeat;}
.prices_style02 .pricing_footer{width: 100%;height: 44px;padding-top: 14px;padding-bottom: 6px;float: left;border-top: 1px solid #fff;border-bottom: 2px solid #ccc;background-color: #eee;}
.tsc_buttons2{display:inline-block; text-decoration:none; outline:none; cursor:pointer; font:bold 12px/1em Arial, sans-serif; padding:8px 11px; color:#555; text-shadow:0 1px 0 #fff; background:#f5f5f5; background:-webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f0f0f0)); background:-moz-linear-gradient(top, #f9f9f9, #f0f0f0); border:1px solid #dedede; border-color:#dedede #d8d8d8 #d3d3d3; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; -webkit-box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #fbfbfb; -moz-box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #fbfbfb; box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #fbfbfb;}
.tsc_buttons2:hover,
.tsc_buttons2:focus{color:#555; background:#efefef; background:-webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#e9e9e9)); background:-moz-linear-gradient(top, #f9f9f9, #e9e9e9); border-color:#ccc; -webkit-box-shadow:0 2px 1px #e0e0e0, inset 0 1px 0 #fbfbfb; -moz-box-shadow:0 2px 1px #e0e0e0, inset 0 1px 0 #fbfbfb; box-shadow:0 1px 2px #e0e0e0, inset 0 1px 0 #fbfbfb;}
.tsc_buttons2:active{position:relative; top:1px; color:#555; background:#efefef; background:-webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#f4f4f4)); background:-moz-linear-gradient(top, #eaeaea, #f4f4f4); border-color:#c6c6c6; -webkit-box-shadow:0 1px 0 #fff, inset 0 0 5px #ddd; -moz-box-shadow:0 1px 0 #fff, inset 0 0 5px #ddd; box-shadow:0 1px 0 #fff, inset 0 0 5px #ddd;}
.tsc_buttons2.rounded{padding:8px 15px; -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px;}
input.tsc_buttons2,
button.tsc_buttons2{*width:auto; *overflow:visible;} /* IE7 Fix */
.tsc_buttons2 img{border:none; vertical-align:bottom;}
/* Black */
.tsc_buttons2.black{background:#525252; background:-webkit-gradient(linear, left top, left bottom, from(#5e5e5e), to(#434343)); background:-moz-linear-gradient(top, #5e5e5e, #434343); border-color:#4c4c4c #313131 #1f1f1f; color:#fff; text-shadow:0 1px 1px #2e2e2e; -webkit-box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #868686; -moz-box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #868686; box-shadow:0 1px 2px #eaeaea, inset 0 1px 0 #868686;}
.tsc_buttons2.black:hover,
.tsc_buttons2.black:focus{background:#4b4b4b; background:-webkit-gradient(linear, left top, left bottom, from(#686868), to(#363636)); background:-moz-linear-gradient(top, #686868, #363636); border-color:#313131; -webkit-box-shadow:0 0 1px #d6d6d6, inset 0 1px 0 #868686; -moz-box-shadow:0 0 1px #d6d6d6, inset 0 1px 0 #868686; box-shadow:0 0 1px #d6d6d6, inset 0 1px 0 #868686;}
.tsc_buttons2.black:active{background:#525252; border-color:#313131; -webkit-box-shadow:0 1px 0 #fff, inset 0 0 5px #313131; -moz-box-shadow:0 1px 0 #fff, inset 0 0 5px #313131; box-shadow:0 1px 0 #fff, inset 0 0 5px #313131;}
.prices_style02 a.tooltip{position:relative; z-index:24; font-size:13px;color: #313131; text-decoration:none;background:url("/Portals/_default/Skins/Clear-LightCoral/images/info.png") right center no-repeat;padding:0 20px 0 10px;}
.prices_style02 .blue a.pricing_button,
.prices_style02 .blue li.pricing_header1{background-color: #4db6ff;}
.prices_style02 .green a.pricing_button,
.prices_style02 .green li.pricing_header1{background-color: #5aad17;}
.prices_style02 .red a.pricing_button,
.prices_style02 .red li.pricing_header1{background-color: #ee2121;}
.prices_style02 .black a.pricing_button,
.prices_style02 .black li.pricing_header1{background-color: #666;}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2013 By BESTDNNSKINS.COM
 */
/*--------- CSS Reset for Tablet ----------*/
@media handheld, only screen and (max-width: 1140px){
/*-------- Design style --------*/
.skin_wrapper { width:auto!important; margin:0!important; }

/*top right icons*/
.icons_menu{ margin-right:0; }
.icon_lang_style{left:-28px; }
.icon_lang_style:before {left:37px;}
.icon_search_style{ padding:15px 7px;}

/*--------- Color Picker Style ----------*/
#custom_wrapper{display:none;}
#custom-button {display:none;}

/*--------- Togglable Tabs Style ----------*/
.skin_tabs{padding:30px 0 20px;}
.nav-tabs > li > a { padding-top:12px; font-size:12px;}
.tab_title{padding:0 10px;font-size:16px;}
.nav-tabs { padding:0;margin-left:51%;}
.tab_photo{width:50%;}

/*----------Shortcode Portfolio List -------------- */
.thisportfolioitem{width:24%;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;overflow:hidden;position:relative;margin:5px}

/*--------- Service-box Style ----------*/
.service-box{width:66%; padding: 10px 30px;height:220px;margin-left:10px;}
.service-icon-one, .service-icon-two, .service-icon-three{margin:0 auto;float:none!important; }
.service-info-title{width:100%;text-align:center;}

/*--------- Footer Categories Style ----------*/
.content_404{ font-size:115px; color:#9e9e9e; text-align:center; float:right;padding:30px 0 0 20px;;float:left;}
.error_title_one { font-size:25px; color:#9e9e9e; text-align:right;}
.error_page .search_style input[type="text"] { width: 190px; }

/*---------- carouFredSel style -------------- */
.pg-details h2{font-size:15px;}
.pg-info:hover .pg-details{ bottom: calc(30% - 20px);}


/*---------Prices Purple---------*/
.price_dark_button span a{ padding:10px 20px; font-size:16px;}
.price_color_button span a{ padding:10px 20px; font-size:16px;}

/*------------------ Testimonials Page -------------------*/
.page_services li{width:45%;margin:0 1% 3%;;float:left;}

/*--------- Quovolve Style ----------*/
.quovolve-box .quovolve-nav .nav-numbers {left:41%;bottom:35px}
.quovolve-box ul li .quovolve-box_text p span {font-size:15px;line-height:25px;}

/*--------- Menu Style ----------*/
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 16px;}
}

@media handheld, only screen and (max-width: 1120px){
.logo_style img { max-width:200px; }
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 15px;}
}

@media handheld, only screen and (max-width: 1100px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 14px;}
}

@media handheld, only screen and (max-width: 1080px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ font-size:13px;}
}

@media handheld, only screen and (max-width: 1060px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 13px;}
}

@media handheld, only screen and (max-width: 1040px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 12px;}
}

@media handheld, only screen and (max-width: 1020px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 11px;}
}

@media handheld, only screen and (max-width: 1000px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 9px;}
}

@media handheld, only screen and (max-width: 980px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 8px;}
}

@media handheld, only screen and (max-width: 960px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 7px;}
}

@media handheld, only screen and (max-width: 940px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ padding:0 6px;}
}

@media handheld, only screen and (max-width: 920px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ font-size:12px;}
}

@media handheld, only screen and (max-width: 860px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{padding:0 5px;}
}

@media handheld, only screen and (max-width: 840px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{padding:0 4px;}
}

@media handheld, only screen and (max-width: 820px){
.logo_style img { max-width:120px; }
}

@media handheld, only screen and (max-width: 767px){
#standardMenu .rootMenu li a span, #megaMenu .root li a span{ font-size:14px; padding:0 15px;}
.logo_style img { max-width:none; }

/*---------- Project style -------------- */
.project_inner .project_rollover{ padding-top:10px;}
.project_inner .entry-title a {font-size:13px;}

}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2013 By BESTDNNSKINS.COM
 */
/*--------- CSS Reset for Mobile ----------*/
@media handheld, only screen and (max-width: 767px) {
body {-webkit-text-size-adjust:none;}
.skin_wrapper { width:auto!important;}
.skin_width,body{width:100%;min-width:0;}
.floatl, .floatr{ float: none;}
.pc_display { display:none;}
.mobile_display { display:block;}

/*-------- design style --------*/
.skin_top{height:auto;overflow:hidden;}
.date_style{display:none;}
.logo_style { float:none; padding:10px; text-align:center;}
.menu_style{position:relative;padding:5px 1.5%;float:none; }
.menu_box {display:none;}
.menu_bar{padding:0;}
.search_style {display:none;}
.header_right{ float:none; padding:5px 1.5%;}
.header_demo {width:250px;margin:0 auto;}
.header_demo li{padding-top:5px;}
.socialicons{float:none!important;text-align:center;}
.headerpane{float:none; padding:10px 0;}
.skin_content {width:auto;padding:10px 1.5%;}
.footerpane_style {padding:0 1.5%;}
.footer_left{float:none;line-height:25px; text-align:center;padding:10px 0;}
.footer_right{float:none;}
.icons_menu{ padding:5px 0 0;margin-right:1.5%; }

/*page name*/
.page_name { min-height:50px; }
.pagename_style h1{ line-height:50px; font-size:20px; }
.breadcrumb_style{ display:none; }

/*leftsidebar layout*/
.LM_position { float:none; width:auto; padding:10px 0 0;}
.LM_skin_content { float:none; width:auto; padding:0 0 20px;}
#leftMenu { display:none;}

/*mobile menu*/
.mobile_nav { display:block; position:relative; height:40px;left:0;}
.menuclick { background:url("/Portals/_default/Skins/Clear-LightCoral/images/btn_menu.png") no-repeat center center #ED7D67; width:40px; height:39px; padding:0;margin-left:1.5%; display: block; text-decoration: none; border:none; padding-top:20px 0; }

/*--------- StandardMenu style ----------*/
#standardMenu { width:auto;}
#standardMenu ul { padding:0;}
#standardMenu .rootMenu { float:none;border:none;}
#standardMenu .rootMenu li{ width:auto; float:none; margin-bottom:2px; text-align:left; background:none;}

#standardMenu .rootMenu li a{ background:#888; display:block; padding:0; margin:0;  border:none;}
#standardMenu .rootMenu li.selected a, #standardMenu .rootMenu li.rmHover a, #standardMenu .rootMenu li.breadcrumb a, #standardMenu .rootMenu li:hover a, #standardMenu .rootMenu li a:hover { background:#ED7D67; text-decoration:none; border:none;}

#standardMenu .rootMenu li a span { display:block; margin:0; padding:0 15px; color:#FFFFFF!important; white-space:nowrap; font-size:13px; font-weight:normal; text-shadow:none; height:38px; line-height:38px; position:relative; transition: all 0s ease 0s;  -webkit-transition:all 0s ease 0s;-moz-transition:all 0s ease 0s;}
#standardMenu .rootMenu li.selected a span, #standardMenu .rootMenu li.breadcrumb a span, #standardMenu .rootMenu li.rmHover a span, #standardMenu .rootMenu li:hover a span, #standardMenu .rootMenu li a:hover span {color:#FFFFFF; text-decoration:none;}

#standardMenu .rootMenu a span .navarrow{ position:absolute; width:60px; height:38px; margin-right:0; right:0px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center 0;}
#standardMenu .rootMenu li.selected a span .navarrow, #standardMenu .rootMenu li.breadcrumb a span .navarrow, #standardMenu .rootMenu li.rmHover a span .navarrow, #standardMenu .rootMenu li:hover a span .navarrow, #standardMenu .rootMenu li a:hover span .navarrow{ margin-right:0; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center 0; }

#standardMenu .rootMenu a span .navarrow2{ position:absolute; width:60px; height:38px; margin-right:0; right:0px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center -42px;}
#standardMenu .rootMenu li.selected a span .navarrow2, #standardMenu .rootMenu li.breadcrumb a span .navarrow2, #standardMenu .rootMenu li.rmHover a span .navarrow2, #standardMenu .rootMenu li:hover a span .navarrow2, #standardMenu .rootMenu li a:hover span .navarrow2{ margin-right:0; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center -42px; }

/*-- submenu --*/
#standardMenu .subMenu_arrow{display:none;}
#standardMenu .subMenu{ background:none; left:0; position:static; width:auto; }
#standardMenu .subMenu ul{ width:auto; border:none; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none;}
#standardMenu .subMenu li{ float:none; clear:both; width:100%; margin:0; padding:0; *margin-bottom:-3px; position:relative; filter:Alpha(Opacity=100); opacity:1;}
#standardMenu .subMenu li.item a{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_subnav_bg.png");border-top:none; border-bottom:1px solid rgba(0, 0, 0, 0.15); margin:0; padding:0; height:auto; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0; filter:Alpha(Opacity=100); opacity:1;}
#standardMenu .subMenu li.haschild > a { background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_subnav_bg.png");}
#standardMenu .subMenu li.last > a { border-bottom:none;}
#standardMenu .subMenu li li.item a{ border-bottom:1px solid rgba(0, 0, 0, 0.15);}
#standardMenu .subMenu li.item a span{ padding:0 35px 0 15px; color:#333!important; background:none; height:35px; line-height:35px;}
#standardMenu .subMenu li.item a:hover span { background:#888; color:#FFFFFF!important; cursor:pointer;}
#standardMenu .subMenu li.selected > a span { color:#FFFFFF!important;}
#standardMenu .subMenu li.selected > a span, #standardMenu .subMenu li.breadcrumb > a span, #standardMenu .subMenu li.breadcrumb.haschild > a span{ background:none;}
#standardMenu .subMenu li.selected.haschild > a span, #standardMenu .subMenu li.item.haschild > a:hover span { background:#888;}
#standardMenu .subMenu li.selected a span, #standardMenu .subMenu li.selected.haschild > a span{ background:#888;}
#standardMenu .level1 li.item a span{ padding:0 35px 0 25px; background:none; display:block;}
#standardMenu .level2 li.item a span{ padding:0 35px 0 35px; background:none; display:block;}
#standardMenu .level3 li.item a span{ padding:0 35px 0 45px; background:none; display:block;}
#standardMenu .level1 li.selected > a span, #standardMenu .level2 li.selected > a span, #standardMenu .level3 li.selected > a span{ background:#888;}
#standardMenu .subMenu .subarrow{ display:none; background:none;}

#standardMenu ul li ul li ul{ display:block;width:auto; margin:0; border:none;}
#standardMenu ul li ul li ul.level1{ display: block; position:static; left:auto; top:auto;}
#standardMenu ul li ul li ul li ul.level2 { display: block; position:static; left:auto; top:auto;}
#standardMenu ul li ul li ul li ul li ul.level3 { display: block; position:static; left:auto; top:auto;}
#standardMenu ul li ul li ul li ul li:hover ul.level3 { display: block;position:static;left:auto;top:auto; padding:0;}

/*--------- MegaMenu style ----------*/
#megaMenu { width:auto;}
#megaMenu ul { padding:0;}
#megaMenu .root { float:none;border:none;}
#megaMenu .root li{ width:auto; float:none; margin-bottom:2px; text-align:left; background:none;}

#megaMenu .root li a{ background:#888; display:block; padding:0; margin:0;  border:none;}
#megaMenu .root li.selected a, #megaMenu .root li.rmHover a, #megaMenu .root li.breadcrumb a, #megaMenu .root li:hover a, #megaMenu .root li a:hover { background:#ED7D67; text-decoration:none; border:none;}

#megaMenu .root li a span { display:block; margin:0; padding:0 15px; color:#FFFFFF!important; white-space:nowrap; font-size:13px; font-weight:normal; text-shadow:none; height:38px; line-height:38px; position:relative; transition: all 0s ease 0s;  -webkit-transition:all 0s ease 0s;-moz-transition:all 0s ease 0s;}
#megaMenu .root li.selected a span, #megaMenu .root li.breadcrumb a span, #megaMenu .root li.rmHover a span, #megaMenu .root li:hover a span, #megaMenu .root li a:hover span {color:#FFFFFF; text-decoration:none;}

#megaMenu .root a span .navarrow{ position:absolute; width:60px; height:38px; margin-right:0; right:0px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center 0;}
#megaMenu .root li.selected a span .navarrow, #megaMenu .root li.breadcrumb a span .navarrow, #megaMenu .root li.rmHover a span .navarrow, #megaMenu .root li:hover a span .navarrow, #megaMenu .root li a:hover span .navarrow{ margin-right:0; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center 0;}

#megaMenu .root a span .navarrow2{ position:absolute; width:60px; height:38px; margin-right:0; right:0px; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center -42px;}
#megaMenu .root li.selected a span .navarrow2, #megaMenu .root li.breadcrumb a span .navarrow2, #megaMenu .root li.rmHover a span .navarrow2, #megaMenu .root li:hover a span .navarrow2, #megaMenu .root li a:hover span .navarrow2{ margin-right:0; background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_navarrow.png") no-repeat center -42px;}

/*-- category --*/
#megaMenu .category_arrow { display:none; }
#megaMenu .category{ background:none; left:0; position:static; width:auto; margin:0; padding:0; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0;}
#megaMenu .category li{ float:none; clear:both; width:100%; padding:0; margin:0; filter:Alpha(Opacity=100); opacity:1;}
#megaMenu .category li.item a{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_subnav_bg.png"); border-bottom:1px solid rgba(0, 0, 0, 0.15); margin:0; padding:0; height:auto; filter:Alpha(Opacity=100); opacity:1; border-radius:0; -moz-border-radius:0; -webkit-border-radius:0;}
#megaMenu .category li.haschild > a { background:url("/Portals/_default/Skins/Clear-LightCoral/images/mobile_subnav_bg.png"); }
#megaMenu .category li.last > a { border-bottom:none;}
#megaMenu .category li li.item a{ border-bottom:1px solid rgba(0, 0, 0, 0.15);}
#megaMenu .category li.item a span{ padding:0 35px 0 20px; color:#333!important; background:none; font-weight:normal; height:35px; line-height:35px; }
#megaMenu .category li.item a:hover span { background:#888; color:#fff!important; cursor:pointer;}
#megaMenu .category li.selected > a span { color:#fff!important;}
#megaMenu .category li.selected > a span, #megaMenu .category li.breadcrumb > a span, #megaMenu .category li.breadcrumb.haschild > a span{ background:none;}
#megaMenu .category li.selected.haschild > a span, #megaMenu .category li.item.haschild > a:hover span { background:#888; }
#megaMenu .category li.selected a span, #megaMenu .leaf li.selected a span, #megaMenu .category li.selected.haschild > a span{ background:#888;}

#megaMenu .leaf{ background:none; display:block; position:static; width:auto; margin:0; border:none; top:0; -webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
#megaMenu .leaf li.last > a{ border-bottom:1px solid rgba(0, 0, 0, 0.15);}
#megaMenu .leaf li.item a span{ display:block; background:none; font-size:12px; font-weight:normal; white-space:nowrap; height:35px; line-height:35px; padding:0 35px 0 30px; text-transform:none;}
#megaMenu .leaf li li.item a span { padding:0 35px 0 40px;}
#megaMenu .leaf li li li.item a span { padding:0 35px 0 50px;}
#megaMenu .leaf li.selected > a span{ background:#aaa;}
#megaMenu .category li.rmhover > .leaf{ display:block;}
#megaMenu .leaf li li, #megaMenu .leaf li li li { width:auto;}


/*--------- pane style ----------*/
.headerpane { }
.bannerpane p{ }
.socialpane { }
.contactpane { }
.bannerpane { }

.content_grid12 {}
.topgrid6a{}
.topgrid6b{}
.topgrid4a{}
.topgrid4b{}
.topgrid4c{}
.topgrid3a{}
.topgrid3b{}
.topgrid3c{}
.topgrid3d{}
.topgrid8l{}
.topgrid8r{}
.topgrid4l{}
.topgrid8r{}
.topgrid12{}

.graygrid4a{}
.graygrid4b{}
.graygrid4c{}
.graygrid12{}

.middlegrid4a{}
.middlegrid4b{}
.middlegrid4c{}
.middlegrid12{}

.gray2grid4a{}
.gray2grid4b{}
.gray2grid4c{}
.gray2grid12{}

.bottomgrid4a{}
.bottomgrid4b{}
.bottomgrid4c{}
.bottomgrid12{}
.socialpane {}

.footer_grid4a { margin:10px 0;}
.footer_grid4b { margin:10px 0;}
.footer_grid4c { margin:10px 0;}
.footerpane { margin:0 0 10px 0;}
.socialpane {}

.i_content_grid12 {}
.i_one_grid3 {}
.i_one_grid9 {}
.i_two_grid4a {}
.i_two_grid4b {}
.i_two_grid4c {}
.i_three_grid9 {}
.i_three_grid3 {}
.i_four_grid12 {}
.leftsidepane { padding:10px 0; }
.l_one_grid8 {}
.l_one_grid4 {}
.l_two_grid6a {}
.l_two_grid6b {}
.l_three_grid4 {}
.l_three_grid8 {}
.l_four_grid12 {}

/*--------- DNN Default Style Reset ----------*/
.dnnFormPopup { width: 90%!important;}
.LoginPanel, .dnnLogin  {width:auto; max-width:480px;}
.dnnLogin  .dnnForm  {min-width: 0; width:auto;}
.dnnLogin  .dnnFormLabel { width:auto; }
.LoginPanel .dnnPrimaryAction{margin-left:82px;}
.LoginPanel .dnnLoginRememberMe{padding-left:82px;}
#dnn_ctr_Login_UP .dnnForm {min-width:280px; width:auto;}
div.dnnRegistrationForm .dnnForm {width:auto;}
div.dnnRegistrationForm .dnnFormItem label, div.dnnRegistrationForm .dnnFormItem .dnnFormLabel, div.dnnRegistrationForm .dnnFormItem .dnnTooltip {width:110px;}
#dnn_ctr_Register_UP  .dnnForm {min-width:280px; max-width:480px; width:auto;}

/*--------- Togglable Tabs Style ----------*/
.skin_tabs{border-bottom:none;}
.nav-tabs{ width:100%!important;padding:0;margin:0;overflow:hidden;}
.nav-tabs li { float:none; width:100%!important;}
.nav-tabs li a {width:100%!important;border:1px solid #CECECE;border:none;}
.nav-tabs li a:hover {background:#f2f2f2;border-left:none;border-radius:0;}
.nav-tabs > .active > a, 
.nav-tabs > .active > a:hover{border-top:none;border-left:none;border-radius:0;background:#eaeaea;border-bottom:solid 1px #eaeaea;}
.tab_photo { float:none; width:auto;}
.tab_title{font-size:18px;}
.tab_right_content{width:100%!important;float:none!important;margin-left:15px;}
.nav-tabs .dropdown-toggle .caret{margin-top:18px;}
.tab_photo{position:relative;top:0;right:0;padding:10px;margin:0 auto;width:80%;}


/*--------- Togglable Tabs Style ----------*/
.nav-tabs2 { float:none; border:none; background:none; min-height:0; width:auto; text-align:left;}
.nav-tabs2 > li {  border:1px solid #d9d9d9; width:100%;}
.nav-tabs2 > li > a { color:#888; height:37px; line-height:40px; padding:0;width:100%;padding-left:6px;}
.nav-tabs2 > li:first-child { margin-top:0;}
.nav-tabs2 > li:last-child { }
.nav-tabs2 > li, .nav-pills > li { float: none;}
.nav-tabs2 > li > a:hover { color:#333333;border:none;border-radius:0;}
.nav-tabs2 > .active > a, .nav-tabs2 > .active > a:hover { background:none; border:solid 1px #fff; border-radius:0; position:relative; color:#000;padding-left:5px;}
.nav-tabs2 > .active > a:before { background:none; content: " ";height: 0; position: absolute; right:-14px; top:0; width:14px;}
.tab-content2 { border:none; padding:10px 10px 5px 10px;}
.tab-content2 .right_list h3 { margin:0; padding:0; font-size:17px; color:#333;}
.tab-content2 .right_list p { padding:0; font-size:13px; color:#888;}
.tab-content2 .right_list ul { float:left; list-style:none; margin:0; padding:5px 0 0 0; color:#888;}
.tab-content2 .right_list ul.u1 { margin-right:50px;}
.tab-content2 .right_list ul li { background:url("/Portals/_default/Skins/Clear-LightCoral/images/tab_icon.jpg") no-repeat left center; list-style:none; margin:0; padding:5px 0 0 18px;}
.nav-tabs3 > li > a:hover{ background:#409dc1; color:#FFFFFF; }

/*--------- Quovolve Style ----------*/
.quovolve-box .quovolve-nav .nav-numbers {left:37%;bottom:20%;}
.quovolve-box ul li .quovolve-box_text p {font-size:17px;line-height:25px;padding:0 5px;}

/*--------- CarouFredSel Style ----------*/
.carouFredSel{}
.carouFredSel{padding:0;}
.icon-circle{display:none;}
.carouFredSel_nav{padding-right:5px;}
.Slider_banner4_nav{top:5px;}

/*---------- Latest Works  Style -------------- */
.pg-details h2{line-height:18px;}
.pg-details{}
.carouFredSel ul li { padding:0 3px;}
.pg-categories{line-height:12px;margin:0;}
.pg-info:hover .pg-details{bottom: calc(50% - 20px);}
.icon-circle2{top: 25%; left: 40%;  }
.pg-details2{ bottom: 30%; color: #ffffff; }
.pg-details2 h2{font-size:18px;}
.pg-categories2{ font-size: 15px;}
.icon-circle3{top: 25%; left: 40%;  }
.pg-details3{ bottom: 30%; color: #ffffff; }
.pg-details3 h2{font-size:17px;}
.pg-categories3{ font-size: 14px;}
.pg-info4{width:88.5%;}

/*---------- Project style -------------- */
.project_inner .entry-mobile {display:none;}

.page_testimonials li{width:90%;}
.page_services li{width:90%;margin:0 1% 3%;;float:left;}

.perfect_left{width:90%;float:left;text-align:center;}
.perfect_right{width:100%;text-align:center;}

/*--------- Price Table Style ----------*/
.prices_dark_style{ float:left;width:45%;margin:0;}
.prices_color_style{ float:left;width:45%!important;margin:0;}
.price_dark p{ font-size:25px; }
.price_color p{ font-size:25px; }

.prices_dark_style_three{ float:left;width:29%;margin:0 5px;}
.prices_color_style_three{ float:left;width:29%;margin:0 5px;}

.dark_title h3{font-size:18px;}
.purple_title h3{font-size:18px;}

.price_dark_button span a{ padding:10px 0; }
.price_color_button span a{ padding:10px 0; }

/*--------- Error 404 ----------*/
.error_page{height:320px;}
.content_404{ font-size:175px; padding:30px 0 0 20px;}
.error_title_one { font-size:25px; color:#9e9e9e; text-align:center;}
.error_bg{float:left;width:20%;}
.error_page .sitemap_button {float:right;}
.error_page .search_style { display:block;float:right;}

/*--------- Quovolve Style ----------*/
.quovolve-box .quovolve-nav .nav-numbers {left:37%;bottom:20%;}
.quovolve-box ul li .quovolve-box_text p {font-size:17px;line-height:25px;padding:0 5px;}

/*--------- Scroll Top Style ----------*/
#top-link { bottom: 12px; right: 20px; }

/*------------------ Mobile Mode Style -------------------*/
.standard_list ul{width:100%;float:left;}
.content_right_borter{width:100%;}
.demo_content_title h3{font-size:18px;}
.about_edit{margin:15px 0;}
.input_style{width:100%;}
.support_text{}
.input_button { padding-bottom:25px;}

/*------------------ Buttons Page -------------------*/
.buttons_page li{width:90%;}

/*---------Prices Pages---------*/
.prices_blue_style, .prices_color_style, .prices_green_style, .prices_red_style, .prices_gray_style, .prices_liem_style{width:90%;}
.blog_img_right{ float:left;}

/*------------------ Services Page -------------------*/
.services_list{float:left;width:90%;padding:0 1%;min-height:150px!important;}

/*------------------ Testimonials_page -------------------*/
.testimonials_page .input_button{float:left;}

/*------------------ Gallery_box Page -------------------*/
.gallery_box_outer{ width:48%;}
.project_page_left{padding:0 10px;}
.project_pic{width:80%;}
.project_list { padding:10px 0!important;float:none;width:80%!important;}
}

@media handheld, only screen and (max-width:560px) {
/*--------- Quovolve Style ----------*/
.quovolve-box .quovolve-nav .nav-numbers {left:35%;bottom:15%;padding-top:5px;}
.quovolve-box ul li .quovolve-box_text p {line-height:20px;font-size:16px;}

/*--------- Footer Categories Style ----------*/
.error_page{height:300px;width:100%;}
.content_404{ font-size:105px; }
.error_title_one { font-size:20px; color:#9e9e9e; text-align:center;}
.error_bg{float:left;width:20%;}
.error_page .sitemap_button {float:right}
.error_page .search_style { display:block;float:right;}
.error_page .search_style input[type="text"] { width: 140px; }
}

@media handheld, only screen and (max-width:380px) {
.gallery_box_outer{ width:96%;}
.language_position {padding:5px 0 4px 0; }

/*--------- Register and Login Style ----------*/
#Login{ margin:0 5px; }
#Login .registerGroup a { padding:0 4px;  }
#Login .loginGroup a{ padding:0 4px; }
.registerGroup .userMessages strong,.registerGroup .userNotifications strong{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/userLoginSprite.png") no-repeat -5px -30px;}
.registerGroup .userMessages strong:hover{background-position:-5px -1px;}
.registerGroup .userNotifications strong{ background-position:-33px -30px;}
.registerGroup .userNotifications strong:hover{ background-position:-33px -1px;}
.registerGroup .userMessages strong:active{background-position:-5px -30px;}
.registerGroup .userNotifications strong:active{ background-position:-33px -30px;}	

/*--------- Quovolve Style ----------*/
.quovolve-box .quovolve-nav .nav-numbers {left:25%;bottom:8%;}
.quovolve-box ul li .quovolve-box_text p {line-height:20px;font-size:15px;}
.riviera_title{padding-top:10px;}
.riviera_pic{width:80%;}
.riviera_text{float:left;width:100%;}
.pg-info:hover .pg-details{bottom: calc(40% - 20px);}
.error_page .search_style input[type="text"] { width: 80px; }
}

/*--------- Retina Styles ----------*/
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (-moz-min-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2) {

.menuclick { background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/btn_menu@2x.png"); -webkit-background-size:20px 20px; -moz-background-size:20px 20px; background-size:20px 20px; }
.icon_search{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_search@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px;}
.icon_lang{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_lang@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px; }
.login_style .login-button span{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_login@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px;}
.login_style .logout-button span{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_logout@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px;}
.icon_user .user-button span{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_user@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px;}
.icon_user .user-back span{ background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/icon_user@2x.png");-webkit-background-size:30px 30px; -moz-background-size:30px 30px; background-size: 30px 30px;}

#standardMenu .rootMenu a span .navarrow,
#standardMenu .rootMenu a span .navarrow2, 
#standardMenu .rootMenu li.selected a span .navarrow, #standardMenu .rootMenu li.breadcrumb a span .navarrow, #standardMenu .rootMenu li.rmHover a span .navarrow, #standardMenu .rootMenu li:hover a span .navarrow, #standardMenu .rootMenu li a:hover span .navarrow,
#standardMenu .rootMenu li.selected a span .navarrow2, #standardMenu .rootMenu li.breadcrumb a span .navarrow2, #standardMenu .rootMenu li.rmHover a span .navarrow2, #standardMenu .rootMenu li:hover a span .navarrow2, #standardMenu .rootMenu li a:hover span .navarrow2,
#megaMenu .root a span .navarrow,
#megaMenu .root a span .navarrow2,
#megaMenu .root li.selected a span .navarrow, #megaMenu .root li.breadcrumb a span .navarrow, #megaMenu .root li.rmHover a span .navarrow, #megaMenu .root li:hover a span .navarrow, #megaMenu .root li a:hover span .navarrow,
#megaMenu .root li.selected a span .navarrow2, #megaMenu .root li.breadcrumb a span .navarrow2, #megaMenu .root li.rmHover a span .navarrow2, #megaMenu .root li:hover a span .navarrow2, #megaMenu .root li a:hover span .navarrow2
{background-image:url("/Portals/_default/Skins/Clear-LightCoral/images/retina/mobile_navarrow@2x.png"); -webkit-background-size:17px 80px; -moz-background-size:17px 80px; background-size:17px 80px;}

}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/fancybox_sprite.png");
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url("/Portals/_default/Skins/Clear-LightCoral/images/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url("/Portals/_default/Skins/Clear-LightCoral/images/blank.gif"); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url("/Portals/_default/Skins/Clear-LightCoral/images/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/retina/fancybox_sprite@2x.png");
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/retina/fancybox_loading@2x.gif");
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item{z-index: 2;}
.isotope-hidden.isotope-item{pointer-events: none; z-index: 1;}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item{-webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -ms-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s;}
.isotope{-webkit-transition-property: height, width; -moz-transition-property: height, width; -ms-transition-property: height, width; -o-transition-property: height, width; transition-property: height, width;}
.isotope .isotope-item{-webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -ms-transition-property: -ms-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity;}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition{-webkit-transition-duration: 0s; -moz-transition-duration: 0s; -ms-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s;}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling{-webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none; transition: none;}
/**** Isotope styles ****/
.element{margin:5px; float: left; overflow: hidden; position: relative; color: #222;}
.element2{ min-width:240px; min-height:180px;margin:5px; float: left; overflow: hidden; position: relative; color: #222;}

.isotope_img img{position: relative;height: auto; width: 100%;opacity: 0.88;}
.isotope_img img:hover{opacity:1;}
.strip{display: block;background: none repeat scroll 0 0 #FF6812; height: 3px; width: 50px;}
/**** Example Options ****/
#options ul{padding-top:15px; list-style: none outside none; margin: 0 auto 30px; max-width: 100% !important; position: relative; text-align: center;}
#options ul li{display: inline-block;background:#bfbfbf;border-radius:5px;margin:5px 0;}
#options ul li a{border-bottom: medium none !important; color: #fff; display: inline-block; font-size: 14px; line-height: 20px; margin: 0 auto; padding:10px 15px; text-align: center;}
#options ul li a.last{border-right:none;}
#options ul li a{text-decoration:none;}
#options a{display: block; font-size: 12px; line-height: 22px; padding: 0 5px; text-transform: uppercase;-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
#options a:hover{background:#ed7d67;border-radius:5px;-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
/*---------- Project style -------------- */
.project_inner{position:relative;overflow:hidden;}
.project_inner figure{width:100%;height:0;padding:0 0 100%;margin:0;}
.project_inner .project_rollover{position:absolute; width: 470px;left:0;bottom:0;display:block;padding:8px 5px 9px 5px;height:25%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height 0.3s ease-in-out 0s;-moz-transition:height 0.3s ease-in-out 0s;-ms-transition:height 0.3s ease-in-out 0s;-o-transition:height 0.3s ease-in-out 0s;transition:height 0.3s ease-in-out 0s;color:#fff; background:#63adca;}
.project_inner:hover .project_rollover{height:100%; width:470px;}
.project_inner .entry-content p{display:block;}
.project_inner .entry-title a{color:#fff!important;font-size:16px;}
.project_inner a{color:#fff!important;}
@media handheld, only screen and (max-width: 767px){.element{width:265px;}}
/* Unoslide container */

.unoslider { list-style: none; position: relative; max-width:1600px; height:430px; margin: 0 auto; padding: 0; }
.unoslider li { display: none; position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
/* Timebar */
.unoslider_timer { background-color: #fff; width: 0%; height: 3px; position: absolute; left: 0; bottom: 0; opacity: 0.7; z-index: 6!important; }
/* Progress bar preloader container */
.unoslider_preloader { background: rgba(255, 255, 255, 0.5); }
/* progress bar preloader */
.unoslider_preloader .unoslider_progress { width: 30%; height: 5px; margin: 0 auto; border-top: 1px solid #7c7c7c; border-bottom: 1px solid #f1f1f1; border-left: 1px solid #949494; border-right: 1px solid #949494; background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9a9a9a), color-stop(100%, #b3b3b3)); background: -webkit-linear-gradient(#9a9a9a, #b3b3b3); background: -moz-linear-gradient(#9a9a9a, #b3b3b3); background: -o-linear-gradient(#9a9a9a, #b3b3b3); background: -ms-linear-gradient(#9a9a9a, #b3b3b3); background: linear-gradient(#9a9a9a, #b3b3b3); }
/* progress bar fill */
.unoslider_preloader .unoslider_progress span { display: block; height: 100%; background: #66cccc; }
/* Spinner preloader */
.unoslider_spinner { background: url("/Portals/_default/Skins/Clear-LightCoral/images/spinner.gif") white center center no-repeat; }
/* Hand cursor over navigation elements */
.unoslider_navigation { cursor: pointer; }
/* Tooltip panel */
.unoslider_caption {position: absolute; left:20px; bottom:20px; width:350px; padding:15px; background: #f5f5f5; background: rgba(255,255,255,.7); border: none; font-size: 17px;font-family: "Noto Sans", Helvetica, Verdana, sans-serif; color: #222; color: rgba(0,0,0,.9); text-align: left; line-height:1.5em; -moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px;}
.unoslider_caption h2 { text-align: center; margin: 0; padding: 0; font-size: 22px; }
.unoslider_caption h3 { text-align: center; margin: 0; padding: 0; font-size: 17px; color: #333333; }
/* play, pause, previous and next elements */
.unoslider_pause, .unoslider_play, .unoslider_left, .unoslider_right { text-indent: 110%; white-space: nowrap; overflow: hidden; position: absolute; display: block; background: url("/Portals/_default/Skins/Clear-LightCoral/images/ribbon.png") no-repeat; }
/* play and pause elements */
.unoslider_pause, .unoslider_play { height: 31px; width: 28px; margin-top: -26px; margin-left: -14px; top: 50%; left: 50%; }
/* previous and next elements */
.unoslider_left, .unoslider_right { width: 33px; height: 50px; margin-top: -36px; top: 50%; }
/* previous */
.unoslider_left { background: url("/Portals/_default/Skins/Clear-LightCoral/images/ribbon.png") no-repeat rgba(255,255,255,.5); background-position: 0px -7px; left: 0; }
/* next */
.unoslider_right { background: url("/Portals/_default/Skins/Clear-LightCoral/images/ribbon.png") no-repeat rgba(255,255,255,.5); background-position: 0px -79px; right: 0; }
/* pause */
.unoslider_pause { background-position: 0px -195px; }
/* play */
.unoslider_play { background-position: 0px -150px; }
/* bullet indicator */
.unoslider_indicator { position: absolute; bottom: 20px; right: 10px; text-align: right; padding: 5px 10px; _width: 50%;  *width: 50%;
font-size: 0px; }
.unoslider_indicator a { text-indent: 110%; white-space: nowrap; overflow: hidden; display: -moz-inline-box; -moz-box-orient: vertical; display: inline-block; vertical-align: middle;  *vertical-align: auto;cursor: pointer; background: #ffffff; background: rgba(255,255,255,.8); margin-right: 6px; width: 15px; height: 15px; border: none; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }
.unoslider_indicator a {  *display: inline;}
.unoslider_indicator a.unoslider_indicator_active { background: #ed7d67;}

@media handheld, only screen and (max-width: 767px){
.unoslider_caption {left:10px;bottom: 10px;width:320px;padding:6px; font-size: 12px; line-height:1.2em;}
.unoslider_caption h2 { font-size:18px; }
.unoslider_caption h3 { font-size:15px; }
}

@media handheld, only screen and (max-width: 460px){
.unoslider_caption {left:0;bottom:5px;width:66%;padding:6px; font-size: 11px; line-height:1.2em; -moz-border-radius:0; -webkit-border-radius:0;border-radius:0;}
.unoslider_caption h2 { font-size:14px; }
.unoslider_caption h3 { font-size:12px; }
.unoslider_indicator {  bottom: 6px; right:0;}
}
/* Translucent - Responsive Banner Rotator / Slider | v1.4.1 | (c) 2011-12 Ramesh Kumar | http://codecanyon.net/user/VF */

.TB_Wrapper {
	position: relative;	
	background: #EEEEEE url("/Portals/_default/Skins/Clear-LightCoral/images/TB-preloader.gif") center center no-repeat;	
	max-width: 1600px;
	height:500px;
	cursor:e-resize;
	margin: 0 auto;
}

.TB_Wrapper .icon {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/TB-icons.png");
	background-repeat: no-repeat;
}

.TB_Wrapper .timer_sprite {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/images/TB-timer-sprite.png");
}

.TB_Wrapper .Slides {
	z-index: 1;
	position: absolute;
	overflow: hidden;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
	
.TB_Wrapper .Slide {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: #EEEEEE url("/Portals/_default/Skins/Clear-LightCoral/images/TB-preloader.gif") center center no-repeat;
}

.TB_Wrapper .Slide img {	
	z-index: 1;
	left: 0px;
	top: 0px;
	border: 0px;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}
	
/* Global Description Style */	
.TB_Wrapper .Slide div {
	z-index:4;
	position:absolute;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:100;	
	font-size:16px;	
	color:#FFF;
}

.TB_Wrapper .Slide .txtCont span {
    margin: 0 auto;
	max-width:960px;
}
	
/*Hyperlink Styles*/
.TB_Wrapper a:link{		
	color:#FFF;
	text-decoration:none;
}
	
.TB_Wrapper a:visited{		
	color:#FFF;
}
	
.TB_Wrapper a:hover{		
	color:#FFF;
	text-decoration:underline;
}
	
.TB_Wrapper a:active{		
	color:#FFF;
}

.TB_Wrapper .noSelect {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.TB_Wrapper .buttonText {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000;
}

.TB_Wrapper .buttonTextSizeNormal {
	font-size: 12px;
}

.TB_Wrapper .buttonTextSizeTouch {
	font-size: 16px;
}


.TB_Wrapper .txtCont {
	z-index:4;
	overflow: hidden;
	position:absolute;	
	left: 0px;
	top: 0px;
}

.TB_Wrapper .captionCanvas {
	position: absolute;
	left: 0px;
	top: 0px;
}

.TB_Wrapper .navHolder {
	position: absolute; 
	-webkit-touch-callout: none; 
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.TB_Wrapper .rounded{ 
	-moz-border-radius: 2px; 
	-webkit-border-radius: 2px; 	
	-khtml-border-radius: 2px;
	border-radius: 2px;
}


/* For IE8 and older versions */
.TB_Wrapper .buttonShadow {
	z-index: 1;
	position: absolute;
	background-color: #000000;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=10);
}

.TB_Wrapper .buttonAlpha {
	z-index: 2;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=35);
}

.TB_Wrapper .buttonTopBot {
	z-index: 3;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 0px;
	height: 100%;
	filter: alpha(opacity=100);
}

.TB_Wrapper .buttonCent {
	z-index: 4;
	position: absolute;
	left: 0px;
	top: 1px;
	width: 100%;
	filter: alpha(opacity=100);
}
@media handheld, only screen and (max-width: 767px) {
.TB_Wrapper .Slide div {	
	font-size:12px;
	font-weight:normal;
}
}
/** Style settings of LayerSlider 4.0.1 - The Parallax Effect Slider** (c) 2011-2013 George Krupa, John Gera & Kreatura Media** web:http://kreaturamedia.com/* Facebook:http://facebook.com/kreaturamedia/* standalone version:http://kreaturamedia.com/codecanyon/plugins/layerslider/* WordPress version:http://wordpress.kreatura.hu/layersliderwp/* email:contact<AT>kreaturamedia<DOT>com** Licenses:** http://codecanyon.net/licenses/
*/
.ls-container{visibility: hidden;position: relative;border-bottom:2px solid #cfcfcf;}
.ls-container-fullscreen{width: 96% !important;}
.ls-overflow-hidden{overflow: hidden;}
.ls-inner{position: relative;background-position: center center;z-index: 2;}
.ls-loading-container{position: absolute !important;display: none;z-index: 3 !important;left: 50% !important;top: 50% !important;}
.ls-loading-indicator{margin: 0px auto;}
.ls-inner,
.ls-layer{width: 100%;height: 100%;}
.ls-layer{position: absolute;display: none;background-position:center center;overflow: hidden;}
.ls-active,
.ls-animating{display: block !important;}
.ls-layer > *{position: absolute;margin: 0px;left: 0px;top: 0px;}
.ls-layer .ls-bg{left: 50%;top: 50%;}
.ls-yourlogo{position: absolute;z-index: 99;}
/* Navigation */
.ls-bottom-nav-wrapper{height: 0px;}
.ls-bottom-slidebuttons{text-align: left;}
.ls-bottom-nav-wrapper,
.ls-below-thumbnails{z-index: 2;height: 0px;position: relative;text-align: center;margin: 0px auto;}
.ls-below-thumbnails{display: none;z-index: 6;}
.ls-bottom-nav-wrapper a,
.ls-nav-prev,
.ls-nav-next{outline: none;}
* .ls-bottom-nav-wrapper *,
* .ls-bottom-nav-wrapper span *{direction: ltr !important;}
.ls-bottom-slidebuttons{position: relative;z-index: 1000;}
.ls-bottom-slidebuttons,
.ls-nav-start,
.ls-nav-stop,
.ls-nav-sides{position: relative;}
.ls-link{position: absolute;width: 100% !important;height: 100% !important;left: 0px !important;top: 0px !important;}

/* Embedded videos */

.ls-vpcontainer{width: 100%;height: 100%;position: absolute;left: 0px;top: 0px;}
.ls-videopreview{width : 100%;height : 100%;position : absolute;left : 0px;top : 0px;cursor : pointer;}
.ls-playvideo{position: absolute;left: 50%;top: 50%;cursor: pointer;}

/* Thumbnails */

.ls-tn{display: none !important;}
.ls-thumbnail-hover{display: none;position: absolute;left: 0px;}
.ls-thumbnail-hover-inner{width: 100%;height: 100%;position: absolute;left: 0px;top: 0px;display: none;}
.ls-thumbnail-hover-bg{position: absolute;width: 100%;height: 100%;left: 0px;top: 0px;}
.ls-thumbnail-hover-img{position: absolute;overflow: hidden;}
.ls-thumbnail-hover img{max-width: none !important;position: absolute;display: inline-block;visibility: visible !important;left: 50%;top: 0px;}
.ls-thumbnail-hover span{left: 50%;top: 100%;width: 0px;height: 0px;display: block;position: absolute;border-left-color: transparent !important;border-right-color: transparent !important;border-bottom-color: transparent !important;}
.ls-thumbnail-wrapper{position: relative;width: 100%;margin: 0 auto;z-index: 4;}
.ls-thumbnail{position: relative;margin: 0 auto;}
.ls-thumbnail-inner,
.ls-thumbnail-slide-container{width: 100%;}
.ls-thumbnail-slide-container{overflow: hidden !important;position: relative;}
.ls-touchscroll{overflow-x: auto !important;}
.ls-thumbnail-slide{text-align: center;white-space: nowrap;float: left;position: relative;}
.ls-thumbnail-slide a{overflow: hidden;display: inline-block;width: 0px;height: 0px;position: relative;}
.ls-thumbnail-slide img{max-width: none !important;max-height: 100% !important;height: 100%;visibility: visible !important;}
.ls-shadow{display: none;position: absolute;z-index: 1;top: 100%;width: 100%;left: 0px;}
.ls-shadow img{width: 100%;height: 100%;position: absolute;left: 0px;top: 0px;display:none;}
.ls-bottom-nav-wrapper,
.ls-thumbnail-wrapper,
.ls-nav-prev,
.ls-nav-next{visibility: hidden;display:none;}
/* WP plugin fullWidth */
.ls-wp-fullwidth-container{width: 100%;position: relative;}
.ls-wp-fullwidth-helper{position: absolute;}
/* 2D & 3D Layer Transitions */
.ls-overflow-hidden{overflow: hidden;}
.ls-lt-tile{position: relative;overflow: hidden;float: left;}
.ls-curtile, .ls-nexttile{position: absolute;width: 100% !important;height: 100% !important;overflow: hidden;}
.ls-curtile{left: 0px;top: 0px;}
.ls-curtile img,
.ls-nexttile img{position: absolute;filter: inherit;}
.ls-3d-container{position: relative;perspective: 1000px;-o-perspective: 1000px;-ms-perspective: 1000px;-moz-perspective: 1000px;-webkit-perspective: 1000px;overflow: visible !important;}
.ls-3d-box{position: absolute;top: 50%;left: 50%;transform-style: preserve-3d;-o-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-webkit-transform-style: preserve-3d;}
.ls-3d-box div{overflow: hidden;background: #777;margin: 0px;padding: 0px;position: absolute;transform-style: preserve-3d;-o-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-webkit-transform-style: preserve-3d;}
/* Full screen */
.ls-fullscreen{position: absolute;z-index: 10;cursor: pointer;display: block;}
/* Removing all default global styles of WordPress themes */
html * .ls-nav-prev,
html * .ls-nav-next,
html * .ls-container img,
html * .ls-bottom-nav-wrapper a,
html * .ls-container .ls-fullscreen,
body * .ls-nav-prev,
body * .ls-nav-next,
body * .ls-container img,
body * .ls-bottom-nav-wrapper a,
body * .ls-container .ls-fullscreen,
#ls-global * .ls-nav-prev,
#ls-global * .ls-nav-next,
#ls-global * .ls-container img,
#ls-global * .ls-bottom-nav-wrapper a,
#ls-global * .ls-container .ls-fullscreen{transition: none;-o-transition: none;-ms-transition: none;-moz-transition: none;-webkit-transition: none;line-height: normal;outline: none;padding: 0px;border: 0px;}
html * .ls-thumbnail a,
body * .ls-thumbnail a,
#ls-global * .ls-thumbnail a{transition: none;-o-transition: none;-ms-transition: none;-moz-transition: none;-webkit-transition: none;line-height: normal;outline: none;padding: 0px;border: 0px;}
html * .ls-container img,
body * .ls-container img,
#ls-global * .ls-container img{background: none !important;min-width: 0 !important;max-width: none !important;border-radius: 0px;box-shadow: none;border: 0px;padding: 0px;}
html * .ls-wp-container .ls-layer > *,
body * .ls-wp-container .ls-layer > *,
#ls-global * .ls-wp-container .ls-layer > *{line-height: normal;outline: none;padding: 0px;margin: 0px;border: 0px;}
.ls-wp-fullwidth-container,
.ls-wp-fullwidth-helper,
.ls-container,
.ls-container *{box-sizing: content-box !important;-moz-box-sizing: content-box !important;-webkit-box-sizing: content-box !important;}
html * .ls-yourlogo,
body * .ls-yourlogo,
#ls-global * .ls-yourlogo{margin: 0px;}
html * .ls-tn,
body * .ls-tn,
#ls-global * .ls-tn{display: none;}
.site{overflow: visible !important;}
/* Style of LayerSlider Debug Console */
.ls-debug-console *{margin: 0px !important;padding: 0px !important;border: 0px !important;color: white !important;text-shadow: none !important;font-family: "HelveticaNeue-Light", "Helvetica Neue Light", Helvetica, Arial, sans-serif !important;line-height: normal !important;-webkit-font-smoothing: antialiased !important;text-align: left !important;font-style: normal !important;}
.ls-debug-console h1{padding-top: 10px !important;font-size: 17px !important;font-weight: bold !important;}
.ls-debug-console h1:first-child{padding-top: 0px !important;}
.ls-debug-console ul{padding-top: 10px !important;list-style: none !important;}
.ls-debug-console li{margin-left: 10px !important;font-size: 13px !important;position: relative !important;font-weight: normal !important;}
html * .ls-debug-console li ul,
body * .ls-debug-console li ul,
#ls-global * .ls-debug-console li ul{display: none;width: 260px;left: -10px;}
.ls-debug-console li ul{position: absolute !important;bottom: 100% !important;padding: 10px 10px 10px 0px !important;background: white !important;border-radius: 10px !important;box-shadow: 0px 0px 20px black !important;}
html * .ls-debug-console li:hover ul,
body * .ls-debug-console li:hover ul,

#ls-global * .ls-debug-console li:hover ul{display: block;}
.ls-debug-console li ul *{color: black !important;}
.ls-debug-console a{text-decoration: none !important;border-bottom: 1px dotted white !important;}
.ls-error{border-radius: 5px !important;-moz-border-radius: 5px !important;-wenkit-border-radius: 5px !important;background: white !important;height: auto !important;width: auto !important;color: white !important;padding: 20px 40px 30px 80px !important;position: relative !important;box-shadow: 0px 2px 20px -5px black;}
.ls-error p{line-height: normal !important;text-shadow: none !important;margin: 0px !important;padding: 0px !important;border: 0px !important;text-align: justify !important;font-family: Arial, sans-serif !important;}
.ls-error .ls-error-title{line-height: 40px !important;color: red !important;font-weight: bold !important;font-size: 16px !important;}
.ls-error .ls-error-text{color: #555 !important;font-weight: normal !important;font-size: 13px !important;}
.ls-error .ls-exclam{width: 40px !important;height: 40px !important;position: absolute !important;left: 20px !important;top: 20px !important;border-radius: 50px !important;-moz-border-radius: 50px !important;-webkit-border-radius: 50px !important;font-size: 30px !important;font-weight: bold !important;color: white !important;line-height: 40px !important;background: red !important;text-align: center !important;}
/* GPU Hardware Acceleration */
html * .ls-container .ls-shadow,
html * .ls-container .ls-layer > *,
html * .ls-container .ls-fullscreen,
html * .ls-container .ls-webkit-hack,
html * .ls-container .ls-3d-container,
html * .ls-container .ls-lt-container,
html * .ls-container .ls-lt-container *,
html * .ls-container .ls-thumbnail-wrapper,
html * .ls-container .ls-bottom-nav-wrapper,
body * .ls-container .ls-shadow,
body * .ls-container .ls-layer > *,
body * .ls-container .ls-fullscreen,
body * .ls-container .ls-webkit-hack,
body * .ls-container .ls-3d-container,
body * .ls-container .ls-lt-container,
body * .ls-container .ls-lt-container *,
body * .ls-container .ls-thumbnail-wrapper,
body * .ls-container .ls-bottom-nav-wrapper,
#ls-global * .ls-container .ls-shadow,
#ls-global * .ls-container .ls-layer > *,
#ls-global * .ls-container .ls-fullscreen,
#ls-global * .ls-container .ls-webkit-hack,
#ls-global * .ls-container .ls-3d-container,
#ls-global * .ls-container .ls-lt-container,
#ls-global * .ls-container .ls-lt-container *,
#ls-global * .ls-container .ls-thumbnail-wrapper,
#ls-global * .ls-container .ls-bottom-nav-wrapper{backface-visibility: hidden;-moz-backface-visibility: hidden;-webkit-backface-visibility: hidden;transform: translateZ(0px);-o-transform: translateZ(0px);-ms-transform: translateZ(0px);-moz-transform: translateZ(0px);-webkit-transform: translateZ(0px);}
html * .ls-container .ls-webkit-hack,
body * .ls-container .ls-webkit-hack,
#ls-global * .ls-container .ls-webkit-hack{width: 100%;height: 100%;position: absolute;left: 0px;top: 0px;z-index: 1;}
/*--------- Layerslider Style ----------*/
.banner_button{background:#ed7d67; padding:12px 20px; border-radius:4px; color:#fff!important; text-shadow:1px 0 rgba(0,0,0,0.5); box-shadow:1px 1px 1px 1px rgba(0,0,0,0.2);}
.banner_button2{background:#ed7d67; padding:15px 20px; color:#fff;}
.ls-h3{margin:10px 0;}
.ls-h2{color:#ed7d67;}
.ls-h3 span{background:#ed7d67;}
/* GPU */

/*--------- Layerslider Style ----------*/
.banner_button { background:#ed7d67; padding:12px 20px;  color:#fff!important; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-border-radius: 3px; border:1px solid #fff;text-decoration : none; font-size:15px; }
#icon_bg{width:58px;height:58px;background:#000;border:solid 1px #000;}
.banner_title{text-align:center;font-size:50px!important;color:#fff!important;}
.banner_name{font-size:40px!important;color:#000!important;}
.banner_text{text-align:center;font-size:20px!important;color:#fff!important;line-height:25px;}
.banner_heading{widht:300px; height:70px;line-height:50px;text-align:right;font-size:33px; color:#000; font-weight:normal;background:none!important;font-weight:bold;letter-spacing:-2px}

@media (transform-3d), (-o-transform-3d), (-ms-transform-3d), (-moz-transform-3d), (-webkit-transform-3d){#ls-test3d{position: absolute;left: 9px;height: 3px;}}
.layer_position{position:absolute;}

@media handheld, only screen and (max-width: 1140px){
/*--------- Layerslider Style ----------*/
.banner_title{text-align:center;font-size:28px!important;color:#fff!important;}
.banner_text{text-align:center;font-size:12px!important;color:#fff!important;}
.banner_heading{font-size:18px; letter-spacing:0;line-height:60px;}
.banner_name{font-size:20px!important;}
}

@media handheld, only screen and (max-width: 767px) {
.banner_title{text-align:center;font-size:18px!important;color:#fff!important;}
.banner_text{display:none;}
.banner_button{display:none;}
.banner_heading{display:block;font-size:12px; padding-left:10px; }
.banner_name{font-size:16px!important;}
.display_none{display:none!important;}
}
/*
 * jQuery FlexSlider v1.8
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* Browser Resets */
.flex-container a,
.flexslider a,
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

.flexslider ul, .flexslider li, flexslider ul li  {list-style:none; padding:0; margin:0;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block; margin:0 auto;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider {background:none; position: relative;zoom: 1;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
/* IE rgba() hack */
.flex-caption {width:auto; max-width:40%; overflow:hidden; margin: 0; position: absolute; left:50px; top:50px; background: none; color:#fff; font-size: 14px; font-family: Arial, Tahoma, Helvetica, Verdana, sans-serif; font-weight:normal;}
.flex-caption p, .flex-caption h1, .flex-caption h2, .flex-caption h3, .flex-caption h4, .flex-caption h5, .flex-caption h6, .flex-caption span{ color:#fff!important;}
.flex-caption p{ line-height:1.5em;}

.flex-caption2 {width:auto; max-width:40%; overflow:hidden; margin: 0; position: absolute; right:50px; top:50px; background: none; color:#fff; font-size: 14px; font-family: Arial, Tahoma, Helvetica, Verdana, sans-serif; font-weight:normal;}
.flex-caption2 p, .flex-caption2 h1, .flex-caption2 h2, .flex-caption2 h3, .flex-caption2 h4, .flex-caption2 h5, .flex-caption2 h6, .flex-caption2 span{ color:#fff;}
.flex-caption2 p{ line-height:1.5em;}

.readmore_box_banner{ padding-top:15%; min-height:50px;}
.readmore_box_banner span{ margin:0 7px;}
.readmore_box_banner .readmore_banner01 { padding:8px 14px;  border:2px solid #fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;  color:#fff;opacity:0.8;  }
.readmore_box_banner .readmore_banner01:hover{ color:#fff;opacity:1;}
.readmore_box_banner .readmore_banner02 { padding:8px 14px;  border:2px solid #fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; color:#fff;opacity:0.8;  }
.readmore_box_banner .readmore_banner02:hover{ color:#fff;opacity:1;}
/* Direction Nav */
.flex-direction-nav { height: 0; }
.flex-direction-nav a {width:40px; height:40px; margin:0; display: block; background:url("/Portals/_default/Skins/Clear-LightCoral/images/bg_direction_nav.png") no-repeat; position: absolute; top: 42%; cursor: pointer; text-indent: -999em; opacity:0; filter: alpha(opacity=0);}
.flex-direction-nav .flex-next {background-position: -150px 0; right:5px;}
.flex-direction-nav .flex-next:hover{background-position: -150px -75px; right:5px;}
.flex-direction-nav .flex-prev {left:5px;}
.flex-direction-nav .flex-prev:hover{background-position: 0 -75px;}
.flexslider:hover .flex-next {opacity: 1; filter: alpha(opacity=100); right:5px;}
.flexslider:hover .flex-prev {opacity: 1; filter: alpha(opacity=100); left:5px;}
.flex-direction-nav .flex-disabled,
.flex-direction-nav .disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -20px; text-align: center;}
.flex-control-nav li {margin: 0 0 0 3px; display: inline-block; zoom:1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav a {width: 17px; height: 13px; display: block; background: url("/Portals/_default/Skins/Clear-LightCoral/images/bg_control_nav.png") no-repeat; cursor: pointer; text-indent: -999em;}
.flex-control-nav a:hover {background-position: 0 -13px;}
.flex-control-nav a.flex-active {background-position: 0 -26px; cursor: default;}

/* 
  *
  FlexSlider2 - Fade Picture 
  *
*/
/* Browser Resets */
.flexslider2 a, .flexslider2 a:active, .flexslider2 a:focus  {outline: none;}
.flexslider2 ul, .flexslider2 li, flexslider ul li  {list-style:none; padding:0; margin:0;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider2 {margin: 0; padding: 0;}
.flexslider2 .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider2 .slides img {max-width: 100%; display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider2 {background:none; position: relative;zoom: 1;}
.flexslider2 .slides {zoom: 1;}
.flexslider2 .slides > li {position: relative;}

/* Direction Nav */
.flexslider2:hover .flex-next {opacity: 1; filter: alpha(opacity=100); right:5px;}
.flexslider2:hover .flex-prev {opacity: 1; filter: alpha(opacity=100); left:5px;}



@media handheld, only screen and (max-width: 1140px) {
.flex-caption { font-size: 12px; font-weight:normal; left:30px; top:20px;}
.flex-caption h1 { font-size:24px;}
.flex-caption h2 { font-size:20px;}
.flex-caption h3 { font-size:16px;}

.flex-caption2 { font-size: 12px; font-weight:normal; right:30px; top:20px;}
.flex-caption2 h1 { font-size:24px;}
.flex-caption2 h2 { font-size:20px;}
.flex-caption2 h3 { font-size:16px;}

}

@media handheld, only screen and (max-width: 767px) {
.flex-caption { left:10px; top:40px; }
.flex-caption h1 { font-size:16px;}
.flex-caption h2 { font-size:15px;}
.flex-caption h3 { font-size:14px;}
.flex-caption p { font-size: 11px; }
.flex-caption .mobile_hidden { display:none; }
.readmore_box_banner span{ margin:0 5px ;}

.flex-caption2 { right:10px; top:40px; }
.flex-caption2 h1 { font-size:16px;}
.flex-caption2 h2 { font-size:15px;}
.flex-caption2 h3 { font-size:14px;}
.flex-caption2 p { font-size: 11px; }
.flex-caption2 .mobile_hidden { display:none; }
.flex-caption2 { font-size:12px;}

}
@media handheld, only screen and (max-width: 535px) {

.readmore_box_banner .readmore_banner02{ display:none;}
}

@media handheld, only screen and (max-width: 479px) {
.flex-caption { left:5px; top:5px; }
.flex-caption h1 { font-size:12px;}
.flex-caption h2 { font-size:12px;}
.flex-caption h3 { font-size:12px;}

.flex-caption2 { right:5px; top:5px; }
.flex-caption2 h1 { font-size:12px;}
.flex-caption2 h2 { font-size:12px;}
.flex-caption2 h3 { font-size:12px;}
}
@media handheld, only screen and (max-width: 420px) {
.flex-caption p { display:none; }
.flex-caption2 p { display:none; }
}
.colorpicker {
	width: 356px;
	height: 176px;
	overflow: hidden;
	position: absolute;
	background: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_background.png");
	font-family: Arial, Helvetica, sans-serif;
	display: none;
	z-index: 99999;
	margin-left: 150px;
}
.colorpicker_color {
	width: 150px;
	height: 150px;
	left: 14px;
	top: 13px;
	position: absolute;
	background: #f00;
	overflow: hidden;
	cursor: crosshair;
}
.colorpicker_color div {
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	background: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/colorpicker_overlay.png");
}
.colorpicker_color div div {
	position: absolute;
	top: 0;
	left: 0;
	width: 11px;
	height: 11px;
	overflow: hidden;
	background: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/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("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_indic.gif") left top;
	margin: -4px 0 0 0;
	left: 0px;
}
.colorpicker_new_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 213px;
	top: 13px;
	background: #f00;
}
.colorpicker_current_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 283px;
	top: 13px;
	background: #f00;
}
.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("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_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("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_rgb_r.png");
	top: 52px;
	left: 212px;
}
.colorpicker_rgb_g {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_rgb_g.png");
	top: 82px;
	left: 212px;
}
.colorpicker_rgb_b {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_rgb_b.png");
	top: 112px;
	left: 212px;
}
.colorpicker_hsb_h {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_hsb_h.png");
	top: 52px;
	left: 282px;
}
.colorpicker_hsb_s {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_hsb_s.png");
	top: 82px;
	left: 282px;
}
.colorpicker_hsb_b {
	background-image: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_hsb_b.png");
	top: 112px;
	left: 282px;
}
.colorpicker_submit {
	position: absolute;
	width: 22px;
	height: 22px;
	background: url("/Portals/_default/Skins/Clear-LightCoral/js/colorpicker/images/custom_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;
}
@import url("http://fonts.googleapis.com/css?family=Oswald");
@import url("http://fonts.googleapis.com/css?family=Noto+Sans");
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2013 By BESTDNNSKINS.COM
 */
/*--------- Global CSS Reset & Standards ----------*/
Body { margin:0;padding:0; background:#ffffff; }
#Body{ background:url("/Portals/_default/Skins/Clear-LightCoral/images/bg_pattern/bg_grid_01.png") fixed center top #e5e5e5;color:#555; }
html,body{ margin:0; padding:0; font:normal 12px/1.5 'Noto Sans',Arial, Tahoma, sans-serif; color:#555;}
Body #Form{ height:100%; }
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 {border:0; font-family:'Noto Sans',Arial, Tahoma, sans-serif;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}a img{border:0;}
img, object, embed { max-width: 100%;}
[class^="map"] img, [class*="map"] img,[id^="map"] img, [id*="map"] img, [class^="Map"] img, [class*="Map"] img,[id^="Map"] img, [id*="Map"] img { max-width:none!important;}
img { height: auto;}
p{ margin:0 0 8px 0; }
ol, ul {list-style: none;}
ol li { list-style-type: decimal;}
li,ul li{ list-style:none; }
a{outline:0;border:0;}
img{border:0;}

A:link { color :#ed7d67; text-decoration : none; }
A:visited { color :#ed7d67; text-decoration : none; }
A:hover { color :#555; text-decoration:none;  -moz-transition:color 0.2s linear;  -webkit-transition:color 0.2s linear; -o-transition:color 0.2s linear; -ms-transition:color 0.2s linear; transition:color 0.2s linear; }
A:active { color :#ed7d67; text-decoration : none; }
.color_text { color:#ed7d67; }
.color_bg{ background:#ed7d67; }

h1{font-size:28px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}
h2{font-size:24px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}
h3{font-size:20px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}
h4{font-size:18px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}
h5{font-size:16px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}
h6{font-size:14px;line-height:1.5em;letter-spacing:0;color:#ed7d67;font-weight:normal;font-family:'Oswald',Arial, Tahoma, sans-serif;}

.Head{ font-weight:bold; font-size:15px; }
.SubHead { font-weight:bold;  font-size:14px; }
.SubSubHead{ font-size:13px; }
.Normal { font-size:12px; line-height:1.5em; }

/*spacer styles*/
.pe-spacer { clear: both; display: block; margin: 0; min-height: 0 !important;  padding: 0; width: 100%;}
.pe-spacer.size10 { height: 10px;}
.pe-spacer.size20 { height: 20px;}
.pe-spacer.size30 { height: 30px;}
.pe-spacer.size40 { height: 40px;}
.pe-spacer.size50 { height: 50px;}
.pe-spacer.size60 { height: 60px;}
.pe-spacer.size70 { height: 70px;}
.pe-spacer.size80 { height: 80px;}
.pe-spacer.size90 { height: 90px;}
.pe-spacer.size100 { height: 100px;}

/*border styles*/
.left_border{ border-left:1px solid #e9e9e9;}
.right_border{ border-right:1px solid #e9e9e9;}
.top_border{ border-top:1px solid #e9e9e9;}
.bottom_border{ border-bottom:1px solid #e9e9e9;}

/*clear float*/
.clearafter:after{ clear:both; content:"."; height:0px; font-size:0px; visibility:hidden; display:block; }
.clearafter{ display:inline-block; }
.clearafter{ display:block; }
.clear{ clear:both; }
.clear_float{ clear:both;line-height:0;font-size:0;}

/*--------- ControlPanel style ----------*/
.FileManager A:active{ color:#000000; text-decoration: underline;}
.FileManager A:hover{ color:#000000; text-decoration:none;}
.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction, a.dnnPrimaryAction:link { color: #FFFFFF; text-decoration : none;}
.dnnActionMenu span { color:#000000!important;}
.ModuleTitle_SubMenu{ z-index:9999!important; }	
.DnnModule{z-index:inherit;}

/*--------- Breadcrumb style ----------*/
.Breadcrumb, A.Breadcrumb:link, A.Breadcrumb:visited, A.Breadcrumb:active { color:#444;; font-size:12px; text-decoration:none; }
A.Breadcrumb:hover  { color:#ed7d67; text-decoration:none; }

/*--------- Login style ----------*/
.Login, A.Login:link, A.Login:visited, A.Login:active{  background:none; padding:2px 0 10px 0; font-size:12px; color:#fff; text-decoration:none; }
A.Login:hover { color:#ccc; text-decoration:none; }

/*--------- User style ----------*/
.User, A.User:link, A.User:visited, A.User:active{ background:none; padding:2px 5px 2px 0; font-size:12px; color:#fff; text-decoration:none;}
A.User:hover { color:#ccc; text-decoration:none; }
.User:after {padding-left:5px;}

/*--------- Footer style ----------*/
.Footer, A.Footer:link, A.Footer:visited, A.Footer:active { padding:0px 5px; color:#fff; font-size:13px; text-decoration:none; }
A.Footer:hover { color:#ccc; text-decoration: none;}

/*--------- Social-Links ----------*/
.socialicons  { margin:10px 0 0;}
.iconFacebook{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat 0 0;display:inline-block; padding:0;margin:0 1px;}
.iconPinterest{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -29px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTwitter{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -58px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGoogle{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -87px 0;display:inline-block; padding:0;margin:0 1px;}
.iconRss{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -116px 0;display:inline-block; padding:0;margin:0 1px;}
.iconVimeo{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -145px 0;display:inline-block; padding:0;margin:0 1px;}
.iconEvernote{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -174px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDribbble{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -203px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTumblr{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -232px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBehance{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -261px 0;display:inline-block; padding:0;margin:0 1px;}
.iconStumbleUpon{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -290px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDropbox{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -319px 0;display:inline-block; padding:0;margin:0 1px;}
.iconSoundCloud{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -348px 0;display:inline-block; padding:0;margin:0 1px;}
.iconPicasa{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -377px 0;display:inline-block; padding:0;margin:0 1px;}
.iconLastfm{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -406px 0;display:inline-block; padding:0;margin:0 1px;}
.iconForrst{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -435px 0;display:inline-block; padding:0;margin:0 1px;}
.iconFlicr{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -464px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDeviantArt{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -493px 0;display:inline-block; padding:0;margin:0 1px;}
.iconLinkedIn{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -522px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBlogger{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -551px 0;display:inline-block; padding:0;margin:0 1px;}
.iconInstagram{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -580px 0;display:inline-block; padding:0;margin:0 1px;}
.iconYahoo{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -609px 0;display:inline-block; padding:0;margin:0 1px;}
.iconYouTube{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -638px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGrooveshark{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -667px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDigg{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -696px 0;display:inline-block; padding:0;margin:0 1px;}
.iconSkype{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -725px 0;display:inline-block; padding:0;margin:0 1px;}
.iconShareThis{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -754px 0;display:inline-block; padding:0;margin:0 1px;}
.iconWordPress{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -783px 0;display:inline-block; padding:0;margin:0 1px;}
.iconKickstarter{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -812px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBebo{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -841px 0;display:inline-block; padding:0;margin:0 1px;}
.iconZerply{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -870px 0;display:inline-block; padding:0;margin:0 1px;}
.iconAmazon{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -899px 0;display:inline-block; padding:0;margin:0 1px;}
.iconMyspace{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -928px 0;display:inline-block; padding:0;margin:0 1px;}
.iconWikipedia{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -957px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTechnorati{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -986px 0;display:inline-block; padding:0;margin:0 1px;}
.iconAddThis{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -1015px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDelicious{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -1044px 0;display:inline-block; padding:0;margin:0 1px;}
.iconXing{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -1073px 0;display:inline-block; padding:0;margin:0 1px;}
.iconQuora{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -1102px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGitHub{width:28px;height:28px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons.png") no-repeat -1131px 0;display:inline-block; padding:0;margin:0 1px;}

/*--------- Social-Links Hover ---------*/
a.iconFacebook:hover{ background-color:#5d82d1;background-position: 0 -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconPinterest:hover{ background-color:#e13138;background-position: -29px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTwitter:hover{ background-color:#40bff5;background-position: -58px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGoogle:hover{ background-color:#eb5e4c;background-position: -87px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconRss:hover{ background-color:#faa33d;background-position: -116px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconVimeo:hover{ background-color:#35c6ea;background-position: -145px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconEvernote:hover{ background-color:#9acf4f;background-position: -174px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDribbble:hover{ background-color:#f7659c;background-position: -203px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTumblr:hover{ background-color:#426d9b;background-position: -232px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBehance:hover{ background-color:#1879fd;background-position: -261px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconStumbleUpon:hover{ background-color:#ff5c30;background-position: -290px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDropbox:hover{ background-color:#17a3eb;background-position: -319px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconSoundCloud:hover{ background-color:#ff7e30;background-position: -348px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconPicasa:hover{ background-color:#9eb5b6;background-position: -377px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconLastfm:hover{ background-color:#f34320;background-position: -406px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconForrst:hover{ background-color:#45ad76;background-position: -435px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconFlicr:hover{ background-color:#ff48a3;background-position: -464px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDeviantArt:hover{ background-color:#6a8a7b;background-position: -493px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconLinkedIn:hover{ background-color:#238cc8;background-position: -522px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBlogger:hover{ background-color:#ff9233;background-position: -551px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconInstagram:hover{ background-color:#548bb6;background-position: -580px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconYahoo:hover{ background-color:#ab47ac;background-position: -609px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconYouTube:hover{ background-color:#ef4e41;background-position: -638px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGrooveshark:hover{ background-color:#ffb21d;background-position: -667px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDigg:hover{ background-color:#75788d;background-position: -696px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconSkype:hover{ background-color:#13c1f3;background-position: -725px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconShareThis:hover{ background-color:#25a774;background-position: -754px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconWordPress:hover{ background-color:#2592c3;background-position: -783px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconKickstarter:hover{ background-color:#8cd049;background-position: -812px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBebo:hover{ background-color:#ee3849;background-position: -841px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconZerply:hover{ background-color:#ff5c30;background-position: -870px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconAmazon:hover{ background-color:#ff5c30;background-position: -899px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconMyspace:hover{ background-color:#ff5c30;background-position: -928px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconWikipedia:hover{ background-color:#ff5c30;background-position: -957px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTechnorati:hover{ background-color:#ff5c30;background-position: -986px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconAddThis:hover{ background-color:#ff5c30;background-position: -1015px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDelicious:hover{ background-color:#ff5c30;background-position: -1044px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconXing:hover{ background-color:#ff5c30;background-position: -1073px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconQuora:hover{ background-color:#ff5c30;background-position: -1102px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGitHub:hover{ background-color:#ff5c30;background-position: -1131px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}

/*--------- Social-Links2 ----------*/
.socialicons2{  padding-top:20px;}
.socialicons2 a{margin:5px 8px 0 0;padding:0;}

.iconSkype2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicon2.png") no-repeat -10px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconLast_fm2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconFacebook2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconWordpress2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconVimeo_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRSS2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRevision2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRdio2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -10px;display:inline-block;padding:0;margin:0 3px;}

.iconEvernote2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconEmber2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconDropbox2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconAim2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -43px;display:inline-block;padding:0;margin:0 3px;}
.icon500px_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -43px;display:inline-block;padding:0;margin:0 3px;}
.icon500px2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconWikipedia2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconVkontakte2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -43px;display:inline-block;padding:0;margin:0 3px;}

.iconTechnorati2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconStumbleupon2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSquarespace2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSpotify2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSoundcloud2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSkype_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconPinterest2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconPicasa2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -76px;display:inline-block;padding:0;margin:0 3px;}

.iconMail_ru2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconMail2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconLinkedin_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconLinkedin2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGowalla2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle_alt_22{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -109px;display:inline-block;padding:0;margin:0 3px;}

.iconFormspring2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconFlickr2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDribbble2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDigg2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDeviantart_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDeviantart2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDesignmoo2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDelicious2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -142px;display:inline-block;padding:0;margin:0 3px;}

.iconYoutube2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconYahoo2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconWordpress_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconGrooveshark2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconTumblr2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconMyspace2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconForrst2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconAsk_fm2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -175px;display:inline-block;padding:0;margin:0 3px;}

.iconInstagram_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconInstagram2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconVimeo2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -76px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconTwitter2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -109px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconMyspace_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -142px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconPaypal2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -175px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconGmail2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -208px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconFoursquare2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -241px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconBlogger2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -10px -241px;display:inline-block;padding:0;margin:0 3px;}
.iconBehance2{width:30px;height:30px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons2.png") no-repeat -43px -241px;display:inline-block;padding:0;margin:0 3px;}

/*--------- Social-Links3 ----------*/
.socialicons3 {  padding-top:10px;}
.socialicons3 a{margin:0;padding:5px 8px 0 0;}

.iconFacebook3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -4px;display:inline-block; padding:0;margin:0;}
.iconPinterest3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -4px;display:inline-block; padding:0;margin:0;}
.iconTwitter3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -4px;display:inline-block; padding:0;margin:0;}
.iconGoogle3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -4px;display:inline-block; padding:0;margin:0;}
.iconRss3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -4px;display:inline-block; padding:0;margin:0;}

.iconVimeo3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -45px;display:inline-block;padding:0;margin:0;}
.iconEvernote3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -45px;display:inline-block;padding:0;margin:0;}
.iconDribbble3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -45px;display:inline-block;padding:0;margin:0;}
.iconTumblr3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -45px;display:inline-block;padding:0;margin:0;}
.iconBehance3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -45px;display:inline-block;padding:0;margin:0;}
 
.iconStumbleUpon3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -86px;display:inline-block;padding:0;margin:0;}
.iconDropbox3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -86px;display:inline-block;padding:0;margin:0;}
.iconSoundCloud3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -86px;display:inline-block;padding:0;margin:0;}
.iconPicasa3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -86px;display:inline-block;padding:0;margin:0;}
.iconLastfm3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -86px;display:inline-block;padding:0;margin:0;}

.iconForrst3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -128px;display:inline-block; padding:0;margin:0;}
.iconFlicr3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -128px;display:inline-block; padding:0;margin:0;}
.iconDeviantArt3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -128px;display:inline-block; padding:0;margin:0;}
.iconLinkedIn3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -128px;display:inline-block; padding:0;margin:0;}
.iconBlogger3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -128px;display:inline-block; padding:0;margin:0;}

.iconInstagram3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -169px;display:inline-block;padding:0;margin:0;}
.iconYahoo3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -169px;display:inline-block;padding:0;margin:0;}
.iconYouTube3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -169px;display:inline-block;padding:0;margin:0;}
.iconGrooveshark3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -169px;display:inline-block;padding:0;margin:0;}
.iconDigg3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -169px;display:inline-block;padding:0;margin:0;}

.iconSkype3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -211px;display:inline-block;padding:0;margin:0;}
.iconShareThis3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -211px;display:inline-block;padding:0;margin:0;}
.iconWordPress3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -211px;display:inline-block;padding:0;margin:0;}
.iconKickstarter3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -211px;display:inline-block;padding:0;margin:0;}
.iconBebo3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -211px;display:inline-block;padding:0;margin:0;}

.iconZerply3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -252px;display:inline-block; padding:0;margin:0;}
.iconAmazon3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -252px;display:inline-block; padding:0;margin:0;}
.iconMyspace3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -252px;display:inline-block; padding:0;margin:0;}
.iconWikipedia3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -252px;display:inline-block; padding:0;margin:0;}
.iconTechnorati3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -252px;display:inline-block; padding:0;margin:0;}

.iconAddThis3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -5px -293px;display:inline-block;padding:0;margin:0;}
.iconDelicious3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -46px -293px;display:inline-block;padding:0;margin:0;}
.iconXing3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -87px -293px;display:inline-block;padding:0;margin:0;}
.iconQuora3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -128px -293px;display:inline-block;padding:0;margin:0;}
.iconGitHub3{width:28px;height:29px;background:url("/Portals/_default/Skins/Clear-LightCoral/images/socialicons3.png") no-repeat -169px -293px;display:inline-block;padding:0;margin:0;}

/*--------- Accordion Style ----------*/
.ui-accordion .ui-accordion-header { border-bottom:solid 1px #ccc; cursor: pointer;margin-top:2px; display: block;min-height: 0;padding:3px 10px 0 34px;position: relative; font-size:13px;line-height:31px;}
.footerpane_style .ui-accordion .ui-accordion-header{ border-bottom:solid 1px #444; }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { background: url("/Portals/_default/Skins/Clear-LightCoral/images/accordion-buttons.png") no-repeat 2px 8px ;font-weight:normal;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: url("/Portals/_default/Skins/Clear-LightCoral/images/accordion-buttons.png") no-repeat 2px -82px ; font-weight:normal;  }
.ui-helper-reset { font-size: 100%;line-height:25px;list-style: none outside none;margin: 0;outline: 0 none;padding: 0;text-decoration: none;}
.accordion2 p { font-size: 100%;line-height:20px;list-style: none outside none;margin: 0;outline: 0 none;padding:0;text-decoration: none;}
.accordion2 > h3{color:#171717;font-size:15px!important;}
.ui-accordion .ui-accordion-content {overflow: auto;padding: 10px 15px 5px 22px;}

/*---------Footer Fancybox Style ----------*/
.fancybox_style { margin:0; padding:0;}
.fancybox_style ul { list-style:none; margin:0; padding:0;}
.fancybox_style ul li { list-style:none; margin:3px; float:left; position:relative; }
.fancybox_style ul li img { border:2px solid #fff;  filter:Alpha(Opacity=80);opacity:0.8;}
.fancybox_style ul li a { position:relative; display:block;}
.fancybox_style ul li img:hover{ filter:Alpha(Opacity=100);opacity:1;-moz-transition: all 0.3s ease-in-out 0s;-webkit-transition: all 0.3s ease-in-out 0s;transition: all 0.3s ease-in-out 0s;}
/*!
 *  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";

/* latin-ext */
@font-face {
  font-family: "BenchNine";
  font-style: normal;
  font-weight: 400;
  src: local("BenchNine Regular"), local("BenchNine-Regular"), url("https://fonts.gstatic.com/s/benchnine/v5/AVs3lMmyGvSpQmMt6DeeRhJtnKITppOI_IvcXXDNrsc.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: "BenchNine";
  font-style: normal;
  font-weight: 400;
  src: local("BenchNine Regular"), local("BenchNine-Regular"), url("https://fonts.gstatic.com/s/benchnine/v5/xmB9oJNpSFKa3qTF2JABPltXRa8TVwTICgirnJhmVJw.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;
}
/* latin-ext */
@font-face {
  font-family: "BenchNine";
  font-style: normal;
  font-weight: 700;
  src: local("BenchNine Bold"), local("BenchNine-Bold"), url("https://fonts.gstatic.com/s/benchnine/v5/qZpi6ZVZg3L2RL_xoBLxWT0LW-43aMEzIO6XUTLjad8.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: "BenchNine";
  font-style: normal;
  font-weight: 700;
  src: local("BenchNine Bold"), local("BenchNine-Bold"), url("https://fonts.gstatic.com/s/benchnine/v5/qZpi6ZVZg3L2RL_xoBLxWegdm0LZdjqr5-oayXSOefg.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 Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37ZjTOQ_MqJVwkKsUn0wKzc2I.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37ZjUj_cnvWIuuBMVgbX098Mw.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37ZkbcKLIaa1LC45dFaAfauRA.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zmo_sUJ8uO4YLWRInS22T3Y.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zr6up8jxqWt8HVA3mDhkV_0.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37ZiYE0-AqJ3nfInTTiDXDjU4.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 Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zo4P5ICox8Kq3LLUNMylGO4.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 Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ6iIh_FvlUHQwED9Yt5Kbw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJS_vZmeiCMnoWNN9rHBYaTc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJSFaMxiho_5XQnyRZzQsrZs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJQalQocB-__pDVGhF3uS2Ks.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJWhQUTDJGru-0vvUpABgH8I.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJejkDdvhIIFj_YMdgqpnSB0.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 Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJYlIZu-HDpmDIZMigmsroc4.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: "BenchNine";
  font-style: normal;
  font-weight: 400;
  src: local("BenchNine Regular"), local("BenchNine-Regular"), url("https://fonts.gstatic.com/s/benchnine/v5/AVs3lMmyGvSpQmMt6DeeRltXRa8TVwTICgirnJhmVJw.woff2") format("woff2");
}
@font-face {
  font-family: "BenchNine";
  font-style: normal;
  font-weight: 700;
  src: local("BenchNine Bold"), local("BenchNine-Bold"), url("https://fonts.gstatic.com/s/benchnine/v5/qZpi6ZVZg3L2RL_xoBLxWRUOjZSKWg4xBWp_C_qQx0o.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zqg5eI2G47JWe0-AuFtD150.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJasA81DAeuqoeYxDcSOJPMY.woff2") format("woff2");
}
@font-face {
  font-family: "BenchNine";
  font-style: normal;
  font-weight: 400;
  src: local("BenchNine Regular"), local("BenchNine-Regular"), url("https://fonts.gstatic.com/s/benchnine/v5/AVs3lMmyGvSpQmMt6DeeRj8E0i7KZn-EPnyo3HZu7kw.woff") format("woff");
}
@font-face {
  font-family: "BenchNine";
  font-style: normal;
  font-weight: 700;
  src: local("BenchNine Bold"), local("BenchNine-Bold"), url("https://fonts.gstatic.com/s/benchnine/v5/qZpi6ZVZg3L2RL_xoBLxWRa1RVmPjeKy21_GQJaLlJI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Slab Regular"), local("RobotoSlab-Regular"), url("https://fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37ZtIh4imgI8P11RFo6YPCPC0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Slab Bold"), local("RobotoSlab-Bold"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJYUt79146ZFaIJxILcpzmhI.woff") format("woff");
}
.eds_news_Vision .EDN_clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.eds_news_Vision * {
  box-sizing: content-box;
}
.eds_news_Vision .eds_openModal {
  cursor: pointer;
}
.eds_news_Vision.eds_subCollection_news {
  font-size: 13px;
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif;
  color: #3b3b3b;
  line-height: 1.5;
}
.eds_news_Vision.eds_subCollection_news a {
  color: #78a145;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news a:hover {
  text-decoration: underline;
}
.eds_news_Vision.eds_subCollection_news a img {
  border: none !important;
}
.eds_news_Vision.eds_subCollection_news img {
  max-width: 100%;
  height: auto;
}
.eds_news_Vision.eds_subCollection_news h1, .eds_news_Vision.eds_subCollection_news h2, .eds_news_Vision.eds_subCollection_news h3 {
  letter-spacing: normal;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
.eds_news_Vision.eds_subCollection_news h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #25282a;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news blockquote, .eds_news_Vision.eds_subCollection_news q {
  font-size: 12px;
  padding: 10px 40px;
  position: relative;
  font-family: Arial;
  border: none;
  margin: 0;
  background: none transparent;
}
.eds_news_Vision.eds_subCollection_news blockquote:before, .eds_news_Vision.eds_subCollection_news q:before, .eds_news_Vision.eds_subCollection_news blockquote:after, .eds_news_Vision.eds_subCollection_news q:after {
  font-family: "BenchNine", sans-serif;
  font-size: 60px;
  color: ebebeb;
  font-style: italic;
  position: absolute;
  margin: 0;
  background: none transparent;
}
.eds_news_Vision.eds_subCollection_news blockquote:before, .eds_news_Vision.eds_subCollection_news q:before {
  content: '"';
  top: 27px;
  left: -5px;
}
.eds_news_Vision.eds_subCollection_news blockquote:after, .eds_news_Vision.eds_subCollection_news q:after {
  content: '"';
  bottom: 20px;
  right: 0px;
}
.eds_news_Vision.eds_subCollection_news blockquote, .eds_news_Vision.eds_subCollection_news blockquote p {
  color: #777777;
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
  border: none;
  font-family: Arial;
  margin: 0;
  background: none transparent;
}
.eds_news_Vision.eds_subCollection_news ul, .eds_news_Vision.eds_subCollection_news ol {
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 15px;
}
.eds_news_Vision.eds_subCollection_news ul ul, .eds_news_Vision.eds_subCollection_news ul ol, .eds_news_Vision.eds_subCollection_news ol ul, .eds_news_Vision.eds_subCollection_news ol ol {
  margin-bottom: 0;
  margin-top: 5px;
}
.eds_news_Vision.eds_subCollection_news ul li, .eds_news_Vision.eds_subCollection_news ol li {
  padding-bottom: 2px;
}
.eds_news_Vision.eds_subCollection_news ul li {
  list-style-type: disc;
}
.eds_news_Vision.eds_subCollection_news ul li ul li {
  list-style-type: circle;
}
.eds_news_Vision.eds_subCollection_news ul li ul li ul li {
  list-style-type: square;
}
.eds_news_Vision.eds_subCollection_news::after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_news .gm-style img {
  max-width: none;
}
.eds_news_Vision.eds_subCollection_news .article_gallery {
  margin-top: 10px;
  margin-bottom: 20px;
}
.eds_news_Vision.eds_subCollection_tagCloud, .eds_news_Vision.eds_subCollection_calendar, .eds_news_Vision.eds_subCollection_categoryMenu,
.eds_news_Vision .EDN_module_box,
.eds_news_Vision .callendar_table_container,
.eds_news_Vision .archive_list,
.eds_news_Vision .edncf_AdvancedSearch {
  margin: 0 0 30px 0;
}
.eds_news_Vision.eds_subCollection_tagCloud > .edn_module_title, .eds_news_Vision.eds_subCollection_calendar > .edn_module_title, .eds_news_Vision.eds_subCollection_categoryMenu > .edn_module_title,
.eds_news_Vision .EDN_module_box > .edn_module_title,
.eds_news_Vision .callendar_table_container > .edn_module_title,
.eds_news_Vision .archive_list > .edn_module_title,
.eds_news_Vision .edncf_AdvancedSearch > .edn_module_title {
  padding: 0 0 5px;
  margin: 0 0 16px;
  border-bottom: solid 1px #20272d;
}
.eds_news_Vision.eds_subCollection_tagCloud > .edn_module_title span, .eds_news_Vision.eds_subCollection_calendar > .edn_module_title span, .eds_news_Vision.eds_subCollection_categoryMenu > .edn_module_title span,
.eds_news_Vision .EDN_module_box > .edn_module_title span,
.eds_news_Vision .callendar_table_container > .edn_module_title span,
.eds_news_Vision .archive_list > .edn_module_title span,
.eds_news_Vision .edncf_AdvancedSearch > .edn_module_title span {
  font-weight: normal;
  font-size: 28px;
  line-height: 31px;
  font-family: "BenchNine", sans-serif;
  letter-spacing: normal;
  color: #25282A;
}
.eds_news_Vision .EDN_module_box > .edn_module_title .rss,
.eds_news_Vision .archive_list.events > .edn_module_title .rss {
  float: right;
  margin-top: 10px;
  width: 16px;
  height: 20px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/moduleTitle/rssIcon/predefined/rss.png") 0 0;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision .EDN_module_box > .edn_module_title .rss span,
.eds_news_Vision .archive_list.events > .edn_module_title .rss span {
  display: none;
}
.eds_news_Vision .EDN_module_box > .edn_module_title .rss:hover,
.eds_news_Vision .archive_list.events > .edn_module_title .rss:hover {
  background-position: 0 2px;
}
.eds_news_Vision .archive_list.events > .edn_module_title .export {
  float: right;
  width: 19px;
  height: 20px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/moduleTitle/exportIcon/predefined/export.png") 0 0;
  margin-top: 10px;
  margin-right: 10px;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision .archive_list.events > .edn_module_title .export span {
  display: none;
}
.eds_news_Vision .archive_list.events > .edn_module_title .export:hover {
  background-position: 0 2px;
}

.eds_news_Vision.eds_subCollection_news .EDN_meta-details {
  background-color: #ebebeb;
  margin: 0 0 18px 0;
  padding: 0;
  float: left;
  width: 100%;
  border-radius: 3px;
}
.eds_news_Vision.eds_subCollection_news .EDN_meta-details li {
  float: left;
  list-style-type: none;
  padding: 0 8px;
  margin: 0 0 0 11px;
  color: #838383;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articleMeta/iconSet/predefined/meta-icons.png") no-repeat 0 5px;
  line-height: 27px;
  height: 27px;
}
.eds_news_Vision.eds_subCollection_news .EDN_meta-details li.EDN_publish-date {
  background-color: #78a145;
  color: #fff;
  background-image: none !important;
  margin-left: 0;
  border-radius: 3px 0 0 3px;
}
.eds_news_Vision.eds_subCollection_news .EDN_meta-details li.EDN_author {
  padding-left: 24px;
}
.eds_news_Vision.eds_subCollection_news .EDN_meta-details li.EDN_number-views {
  background-position: 0 -17px;
  padding-left: 24px;
}
.eds_news_Vision.eds_subCollection_news .EDN_meta-details li.EDN_comments {
  padding-left: 24px;
  background-position: 0 -45px;
  float: right;
  margin-right: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article {
  margin: 0 0 30px;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .articleTitle {
  font-family: "BenchNine", sans-serif;
}
.eds_news_Vision.eds_subCollection_news .EDN_article h2 {
  margin-bottom: 4px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article h2 a {
  font-size: 35px;
  line-height: 1.1;
  color: #25282a;
  font-weight: bold;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article h2 a:hover {
  color: #6da329;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article h3.articleSubTitle {
  margin-bottom: 5px;
  font-size: 22px;
  color: #919191;
  font-weight: normal;
  line-height: 24px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer {
  position: relative;
  float: left;
  z-index: 1;
  padding-bottom: 15px;
  margin: 4px 15px 0 0;
  line-height: 0;
  max-width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/image-shadow.png") no-repeat 0 0;
  height: 15px;
  width: 50%;
  content: "";
  z-index: -1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/image-shadow.png") no-repeat right 0;
  height: 15px;
  width: 50%;
  content: "";
  z-index: -1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer a {
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer a img {
  max-width: 100%;
  height: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_publish-date {
  position: absolute;
  bottom: 15px;
  left: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 15px;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink::before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/photo-24-32.png") no-repeat 0 0;
  transition: all 300ms linear;
  content: "";
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink:hover::before {
  opacity: 0.8;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_article_content p {
  padding: 0;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_article_content p + p {
  margin-top: 7px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks {
  margin: 25px 0;
  border: solid 1px #e6e6e6;
  padding: 10px;
  clear: both;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments > h2,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks > h2 {
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 26px;
  color: #25282a;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks ul {
  margin: 0 !important;
  padding: 0 !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul li,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks ul li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul li a,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks ul li a {
  font-weight: bold;
  margin-right: 7px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_listDescription,
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleLinks ul li .edn_listDescription {
  font-style: italic;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/document.png") 0 0 no-repeat;
  padding-left: 25px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_doc, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_docx {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/doc.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_xls, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_xlsx {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/xls.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_zip {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/zip.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_rar, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_7z {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/archive.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_wav, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_wma, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_ogg, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_flac {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/audio.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mp3 {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/mp3.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_png, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_gif {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/image.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_jpg, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_jpeg {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/jpg.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mpg, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mpeg {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/mpg.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mp4, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_xvid, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_wmv, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_ogv, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mov, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_avi, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_mkv {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/video.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_pdf {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/pdf.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_ppt, .eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_pptx {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/ppt.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li.edn_docType_txt {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/documents/txt.png");
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li .edn_docDetails {
  color: #969696;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li .edn_docExtension {
  font-style: italic;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li .edn_docFileSize {
  color: #3b3b3b;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .edn_articleDocuments ul > li .edn_listDescription {
  display: block;
  font-size: 12px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_publish-date {
  background-color: #78a145;
  color: #fff;
  padding: 0 8px;
  line-height: 27px;
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_article_content {
  line-height: 1.5;
  font-size: 13px;
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_social-media-plugin {
  float: left;
  margin-right: 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_social-media-plugin a {
  height: 30px !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_social-media-plugin .addthis_button_compact,
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_social-media-plugin .addthis_button_expanded {
  height: 20px !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_social-media-plugin .addthis_button_linkedin_counter {
  margin-right: 15px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details h1 {
  font-size: 40px;
  line-height: 1.1;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
  color: #25282a;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags {
  border-left: solid 9px #b1b1b1;
  padding: 5px 18px;
  margin: 20px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating .article_rating, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating.rating {
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags {
  margin: 6px 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a {
  border: solid 1px #cacaca;
  background-color: #cacaca;
  padding: 2px 7px;
  margin: 0 3px 3px 0;
  display: inline-block;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a:hover {
  border-color: #979797;
  text-decoration: none;
  background-color: #dbdbdb;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container {
  padding: 4px 10px;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
  background-color: #fcfcfc;
  margin-bottom: 15px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date {
  padding: 0 0 0 25px;
  margin: 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/dateIcon/predefined/date.png") no-repeat 0 0px;
  line-height: 19px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date .export-calendar {
  text-indent: -9999px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/exportIcon/predefined/export.png") no-repeat 0 0;
  width: 22px;
  height: 19px;
  display: inline-block;
  margin: -1px 10px;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date .export-calendar:hover {
  background-position: 0 2px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-location {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/locationIcon/predefined/location.png") no-repeat 0 0;
  padding: 0 0 0 25px;
  margin: 10px 0 0;
  line-height: 24px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container > ul {
  padding: 5px 0 5px 19px;
  margin: 0;
  float: left;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container > ul > li {
  list-style-type: circle;
  padding: 0 0 0 5px;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventPrice {
  float: right;
  margin: 7px;
  font-size: 22px;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin: 0 5px 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .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_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content p {
  padding: 0;
  margin: 0 0 17px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content strong, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content b {
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content em, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_article_content i {
  font-style: italic;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image {
  margin: 3px 0 10px;
  max-width: 100%;
  background-color: #e6e6e6;
  padding: 16px;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image.left {
  margin-right: 15px;
  float: left;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image.right {
  margin-left: 15px;
  float: right;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper {
  position: relative;
  float: left;
  z-index: 1;
  padding-bottom: 15px;
  line-height: 0;
  max-width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper > a,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper > img {
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/image-shadow.png") no-repeat 0 0;
  height: 15px;
  width: 50%;
  content: "";
  z-index: -1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/image-shadow.png") no-repeat right 0;
  height: 15px;
  width: 50%;
  content: "";
  z-index: -1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper img {
  max-width: 100%;
  height: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title {
  font-family: "BenchNine", sans-serif;
  font-weight: normal;
  color: #25282a;
  font-size: 19px;
  line-height: 1;
  border-bottom: solid 1px #20272d;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description {
  color: #3b3b3b;
  line-height: 1.5;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails {
  background-color: #b1b1b1;
  padding: 17px 17px 14px;
  margin-bottom: 16px;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails img {
  float: left;
  margin: 0 18px 5px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails h4 {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 3px;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails p {
  line-height: 14px;
  margin-bottom: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .other-posty-by {
  font-style: italic;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .other-posty-by a {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .other-posty-by a:hover {
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .EDN_connect-with {
  border-top: solid 1px #9c9c9c;
  box-shadow: 0 1px 0 #c2c2c2 inset;
  margin-top: 15px;
  padding-top: 11px;
  clear: both;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/authorAndGroupBox/iconSet/predefined/icons.png") no-repeat bottom right;
  color: #fff;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button span {
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button:hover span {
  text-decoration: underline;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.author_rss {
  text-indent: -9999px;
  background-position: right -118px;
  width: 18px;
  height: 17px;
  display: inline-block;
  margin: 0 15px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.author_rss:hover {
  background-position: right -147px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social {
  text-indent: -9999px;
  float: left;
  width: 25px;
  height: 25px;
  margin-right: 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.facebook {
  background-position: 0 -25px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.facebook:hover {
  background-position: 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.twitter {
  background-position: -34px -25px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.twitter:hover {
  background-position: -34px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.linked_in {
  background-position: -68px -25px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.linked_in:hover {
  background-position: -68px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.google_plus {
  background-position: -101px -25px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.google_plus:hover {
  background-position: -101px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.youtube {
  background-position: 0 -197px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.youtube:hover {
  background-position: 0 -172px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.instagram {
  background-position: -35px -197px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.instagram:hover {
  background-position: -35px -172px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.website {
  background-position: -68px -197px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.social.website:hover {
  background-position: -68px -172px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.contact, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.full_bio {
  padding: 3px 23px 3px 0;
  float: right;
  margin: 2px 0 0 33px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.contact {
  background-position: right -78px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button.full_bio {
  background-position: right -53px;
  padding-right: 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles {
  background-color: #e6e6e6;
  padding: 15px 18px 14px;
  margin-bottom: 16px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles h2 {
  padding-left: 33px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/relatedArticles/boxTitle/icon/predefined/icon.png") no-repeat 0 4px;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 26px;
  color: #25282a;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul {
  margin: 0 !important;
  padding: 14px 0 0 !important;
  border-top: solid 1px #d0d0d0;
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li {
  list-style-type: none;
  margin-bottom: 5px;
  line-height: 13px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/relatedArticles/articleList/listBullet/predefined/bullet.png") no-repeat 4px 2px;
  padding-left: 33px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li a {
  color: #343638;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_article_map {
  margin: 20px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .gvContentTable {
  clear: both;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_socialPrintWrapper {
  margin: 20px 0;
  display: flex;
  align-items: center;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_socialPrintWrapper .EDN_social-media-plugin {
  flex-grow: 1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_socialPrintWrapper .sharethis-inline-share-buttons {
  text-align: left !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_printButton {
  float: left;
  background: #F5F4F4 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 5px 5px 3px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  font-size: 0;
  line-height: 0;
  margin: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul {
  margin: 20px 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 3px;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a {
  background-color: transparent;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid #8C8C8C;
  float: left;
  padding: 3px;
  line-height: 0;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a:hover {
  border-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple {
  padding: 4px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple .EDN_simpleDate {
  color: #9C9C9C;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox {
  margin: 0 0 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox.EDN_displayInline .EDN_imageContainerBox {
  padding: 5px;
  margin: 0;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox.EDN_displayInline .EDN_imageContainerBox > a img {
  width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox.EDN_displayInline .EDN_article_content {
  padding: 0 7px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox {
  float: left;
  padding: 1%;
  border: solid 1px #efefef;
  background-color: #f7f7f7;
  margin: 4px 20px 10px 0;
  max-width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2 {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 1px #fff;
  padding: 5px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2 a {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #9e9e9e;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li.EDN_number-views {
  float: left;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/boxArticleListImage/numberOfViewsIcon/predefined/icon.png") 0 8px no-repeat;
  padding-left: 19px;
  padding-top: 3px;
  margin-left: 7px;
  margin-right: 20px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li.EDN_rating {
  float: right;
  color: #f7f7f7;
  font-size: 0;
  margin-right: 8px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li.EDN_rating div {
  text-indent: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edsAccordion_section {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_displayInline {
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
  vertical-align: top;
  text-align: left;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/rate_stars.png");
  height: 16px;
  top: 3px;
  left: 2px;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/rate_stars.png") left -32px;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/rate_stars.png") left -16px;
}
.eds_news_Vision.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article_rss_wrapper {
  text-align: right;
}
.eds_news_Vision.eds_subCollection_news .EDN_article_rss_wrapper a {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articlesRss/icon/predefined/rss.png") 0 0 no-repeat;
  height: 20px;
  padding-left: 22px;
  line-height: 19px;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article_rss_wrapper a:hover {
  background-position: 0 2px;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container {
  background-color: #ebebeb;
  margin: 15px 0;
  padding: 10px;
  clear: both;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table {
  margin: 0 auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 10px;
  vertical-align: top;
  color: #25282a;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
  border-radius: 4px 0 0 4px;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value {
  border-radius: 0 4px 4px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 4px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articleCustomFields/checkBoxIcon/predefined/cf-checkbox.png") no-repeat 0 -20px;
  float: left;
  width: 14px;
  height: 14px;
  margin: 3px 4px 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background-position: 0 0;
}
.eds_news_Vision.eds_subCollection_news .admin_actions {
  padding: 4px 10px;
  border: solid 1px #ddd;
  background-color: #fff;
  line-height: 16px;
  transition: border 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .admin_actions:hover {
  border-color: #000;
}
.eds_news_Vision.eds_subCollection_news .admin_action {
  padding-left: 17px;
  margin-right: 10px;
  background-position: 0 center;
  background-repeat: no-repeat;
}
.eds_news_Vision.eds_subCollection_news .admin_action.edit {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/pencil_small.png");
}
.eds_news_Vision.eds_subCollection_news .admin_action.publish_article {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/check_small.png");
}
.eds_news_Vision.eds_subCollection_news .fb-comments, .eds_news_Vision.eds_subCollection_news .fb-comments iframe[style], .eds_news_Vision.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Vision.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator {
  display: block;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator > ul {
  margin: 0;
  padding: 0;
  border-bottom: solid 2px #2f2f2f;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger {
  list-style-type: none;
  margin: 1px 1px 0 0;
  padding: 0;
  padding: 0 15px;
  color: #fff;
  background: #797e82;
  font-size: 17px;
  float: left;
  line-height: 29px;
  height: 29px;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  transition: all 300ms ease-in-out;
  -webkit-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;
  cursor: pointer;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active {
  color: #fff;
  background: #555c61;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active:hover {
  text-decoration: none;
  color: #fff;
  background: #555c61;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger:hover {
  color: #fff;
  background: #555c61;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
  position: relative;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  bottom: auto;
  left: auto;
  position: absolute;
  right: auto;
  top: 0;
  visibility: hidden;
  z-index: 0;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .EDN_cf_all_fields_container,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_article_map,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_gallery,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleDocuments,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleLinks,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments,
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Vision.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  position: relative;
  visibility: visible;
  z-index: 1;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion {
  clear: both;
  margin-bottom: 20px;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section {
  display: block;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title {
  font-size: 17px;
  font-family: "BenchNine", sans-serif;
  display: block;
  background-color: #ebebeb;
  padding: 8px 60px 7px 15px;
  line-height: 1;
  color: #fff;
  margin: 0 0 1px;
  cursor: pointer;
  background: #797E82 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/expand.png") no-repeat 97% center;
  transition: all 300ms ease-in-out;
  -webkit-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;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title:hover {
  background-color: #555C61;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content {
  padding: 10px 0;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .EDN_cf_all_fields_container,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .edn_article_map,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .article_gallery,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .edn_articleDocuments,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .edn_articleLinks,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .article_comments,
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_content .EDN_simpleArticleImage {
  margin-left: 4px;
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #555C61;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/collapse.png");
}
.eds_news_Vision.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple.edsAccordion_section .EDN_cf_all_fields_container,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple.edsAccordion_section .edn_article_map,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple.edsAccordion_section .edn_articleDocuments,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple.edsAccordion_section .edn_articleLinks {
  margin-top: 10px !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_readMoreButtonWrapper {
  text-align: right;
  padding: 10px 0 0;
  clear: both;
}
.eds_news_Vision.eds_subCollection_news .EDN_readmore {
  font-weight: bold;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_readmore:hover {
  text-decoration: underline;
}
.eds_news_Vision.eds_subCollection_news .EDN_readmore.EDN_readMoreButton {
  text-transform: uppercase;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
  padding: 6px 20px 5px;
  line-height: 1.4;
  background: #7EAB47 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/readmoreButton/background/predefined/gradient.png") repeat-x 0 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 300ms linear;
  -webkit-transition: background 300ms linear;
  -moz-transition: background 300ms linear;
  -ms-transition: background 300ms linear;
  -o-transition: background 300ms linear;
}
.eds_news_Vision.eds_subCollection_news .EDN_readmore.EDN_readMoreButton:hover {
  text-decoration: none;
  background-color: #6e963d;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_simpleArticleImage {
  float: left;
  margin: 4px 20px 5px 0;
  background-color: #F7F7F7;
  border: 1px solid #EFEFEF;
  padding: 6px;
  transition: all 200ms ease-in-out 0s;
  max-width: 100%;
  line-height: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_news .EDN_simpleArticleImage:hover {
  border-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}
.eds_news_Vision.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  text-transform: uppercase;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
  padding: 6px 20px 5px;
  line-height: 1.4;
  background: #7EAB47 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/eventRegistrationButton/background/predefined/gradient.png") repeat-x 0 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  border: none;
  cursor: pointer;
  float: right;
  transition: background 300ms linear;
  -webkit-transition: background 300ms linear;
  -moz-transition: background 300ms linear;
  -ms-transition: background 300ms linear;
  -o-transition: background 300ms linear;
}
.eds_news_Vision.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  text-decoration: none;
  background-color: #6e963d;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border-top: solid 1px #ebebeb;
  border-bottom: solid 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #e4e3e3;
  box-shadow: 0 25px 15px -15px #fff inset;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fcfcfc;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #f4f4f4;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border-bottom: solid 1px #e4e4e4;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Vision.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 10px;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBarWrapper > .articleTitle {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label::after {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar label::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  transition: opacity 200ms linear;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar label:hover::after {
  opacity: 1;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label::after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label::after {
  background-color: #d9534f;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label::after {
  background-color: #f0ad4e;
}
.eds_news_Vision.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_Vision.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting {
  float: right;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 "Roboto Slab", Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.eds_news_Vision.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_Vision.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_Vision.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_Vision.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_Vision.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}

.eds_news_Vision.eds_subCollection_news .bread_crumbs {
  margin-bottom: 20px;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info {
  margin-bottom: 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info > h1 {
  color: #25282A;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  font-size: 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border: solid 1px #ddd;
  background-color: #fff;
  transition: border 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info .admin_actions:hover {
  border-color: #000;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info .admin_actions a {
  padding-left: 17px;
  margin-right: 10px;
  line-height: 16px;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/pencil_small.png") no-repeat 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_category_info .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/check_small.png") no-repeat 0 0;
}
.eds_news_Vision.eds_subCollection_news .child_categories {
  overflow: hidden;
  padding-top: 7px;
}
.eds_news_Vision.eds_subCollection_news .child_categories .EDN_catalog-item a {
  float: left;
  width: 29.7%;
  margin: 0 0.5% 20px;
  padding: 1%;
  padding-bottom: 0;
  border: solid 1px #efefef;
  background-color: #f7f7f7;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .child_categories .EDN_catalog-item a:hover {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  border-color: #fff;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .child_categories .EDN_catalog-item a span {
  margin: 9px 0 5px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  height: 41px;
  color: #25282a;
  font-size: 18px;
  display: block;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  line-height: 1.1;
}
.eds_news_Vision.eds_subCollection_news .child_categories .EDN_catalog-item a:hover span {
  color: #78a145;
  text-decoration: none;
}

.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi {
  position: relative;
  overflow: visible;
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi > a {
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi img {
  max-width: 100%;
  height: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date {
  text-align: center;
  font-family: "BenchNine", sans-serif;
  color: #b3bbc1;
  position: absolute;
  top: 0;
  left: -14px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.18);
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date strong, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date em {
  display: block;
  padding: 10px 11px 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date br {
  line-height: 0;
  font-size: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date strong {
  font-weight: bold;
  font-size: 28px;
  background-color: #3f4446;
  text-shadow: -1px -1px 1px #292929;
  line-height: 26px;
  color: #b3bbc1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date em {
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
  background-color: #535759;
  text-shadow: -1px -1px 1px #373737;
  padding-top: 4px;
  padding-bottom: 7px;
  color: #b3bbc1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date::after {
  position: absolute;
  bottom: -14px;
  left: 0;
  border-style: solid;
  border-width: 14px 0 0 14px;
  border-color: #414141 transparent transparent;
  border-color: #414141 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  content: "";
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.52);
  width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container {
  padding: 17px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container h2 {
  margin-bottom: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container h2 a {
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container h2 a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container .EDN_summary {
  line-height: 14px;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_featured-date {
  position: relative;
  float: left;
  margin-bottom: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro {
  position: relative;
  background-image: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro .EDN_summary-container {
  padding: 0 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div {
  display: inline-block;
  vertical-align: top;
  width: 30.9%;
  margin-right: 3%;
  position: relative;
  line-height: 0;
  vertical-align: top;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div:last-child {
  margin-right: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.52);
  padding: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 {
  padding: 0;
  margin: 0 0 5px;
  line-height: 1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary {
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_publish-date {
  top: -27px;
  left: 0;
  position: absolute;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .EDN_summary {
  line-height: 1.5;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .EDN_summary.EDN_summary_980 {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .EDN_publish-date + .admin_actions {
  position: relative;
  top: auto;
  right: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox.edn_articleWrapper {
  margin: 0 10px 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox.edn_articleWrapper > div {
  width: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row {
  margin-top: 15px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles {
  float: left;
  width: 47%;
  margin-left: 6%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles:first-child {
  margin-left: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_article_content {
  line-height: 1.2;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_mediaContainer {
  padding-bottom: 9px;
  margin-top: 3px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_mediaContainer::before {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/small-image-shadow.png") no-repeat 0 0;
  height: 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_mediaContainer::after {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/small-image-shadow.png") no-repeat right 0;
  height: 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles h2 {
  margin-bottom: 5px;
  font-size: 22px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles h2 a {
  font-size: 22px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .admin_actions {
  position: relative;
  top: 0;
  bottom: 0;
  float: right;
  margin: 10px;
}

.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box {
  margin-bottom: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a {
  padding: 9px 0 0;
  border: solid 1px transparent;
  border-left: none;
  border-right: none;
  font-size: 18px;
  line-height: 1;
  margin: 2px 0 0;
  display: block;
  overflow: hidden;
  text-decoration: none;
  font-weight: bold;
  color: #2f2f2f;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a:hover {
  border-color: #ebebeb;
  text-decoration: none;
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a .EDN_mediaContainer {
  padding-bottom: 9px;
  margin-top: 0px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a .EDN_mediaContainer::before {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/small-image-shadow.png") no-repeat 0 0;
  height: 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a .EDN_mediaContainer::after {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/small-image-shadow.png") no-repeat right 0;
  height: 9px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box.EDN_activeclass a {
  color: #78a145;
}

.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title {
  z-index: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1;
  padding: 0;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span {
  background-color: #78a145;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  font-size: 13px;
  display: block;
  padding: 11px 9px 9px;
  font-weight: normal;
  font-family: Arial;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS {
  float: right;
  width: 12px;
  height: 12px;
  margin: 11px 9px 0 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventsBoxTitle/rssIcon/predefined/rss.png") no-repeat 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS > span {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper {
  height: 0;
  overflow: hidden;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  border: solid 1px #E0E0E0;
  border-top: none !important;
  padding: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_article_map {
  margin-top: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox {
  border: solid 1px #E0E0E0;
  border-top: none;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a {
  background-color: #78a145;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a::before {
  border-color: transparent;
  background-color: #608039;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a .EDN_eventsBoxDate .EDN_eventPublishDay,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a .EDN_eventsBoxDate .EDN_eventPublishYear {
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass > a .EDN_eventBox .EDN_eventBoxTime {
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a {
  text-decoration: none;
  font-family: "BenchNine", sans-serif;
  color: #25282a;
  font-weight: bold;
  display: block;
  line-height: 1;
  position: relative;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a > span {
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  vertical-align: middle;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a::before {
  content: "";
  border-right: solid 1px #E0E0E0;
  position: absolute;
  width: 16%;
  top: 0;
  bottom: 0;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate {
  padding: 10px 0;
  width: 16%;
  position: relative;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate > span {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 23px;
  transition: color 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth {
  color: #78a145;
  text-transform: uppercase;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishYear {
  font-size: 14px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox {
  width: 80%;
  padding: 5px 4%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTitle {
  display: block;
  font-size: 21px;
  padding-bottom: 3px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  color: #6c6c6c;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.4;
  font-weight: normal;
  transition: color 200ms ease-in-out;
  padding-left: 16px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation {
  margin-right: 16px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventBox/eventLocationAndTime/icons/location/predefined/location.png") no-repeat 0 1px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventBox/eventLocationAndTime/icons/time/predefined/time.png") no-repeat 0 1px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a {
  background-color: #78a145;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover::before,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a::before {
  border-color: transparent !important;
  background-color: #608039;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishDay,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishYear,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishDay,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishYear {
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxTime {
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBoxLocation,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBoxLocation {
  background-position: 0 -49px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBoxTime,
.eds_news_Vision.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBoxTime {
  background-position: 0 -49px;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager, .eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager {
  margin: 0;
  text-align: center;
  float: none;
  border: solid 1px #E0E0E0;
  border-top: none;
  padding: 12px 0;
  border-radius: 0;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a, .eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a {
  display: inline-block;
  text-indent: -99999px;
  box-shadow: none !important;
  background-color: #a7abae;
  border: solid 7px #fff;
  float: none;
  padding: 0;
  margin: 1px;
  border-radius: 50%;
  line-height: 0;
  width: 7px;
  height: 7px;
  background-clip: padding-box;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover, .eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover {
  border-color: #78a145;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active, .eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active {
  border-color: #78a145;
  background-color: #fff;
  box-shadow: none;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper {
  border: solid 1px #E0E0E0;
  border-top: none;
  margin: 0;
  padding: 12px 0;
  width: auto;
}
.eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .trigger {
  width: 90%;
}

.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
  float: left;
  margin-right: 3%;
  border-top: solid 3px #e4e4e4;
  max-width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a {
  border: solid 1px #e8e8e8;
  line-height: 0;
  font-size: 0;
  display: block;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime {
  color: #78a145;
  font-family: "BenchNine", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 15px;
  line-height: 1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  float: right;
  color: #505050;
  padding-left: 22px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineEventStartIcon/predefined/timelineTime1.png") no-repeat 0 center;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime + a {
  margin-top: 10px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation {
  display: block;
  padding-left: 25px;
  font-family: "BenchNine", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #888;
  margin-bottom: 10px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineLocationIcon/predefined/timelineLocation.png") no-repeat 0 1px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle {
  overflow: hidden;
  background-color: #f2f2f2;
  border: solid 1px #dedede;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_readMoreButton {
  float: right;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2,
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > .EDN_article_content {
  padding: 10px 15px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > div {
  border-top: solid 1px #dedede;
  padding: 20px 15px 15px;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a {
  font-size: 22px;
  line-height: 1;
  color: #505050;
  font-weight: normal;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a:hover {
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_article_content {
  color: #7a7a7a;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin {
  margin-bottom: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin a {
  height: 20px !important;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration {
  float: right;
  font-family: Arial;
  color: #bababa;
  text-transform: lowercase;
  font-size: 13px;
  text-shadow: 0 1px 0 #fff;
  margin-bottom: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span {
  padding-left: 20px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineEventTime/predefined/timelineTime2.png") no-repeat 0 center;
}
.eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar {
  float: left;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineExportEvent/predefined/timelineExportCalendar.png") no-repeat center center;
  margin: -3px 10px 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 {
  margin: 0;
  padding-bottom: 30px;
  position: relative;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 209px;
  width: 10px;
  background-color: #e8e8e8;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2:last-child::after {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail {
  width: 265px;
  border-top: none;
  position: relative;
  z-index: 1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail > a {
  float: right;
  position: relative;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime {
  font-size: 16px;
  margin-top: 0;
  text-align: center;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  padding-left: 0;
  font-size: 68px;
  font-weight: 300;
  display: block;
  float: none;
  background-image: none !important;
}

.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments {
  margin: 34px 0 20px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment h3 {
  color: #b1b1b1;
  margin-bottom: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box {
  background-color: #b1b1b1;
  border: solid 1px #b1b1b1;
  padding: 27px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box .comment_info span {
  font: 12px Arial;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.left {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  width: 23%;
  padding: 1% 2% 0 0;
  text-align: right;
  vertical-align: top;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right {
  padding: 0;
  width: 75%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  font-size: 13px;
  font-family: Arial;
  padding: 5px 11px;
  background: #f8f8f8 none;
  width: 70%;
  color: #2f2f2f;
  border-style: solid;
  border-width: 1px;
  border-color: #939393 #B1B1B1 #B1B1B1 #939393;
  margin: 0 0 16px 0;
  box-shadow: none;
  line-height: 1.2;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  width: 90%;
  height: 100px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 12px;
  color: #bababa;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  margin: 12px 0;
  background: #7c7c7c url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/comments/commentForm/submitButton/background/predefined/bg.png") repeat-x 0 0;
  text-shadow: -1px -1px 1px #5F5F5F;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit:hover {
  background-color: #6d6d6d;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment {
  background-color: #b1b1b1;
  padding: 11px 15px;
  font-family: Arial;
  color: #fff;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.1;
  border: solid 1px #b1b1b1;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment a {
  font: 16px Arial;
  font-weight: bold;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 10%;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes {
  margin-top: 10px;
  width: 7%;
  float: left;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
  padding-top: 12px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_author {
  font-size: 12px;
  color: #919191;
  margin: 3px 0;
  padding: 0;
  white-space: pre-wrap;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_date_time {
  font-size: 11px;
  color: #535353;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
  color: #555555;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container {
  float: left;
  width: 85%;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .arrow {
  float: left;
  width: 18px;
  height: 18px;
  background-color: #f8f8f8;
  border-style: none none solid solid;
  border-width: 0 0 1px 1px;
  border-color: transparent transparent #E6E6E6 #E6E6E6;
  position: relative;
  left: 20px;
  top: 14px;
  z-index: 1;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content {
  margin: 0 0 0 25px;
  min-height: 85px;
  padding: 3px 5px;
  font: 12px Arial;
  font-size: 12px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content > div {
  min-height: 65px;
  background: #efefef;
  padding: 10px 11px;
  margin: 0;
  background-color: #f8f8f8;
  color: #808080;
  border: 1px solid #e6e6e6;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content p {
  margin: 0;
  padding: 0 0 5px;
  background: none;
  border: none;
  font: 12px Arial;
  color: #1d1d1d;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions {
  margin: 2px 0 3px;
  float: right;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a {
  margin: 0 5px 0 0;
  display: inline-block;
  font-size: 12px;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a.reply {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/comments/commentList/comment/replyIcon/predefined/replay.png") no-repeat 0 center;
  padding-left: 15px;
  margin-right: 6px;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a:hover {
  color: #000;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0;
  text-align: right;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea {
  font-size: 13px;
  font-family: Arial;
  padding: 5px 11px;
  background: #f8f8f8 none;
  width: 70%;
  color: #2f2f2f;
  border-style: solid;
  border-width: 1px;
  border-color: #939393 #B1B1B1 #B1B1B1 #939393;
  margin: 0 0 16px 0;
  box-shadow: none;
  height: 100px;
  line-height: 1.2;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions {
  width: 100%;
  text-align: right;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level1 {
  margin-left: 5%;
  padding-top: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level0, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level1 .right_side .EDN_content_container .arrow, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level2 .right_side .EDN_content_container .arrow, .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level3 .right_side .EDN_content_container .arrow {
  top: -6px;
  left: 40px;
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.eds_news_Vision .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_Vision .edNews_latestCommentsOnForum .num_of_comment .EDN_readMoreButton {
  float: right;
}
.eds_news_Vision .edNews_latestCommentsOnForum .num_of_comment .EDN_readMoreButton i {
  font-style: normal !important;
}
.eds_news_Vision .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 2px 0 0 !important;
  padding: 0 !important;
}

.eds_news_Vision.eds_subCollection_news .article_pager,
.eds_news_Vision.eds_subCollection_news .article_pagination {
  text-align: right;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  border-right: none;
  float: right;
  margin: 15px 0;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_subCollection_news .article_pagination a {
  padding: 10px 14px 9px 15px;
  float: left;
  border-right: 1px solid #e0e0e0;
  color: #bababa;
  background-color: #fff;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .article_pager a:hover,
.eds_news_Vision.eds_subCollection_news .article_pagination a:hover {
  text-decoration: none;
  background-color: #fbfbfb;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.eds_news_Vision.eds_subCollection_news .article_pager a.active,
.eds_news_Vision.eds_subCollection_news .article_pagination span {
  font-weight: bold;
  background-color: #fbfbfb;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.eds_news_Vision.eds_subCollection_news .article_pagination span {
  padding: 10px 14px 9px 15px;
  background-color: #fff;
  color: #bababa;
  float: left;
  border-right: 1px solid #e0e0e0;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  margin: 15px 0;
  width: 100%;
  text-align: center;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  display: inline-block;
  margin: 0;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  background: #fff none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #fcfbf9 none;
  width: 55%;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span {
  display: inline-block;
  padding: 8px 20%;
  font: normal 13px/1 "Roboto Slab", Arial, Helvetica, sans-serif;
  color: #bababa;
  transition: color 200ms linear;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/pagination/loadingBackground/predefined/loadingArticles.gif") center center no-repeat #fbfbfb;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay > span {
  display: none;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover {
  background-color: #fbfbfb;
  border-right: 1px solid #e0e0e0;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer span {
  color: #bababa;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_Vision.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_Vision.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 only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #3b3b3b;
  font-family: "BenchNine", sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
  padding-right: 45px;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}

.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none;
  margin: 0 0 0 13px;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul {
  margin: 0;
  padding: 0;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/category_menu_vertical.png") 0 0 repeat-y;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div {
  position: relative;
  padding: 12px 0 0 15px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/category_menu_t.png") 0 top no-repeat;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div a {
  display: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category {
  color: #25282a;
  text-decoration: none;
  display: block;
  padding-left: 10px;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.5;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover {
  color: #78a145;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > div {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/category_menu_l.png") 0 top no-repeat;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > ul {
  background: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category {
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category {
  font-weight: bold;
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 {
  margin-left: 0;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > ul {
  background: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  background: none !important;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div > .category {
  font-weight: bold;
  background-image: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div > .expand_collapse {
  left: 0;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 {
  margin-left: 6px;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount {
  border: solid 1px #c6c9cb;
  border-radius: 10px;
  color: #78a145;
  display: block;
  padding: 0 5px;
  font-family: Arial;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  height: 16px;
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 25px;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount:hover {
  color: #3c3c3c;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .rss {
  display: block;
  position: absolute;
  top: 10px;
  right: 1px;
  width: 16px;
  height: 20px;
  text-indent: -9999px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/categorsRssIcon/predefined/rss.png") 0 0;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .rss:hover {
  background-position: 0 2px;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  background: #a7abae url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/expandCollapse/predefined/expand-collapse.png") no-repeat center 0;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  text-indent: -9999px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 14px;
  z-index: 1;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse {
  background-position: 0 -25px;
  visibility: visible;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .image {
  display: inline;
  position: absolute;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li:last-child {
  background-image: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li ul {
  background-image: none;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li div {
  background-image: none;
  height: 36px;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li div .image {
  top: 0;
  right: 0;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li div .articlecount {
  top: 8px;
  right: 68px;
}
.eds_news_Vision.eds_subCollection_categoryMenu .edn_category_menu_wrapper.edn_withImages li div .rss {
  top: 9px;
  right: 47px;
}

.eds_news_Vision.eds_subCollection_calendar .edn_styledSelect {
  margin-bottom: 7px;
  text-align: center;
}
.eds_news_Vision.eds_subCollection_calendar .edn_styledSelect > span {
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  background-color: #cecece;
  display: inline-block;
  height: 29px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/monthQuickSelection/background/predefined/select-bg.png");
  background-repeat: no-repeat;
  background-position: right 0;
  border-radius: 4px;
  width: 50%;
}
.eds_news_Vision.eds_subCollection_calendar .edn_styledSelect > span select {
  padding: 6px 3%;
  font-size: 11px;
  font-family: Arial;
  font-weight: normal;
  color: #fff;
  outline: none;
  margin: 0 30px 0 0;
  border: none;
  outline: none;
  background: transparent none;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  border-radius: 4px;
  width: 115%;
}
.eds_news_Vision.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  background-color: #cecece;
  background-image: none !important;
}
.eds_news_Vision.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin: 0;
  padding: 10px;
  border: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-row .fc-content-skeleton table,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-row .fc-content-skeleton td,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-row .fc-helper-skeleton td {
  border-color: transparent;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection,
.eds_news_Vision.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-header-toolbar {
  min-height: 57px;
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_calendar .fc-header-toolbar > div {
  margin-top: 5px;
}
.eds_news_Vision.eds_subCollection_calendar .fc-header-toolbar > div.fc-clear {
  margin-top: 0;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td,
.eds_news_Vision.eds_subCollection_calendar .fc-toolbar h2 {
  font: 20px/1 "BenchNine", sans-serif;
  color: #78a145;
  text-transform: uppercase;
}
.eds_news_Vision.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 5px 0 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months a {
  margin: 0 auto;
  display: block;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-next-button {
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-next-button {
  margin-left: 10px;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months a,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-next-button {
  width: 29px;
  height: 29px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/monthSelectArrows/predefined/arrows.png") no-repeat -35px 0;
  background-color: transparent !important;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transition: none;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months a:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-next-button:hover {
  background-position: -35px -32px;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months:first-child a,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button {
  background-position: 0 0;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months:first-child a:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button:hover {
  background-position: 0px -32px;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button {
  border: solid 1px #d1d1d1;
  color: #b1b1b1;
  font: 15px/1 "BenchNine", sans-serif;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #f7f7f7;
  padding: 4px 7px;
  text-shadow: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 6px 15px;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Vision.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Vision.eds_subCollection_calendar .fc-button.fc-state-active {
  border-color: #d1d1d1;
  box-shadow: none;
  background: none #fff;
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default {
  border-radius: 0;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-left,
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-right {
  border-radius: 4px;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-left {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Vision.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-right {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.week_days,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-day-header.fc-widget-header,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-week-number.fc-widget-header {
  border: none;
  background-color: #b1b1b1 !important;
  font: normal normal 11px/32px Arial;
  color: #fff;
  height: 32px;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-week-number {
  padding: 0 8px;
  text-align: center;
  border-bottom-color: transparent !important;
}
.eds_news_Vision.eds_subCollection_calendar .fc-week-number.fc-widget-header {
  border-right: solid 1px #fff;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-bg .fc-week-number {
  background-color: #b1b1b1;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 11px/32px Arial;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-content,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-divider,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-list-heading td,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-list-view,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-popover,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-row,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed tbody,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed td,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed th,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed thead {
  border: solid 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ebebeb !important;
  border-bottom: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ebebeb !important;
  border-bottom: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed thead,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-row,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-event .fc-content,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-head-container.fc-widget-header {
  border: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-view .fc-body,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-view .fc-body .fc-widget-content {
  border-top: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-view .fc-body .fc-widget-content {
  border-left: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-day-top {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Vision.eds_subCollection_calendar .fc-view.fc-agendaDay-view.fc-agenda-view {
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.week_days,
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed div.fc-row.fc-widget-header {
  border-bottom: solid 7px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.week_days {
  border-left: solid 1px #b1b1b1;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-widget-header th.fc-week-number.fc-widget-header {
  border-right: solid 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection,
.eds_news_Vision.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar,
.eds_news_Vision.eds_subCollection_calendar .fc-row.fc-widget-header {
  margin-left: -1px;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day > a,
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day > span,
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  color: #111111;
  text-decoration: none;
  font: 14px/32px Arial;
  display: block;
  height: 32px;
  background-color: #fcfcfc;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table tr td.day,
.eds_news_Vision.eds_subCollection_calendar .fc-bg .fc-day {
  background-color: #fff !important;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day > a:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number:hover {
  color: #fff !important;
  background-color: #78a145 !important;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > a,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > span,
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  padding: 0 10%;
}
.eds_news_Vision.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 1;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.other_month > a,
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.other_month > span,
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top.fc-other-month .fc-day-number {
  color: #bbb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.today > a,
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.today > span,
.eds_news_Vision.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top.fc-today .fc-day-number {
  background-color: #78a145 !important;
  color: #fff !important;
}
.eds_news_Vision.eds_subCollection_calendar .fc-event {
  margin-left: 1px;
  margin-right: 1px;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a {
  margin: 0;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a,
.eds_news_Vision.eds_subCollection_calendar .fc-event {
  border: 1px solid #78a145;
  border-radius: 3px;
  padding: 2px 5px;
  background-color: #f7f7f7;
  text-align: left;
  color: #3c3c3c;
  text-decoration: none;
  font: 10px Arial;
  line-height: 12px;
  height: auto;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a:hover,
.eds_news_Vision.eds_subCollection_calendar .fc-event:hover {
  background-color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Vision.eds_subCollection_calendar .fc-event.has_events {
  border-color: #ff8400;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #ea1515;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #027dd3;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #52bd23;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Vision.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-table td {
  border-width: 1px 0 0;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-view .fc-slats .fc-time.fc-widget-content {
  border-top: solid 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-view .fc-slats .fc-minor .fc-time.fc-widget-content {
  border-top: dotted 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-slats .fc-time.fc-widget-content,
.eds_news_Vision.eds_subCollection_calendar .fc .fc-axis {
  font: 12px/1 Arial;
  color: #3b3b3b;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-list-view.fc-widget-content {
  border: none !important;
  margin-left: -1px;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-list-view .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ebebeb;
  border-top: solid 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-list-view .fc-list-heading .fc-widget-header > a {
  color: #3b3b3b;
  font: bold 13px/1.2 Arial;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-list-view .fc-list-heading .fc-widget-header > a:hover {
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_calendar .fc .fc-list-view .fc-list-table .fc-list-item td {
  border-top: none;
  border-right: none;
  border-bottom: dotted 1px #ebebeb;
  border-left: non;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ebebeb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item td a {
  color: #3b3b3b;
  text-decoration: none;
  font: 13px/1.2 Arial;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #78a145;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #78a145;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #ea1515;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #027dd3;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #52bd23;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #ffff00;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Vision.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #a52a2a;
}
.eds_news_Vision.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
  margin: 0;
  padding: 0;
  height: 1px;
}
.eds_news_Vision.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Vision.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  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_Vision.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Vision.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Vision.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table {
  width: 100%;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table .month_selection td {
  height: 57px;
  vertical-align: middle;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td {
  background-color: #ebebeb !important;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.selected > a {
  color: #686868 !important;
  background-color: #ebebeb !important;
  box-shadow: inset 0px 0px 3px 3px rgba(0, 0, 0, 0.15);
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.selected.today > a {
  background-color: #78a145 !important;
  color: #fff !important;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events > a {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/events.png");
  background-position: top right;
  background-repeat: no-repeat;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.has_posts > a {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/posts_events.png");
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts > a {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/posts.png");
  background-position: top right;
  background-repeat: no-repeat;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-red > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-red > a {
  background-color: #ea1515;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-blue > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-blue > a {
  background-color: #027dd3;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-black > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-green > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-green > a {
  background-color: #52bd23;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-yellow > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-pink > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-gray > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-orange > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-orange > a {
  background-color: #ff6a00;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_posts.EDNcategorycolor-brown > a, .eds_news_Vision.eds_subCollection_calendar .calendar_table tr td.day.has_events.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day {
  vertical-align: top;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > a,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > span {
  display: block;
  margin: 0;
  border: 0;
  padding: 0 10%;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > a,
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > span {
    padding: 0 4px;
  }
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a {
  display: block;
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day.has_posts, .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .eds_news_Vision.eds_subCollection_calendar .advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions {
  text-align: right;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a {
  display: inline-block;
  width: 21px;
  height: 24px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/topCalendarActions/predefined/icons.png") no-repeat 0 0;
  font-size: 0;
  line-height: 0;
  color: #fff;
  text-align: center;
  margin: 0 5px 5px 0;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.articles_by_month {
  background-position: 0 -85px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.articles_by_month:hover {
  background-position: 0 -83px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.icalendar_export {
  background-position: 0 3px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.icalendar_export:hover {
  background-position: 0 5px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.articles_rss {
  background-position: 0 -24px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.articles_rss:hover {
  background-position: 0 -22px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.events_rss {
  background-position: 0 -54px;
  margin-top: 0px;
}
.eds_news_Vision.eds_subCollection_calendar .top_calendar_actions a.events_rss:hover {
  background-position: 0 -52px;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li {
  list-style-type: none;
  padding: 2px 0;
  line-height: 20px;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li ul {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month {
  color: #3c3c3c;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  line-height: 20px;
  transition: color 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year:hover,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month:hover {
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year:hover > span,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month:hover > span {
  color: #3c3c3c;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year > span,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month > span {
  border: solid 1px #c6c9cb;
  border-radius: 10px;
  color: #78a145;
  display: block;
  padding: 0 5px;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  height: 16px;
  text-decoration: none;
  float: right;
  margin-top: -1px;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarArchive/archiveItems/icon/predefined/icon.png") no-repeat 0 0;
  width: 19px;
  height: 13px;
  margin-right: 6px;
  float: left;
  margin-top: 2px;
  margin-right: 3px;
  display: block;
  text-indent: -9999px;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse {
  background-position: 0 -17px;
  visibility: visible;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month, .eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.opened > div > .edn_archive-year,
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.opened > div > .edn_archive-month {
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.level_0 div .icon.expand_collapse {
  cursor: pointer;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.level_1 div .icon.expand_collapse {
  display: none;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li ul li > div {
  padding-left: 22px;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li ul li > div > .edn_archive-month {
  font-weight: normal;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list.events ul {
  margin: 0;
  padding: 0;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list.events ul li {
  padding: 0 0 9px;
  background-image: none !important;
  line-height: 15px;
  border-bottom: solid 1px #b9b9b9;
  margin: 0 0 10px;
  list-style-type: none;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list.events ul li a {
  padding-top: 18px;
  color: #2f2f2f;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 15px;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list.events ul li a:hover {
  color: #78a145;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_calendar .archive_list.events ul li a span {
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/eventsItems/icon/predefined/icon.png") no-repeat 0 0;
  padding-left: 22px;
  color: #868686;
  display: block;
}

.eds_news_Vision.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none;
}
.eds_news_Vision.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_Vision.eds_subCollection_search .search_input {
  border: solid 3px #e1e1e1;
  height: 43px;
  position: relative;
  padding-right: 56px;
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_search .search_input > .input input[type=text] {
  line-height: 43px;
  height: 43px;
  float: left;
  width: 100%;
  padding: 0 0 0 7px;
  border: none;
  background: #f7f7f7 none;
  color: #8f8f8f;
  font-size: 16px;
  box-shadow: none;
  font-family: Arial;
}
.eds_news_Vision.eds_subCollection_search .search_input > .input input[type=text]:focus {
  background-color: #fff;
  box-shadow: none;
}
.eds_news_Vision.eds_subCollection_search .search_input > .input input[type=text]:hover {
  box-shadow: none;
}
.eds_news_Vision.eds_subCollection_search .search_input .do_search {
  float: left;
  width: 55px;
  height: 43px;
  display: block;
  background: #f7f7f7 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/simpleSearch/submitButton/background/predefined/gradient.png") repeat-x 0 0;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  box-shadow: -2px 0 5px 0 rgba(0, 0, 0, 0.2);
}
.eds_news_Vision.eds_subCollection_search .search_input .do_search:hover {
  background-position: 0 -43px;
}
.eds_news_Vision.eds_subCollection_search .search_input .do_search span {
  text-indent: -9999px;
  display: block;
  width: 55px;
  height: 43px;
  line-height: 43px;
  font-size: 20px;
  color: #8f8f8f;
  font-family: Arial;
  font-weight: bold;
  text-shadow: 1px 1px 1px #fff;
  text-decoration: none;
  background: transparent url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/simpleSearch/submitButton/searchIcon/predefined/magnifier.png") no-repeat center center;
}
.eds_news_Vision.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  padding: 0;
  height: auto;
}
.eds_news_Vision.eds_subCollection_search .search_input.button_outside > .input input[type=text] {
  border: solid 3px #e1e1e1;
  width: 93%;
  padding: 0 0 0 4%;
}
.eds_news_Vision.eds_subCollection_search .search_input.button_outside .do_search {
  float: right;
  width: auto;
  clear: both;
  padding: 0 20px;
  border: solid 3px #e1e1e1;
  position: relative;
  margin: 15px 3px;
  box-shadow: none;
}
.eds_news_Vision.eds_subCollection_search .search_input.button_outside .do_search span {
  text-indent: 0;
  width: auto;
  display: block;
  padding: 0 55px 0 0;
  background-position: right center;
}
.eds_news_Vision.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-position: 0 -43px;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search *,
.eds_news_Vision.eds_subCollection_search .ednSbl_search *::before,
.eds_news_Vision.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  position: relative;
  z-index: 2;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #cecece;
  border-color: #eee;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 "Roboto Slab", Arial, Helvetica, sans-serif;
  display: inline-block;
  border: solid 1px #e4e4e4;
  text-decoration: none;
  color: #878787;
  transition: all 300ms;
  position: relative;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #fff;
  z-index: 2;
  transition: all 300ms;
}
.eds_news_Vision.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #3b3b3b;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #fff;
  border: solid 1px #eee;
  color: #363636;
}
.eds_news_Vision .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_Vision .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #e6e6e6;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title {
  border-color: #fff;
  margin: 0 16px;
  padding-top: 11px;
  position: relative;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title span {
  color: #a8a8a8;
  font-size: 26px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  background: #bfbfbf url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/advancedSearch/moduleTitle/icon/predefined/icon.png") no-repeat center center;
  width: 60px;
  height: 35px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 17px;
  position: relative;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 7px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  padding: 6px 3%;
  font-size: 11px;
  font-family: Arial;
  font-weight: normal;
  color: #fff;
  outline: none;
  margin: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  background-color: #cecece;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
  width: 94%;
  height: 17px;
  border-radius: 4px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  background-color: #cecece;
  display: inline-block;
  width: 100%;
  height: 29px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/advancedSearch/select/background/predefined/select-bg.png");
  background-repeat: no-repeat;
  background-position: right 0;
  border-radius: 4px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  padding: 6px 3%;
  font-size: 11px;
  font-family: Arial;
  font-weight: normal;
  color: #fff;
  outline: none;
  margin: 0;
  border: none;
  outline: none;
  background: transparent none;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  border-radius: 4px;
  width: 115%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  background-color: #cecece;
  background-image: none !important;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  font-weight: bold;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ABABAB;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background-color: #cecece;
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/advancedSearch/select/background/predefined/select-bg.png");
  background-repeat: no-repeat;
  background-position: right 0;
  text-align: left;
  padding: 0;
  box-shadow: none;
  height: 29px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Vision.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: 14px;
  color: #fff;
  font-size: 11px;
  padding: 6px 39px 6px 3%;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  border-radius: 4px;
  border-radius: 4px;
  margin-top: 1px;
  background-color: #cecece;
  background-image: none !important;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Vision.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_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
  position: relative;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  padding-left: 23px;
  margin: 0;
  font-size: 12px;
  color: #8d8d8d;
  font-family: Arial;
  line-height: 1.8;
  font-weight: normal;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  display: inline-block;
  text-align: center;
  margin: 2px 0 0;
  position: absolute;
  left: 0;
  font-weight: bold;
  line-height: 1.1;
  content: "";
  font-family: Arial;
  background-color: #CECECE;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  height: 14px;
  padding: 1px 0 0 1px;
  width: 14px;
  border: solid 1px #a4a4a4;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  content: "✓";
  background-color: #C4C4C4;
  border: 1px solid #B6B6B6;
  box-shadow: 3px 3px 5px 0 #FFFFFF inset, 0 0 3px rgba(0, 0, 0, 0.26);
  color: #78a145;
  height: 14px;
  width: 14px;
  text-shadow: 1px 1px 2px #fff;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiDropDownList > label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiselectGroup .ms-parent > label {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 12px;
  color: #8d8d8d;
  font-family: Arial;
  line-height: 1.8;
  font-weight: normal;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  padding-left: 23px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label::before,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 1.1;
  content: "";
  font-family: Arial;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 1px 10px 1px 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  background-color: #CECECE;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  height: 17px;
  padding: 1px 0 0 1px;
  width: 17px;
  border: solid 1px #a4a4a4;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  padding: 2px 10px 2px 0;
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio] {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label::before {
  content: "•";
  border-radius: 50%;
  font-size: 27px;
  height: 19px;
  width: 19px;
  line-height: 0.8;
  color: #b0b0b0;
  background-color: #d3d3d3;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.29) inset, 1px 1px 1px #FFFFFF;
  text-shadow: 1px 1px 1px #fff;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio]:checked + label:before {
  color: #78a145;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox] {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label:before {
  content: "✓";
  background-color: #C4C4C4;
  border: 1px solid #B6B6B6;
  box-shadow: 3px 3px 5px 0 #FFFFFF inset, 0 0 3px rgba(0, 0, 0, 0.26);
  color: #78a145;
  height: 17px;
  width: 17px;
  text-shadow: 1px 1px 2px #fff;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  color: #8d8d8d;
  line-height: 2;
  display: block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  background-color: #CECECE;
  border: 1px solid #B6B6B6;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.24) inset, 1px 1px 1px rgba(255, 255, 255, 0.35);
  display: block;
  height: 7px;
  overflow: hidden;
  padding: 5px;
  position: relative;
  top: 4px;
  border-radius: 8px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  background-color: #FFFFFF;
  border: 1px solid #A4A4A4;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45) inset;
  display: block;
  height: 5px;
  width: 100%;
  border-radius: 3px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 10px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #868686;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.28) inset, 1px 1px 1px rgba(255, 255, 255, 0.35);
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #7e7e7e;
  background-color: #bfbfbf;
  height: 17px;
  width: 17px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.57), 4px 4px 5px rgba(255, 255, 255, 0.7) inset;
  border-radius: 50%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #78a145;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial;
  top: 27px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 25px;
  font: 10px/1 Arial;
  color: #a8a8a8;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  box-sizing: border-box;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin-bottom: 10px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  font-size: 11px;
  font-family: Arial;
  font-weight: normal;
  color: #fff;
  outline: none;
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #cecece;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
  height: 31px;
  vertical-align: top;
  margin: 0;
  padding: 0 3%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border-style: solid;
  border-width: 1px;
  border-color: #b4b4b4 #efefef #efefef #b4b4b4;
  border-radius: 4px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #fff;
  background-color: #cecece;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
  height: 31px;
  line-height: 29px;
  padding: 0 9px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-color: #c2c2c2;
  border-style: solid;
  border-width: 1px;
  border-color: #C6C6C6 #B1B1B1 #B3B0B0 #C6C6C6;
  font-family: "BenchNine", sans-serif;
  font-size: 21px;
  line-height: 28px;
  display: inline-block;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-transform: lowercase;
  padding: 0 20px;
  margin: 0 5px;
  text-decoration: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2), 3px 3px 2px -1px rgba(255, 255, 255, 0.41) inset, 1px 29px 20px -20px rgba(255, 255, 255, 0.6) inset;
  transition: background 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #D5D3D3;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E1E0E0 url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.5;
  width: 100%;
  z-index: 999;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
  padding-top: 25px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Vision.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_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 147px !important;
  display: inline-block;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding-left: 15px;
}
.eds_news_Vision.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit {
  margin-left: 0;
}

.eds_news_Vision.eds_subCollection_tagCloud .tags {
  overflow: hidden;
}
.eds_news_Vision.eds_subCollection_tagCloud .tags a {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  font-family: Arial;
  text-decoration: none;
  background-color: #cacaca;
  line-height: 24px;
  height: 24px;
  margin: 0 4px 4px 0;
  padding: 0 6px;
  white-space: nowrap;
  float: left;
  border-radius: 3px;
  transition: all 200ms ease-in-out;
}
.eds_news_Vision.eds_subCollection_tagCloud .tags a:hover {
  background-color: #78a145;
  color: #fff;
}
.eds_news_Vision.eds_subCollection_tagCloud .tags a .tag-count {
  display: inline-block;
  color: #78a145;
  margin-left: 10px;
  font-size: 11px;
  line-height: 16px;
  height: 16px;
  border: solid 1px #dddfe0;
  padding: 0 5px;
  border-radius: 10px;
  background-color: #fff;
  font-weight: normal;
}

.EDN_search.theme_Vision {
  padding: 0px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_Vision ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_Vision ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #494949;
  border: solid 1px transparent;
}
.EDN_search.theme_Vision ul li span a {
  color: #494949;
  text-decoration: none;
}
.EDN_search.theme_Vision ul li span a:hover {
  text-decoration: none;
  color: #78a145;
  text-decoration: none;
}
.EDN_search.theme_Vision .acSelect {
  background-color: #fcfcfc;
  color: #494949;
  border-color: #e1e1e1 transparent;
}
.EDN_search.theme_Vision .acSelect a {
  color: #494949;
}

.qtip.edn_calendarbox_Vision {
  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: #fcfcfc;
  border: 2px solid #ebebeb;
  border-radius: 3px;
  width: 500px;
  max-width: 95%;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}
.qtip.edn_calendarbox_Vision .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Vision .qtip-content div.title {
  border: 0;
  border-bottom: solid 1px #fff;
  background: #b1b1b1;
  margin: 0;
  padding: 3px 15px;
  display: block;
}
.qtip.edn_calendarbox_Vision .qtip-content div.title span {
  font: 12px Arial;
  color: #fff;
  line-height: 12px;
  font-weight: bold;
}
.qtip.edn_calendarbox_Vision .qtip-content div.title span a {
  text-decoration: none;
  color: #fff;
  text-decoration: underline;
}
.qtip.edn_calendarbox_Vision .qtip-content div.title span a:hover {
  color: #000;
  text-decoration: none;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > img {
  float: left;
  margin: 0 10px 7px 0;
  padding: 1px;
  border: solid 1px #ebebeb;
  border-radius: 3px;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > p.title {
  margin: 0 0 2px 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  font-family: "BenchNine", sans-serif;
  color: #78a145;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > p.title a {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  font-family: "BenchNine", sans-serif;
  color: #78a145;
  text-decoration: none;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > p.title a:hover {
  color: #000;
  text-decoration: none;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 24px;
  height: 24px;
  font-weight: bold;
  color: #2f2f2f;
  margin-top: 5px;
  padding: 0 0 0 20px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/qtip/eventLocation/icon/predefined/location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > .content {
  color: #333333;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  text-decoration: none;
  font-family: "BenchNine", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  margin: 3px 0 0;
  padding: 2px 10px;
  border: solid 1px #cacaca;
  border-radius: 3px;
  background-color: #cacaca;
  transition: background 200ms ease-in-out;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper > .article > a:hover {
  background: #fff;
  color: #78a145;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper .article_list {
  display: block;
  margin: 0 0 0 15px;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper .article_list > li {
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  list-style-type: circle;
  color: #000;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper .article_list > li > a {
  color: #000;
  font: 12px Arial;
  line-height: 14px;
  text-decoration: none;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper .article_list > li > a:hover {
  color: #78a145;
}
.qtip.edn_calendarbox_Vision .qtip-content .wrapper .article_list > li > p {
  color: #2f2f2f;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  line-height: 12px;
}

@media handheld, only screen and (max-width: 980px), only screen and (max-device-width: 980px) {
  .eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div {
    clear: both;
    display: block;
    margin: 0 0 15px;
    position: relative;
    width: auto;
    z-index: 1;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div > a img {
    max-width: none;
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary {
    display: none;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary.EDN_summary_980 {
    display: inline;
  }
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Vision.eds_subCollection_news .EDN_article .EDN_meta-details {
    display: none;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article h2 {
    font-size: 20px;
    line-height: 20px;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article h2 a {
    font-size: 20px;
    line-height: 20px;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article h3 {
    font-size: 14px;
    line-height: 16px;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer {
    width: 100%;
    float: none;
    margin: 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article .EDN_mediaContainer img {
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox.EDN_displayInline {
    width: 100%;
    margin: 0 auto 10px;
    display: block;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleBox.EDN_displayInline .EDN_imageContainerBox {
    overflow: hidden;
    width: 100%;
    max-width: none !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple .EDN_simpleArticleImage {
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_articleSimple .EDN_simpleArticleImage img {
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.details .EDN_authorGroupDetails .social-networks {
    width: 100%;
    float: left;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.details .EDN_authorGroupDetails .button.contact, .eds_news_Vision.eds_subCollection_news .EDN_article.details .EDN_authorGroupDetails .button.full_bio {
    float: left;
    margin: 10px 15px 0 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.details .EDN_meta-details {
    display: block;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.details .EDN_meta-details li {
    float: none;
    display: block;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div {
    width: auto;
    display: block;
    margin: 0 auto 15px !important;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row {
    margin-bottom: 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles {
    float: none;
    width: auto;
    margin: 0 0 20px 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_mediaContainer {
    width: auto;
    max-width: 100%;
    float: left;
    margin: 0 15px 0 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_mediaContainer img {
    max-width: 100%;
    float: left;
    width: auto;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a .EDN_mediaContainer {
    max-width: 100%;
    width: auto;
    float: left;
    margin-right: 15px;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.EDN_sidebar_box a .EDN_mediaContainer img {
    max-width: 100%;
    width: auto;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
    float: none;
    width: 100% !important;
    margin: 0;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a img {
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2::after {
    display: none;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail {
    margin-bottom: 10px;
    overflow: hidden;
  }
  .eds_news_Vision.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineArticle {
    clear: both;
  }
  .eds_news_Vision.eds_subCollection_news.eds_templateGroup_listArticleInBox > div > span > span {
    width: 100%;
  }
  .eds_news_Vision.eds_subCollection_news .child_categories .EDN_catalog-item a {
    width: 44%;
    padding: 2%;
    display: block;
  }
}
.eds_news_Vision.eds_subCollection_news.eds_print .article_gallery,
.eds_news_Vision.eds_subCollection_news.eds_print .article_comments,
.eds_news_Vision.eds_subCollection_news.eds_print .fb-comments,
.eds_news_Vision.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_meta-tags,
.eds_news_Vision.eds_subCollection_news.eds_print .admin_action,
.eds_news_Vision.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_Vision.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Vision.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_Vision.eds_subCollection_news.eds_print .detailsArticleDefaultWithTabs,
.eds_news_Vision.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_meta-details {
  background: none transparent;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_meta-details > li {
  color: #000 !important;
  background: none transparent !important;
  padding-left: 0 !important;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_meta-details > li.EDN_author > a {
  color: #000;
  text-decoration: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_meta-details > li.EDN_comments {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer::after, .eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer::before {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_videoAudio {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article h3.articleSubTitle {
  color: #999;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .EDN_article_content {
  clear: both;
  color: #000;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .edn_articleDocuments,
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .edn_articleLinks,
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .edn_relatedArticles,
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article .EDN_authorGroupDetails {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details h1 {
  color: #000;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_event-location-container {
  background: none transparent !important;
  border: none !important;
  padding-left: 0;
  padding-right: 0;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_event-location-container > p {
  color: #000 !important;
  padding-left: 0 !important;
  background: none transparent !important;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date .export-calendar {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image {
  background-color: transparent;
  border: solid 1px #eee;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_wrapper::before, .eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_wrapper::after {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_title {
  color: #000;
  border-bottom: solid 1px #ddd;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_description {
  color: #000;
}
.eds_news_Vision.eds_subCollection_news.eds_print .EDN_article.EDN_articleSimple .EDN_simpleDate {
  color: #000;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsAccordion {
  margin: 0;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_title {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsTabulator > ul {
  display: none;
}
.eds_news_Vision.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative;
  visibility: visible;
  top: auto;
  padding: 0;
}
/*!
 *  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}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/vtwNVMP8y9C17vLvIBNZI_Y6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/9kaD4V2pNPMMeUVBHayd7vY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/ATKpv8nLYAKUYexo8iqqrg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/kTYfCWJhlldPf5LnG4ZnHCEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/g46X4VH_KHOWAAa-HpnGPiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7iEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/0XxGQsSc1g4rdRdjJKZrNPk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nE8xhg-WlD4iG4AP-V7QxYA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nN_eC2PfU-cUGGN7U-FIfKc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLvM2QJLsjx6Keu1D2MYodo.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nNd5cRMOq5PeG3VabknWPxo.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLpX8dGXLalyu5OokvgDQcs.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPVFL0ofnRu5Y2lP-UpEUGU.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBQ_Gf4FfI8J4SYljBAylk.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDrvev4WAjW489CRDHIkJ90.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsCGXDOnx9ptx3UTSPTrfsgk.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsAZ98xO_Wnt-JIem4AuLGfs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsE1G989qbVg6RT5ly5jB8V8.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsJ84zb0nVte6liF9gGtpo1Y.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsD86pq2NkPzVgw_9lpT6RGI.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDAdhzWOYhqHvOZMRGaEyPo.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nDW5FUgIgejJvrHuLWqrSMw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nA30BZHTGu2N_DqssQcMQNQ.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPDoBG10JtAX-GAwn6iwU1Y.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nGhQuge17febRYSUkWKdLWA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBtmDLrZTTOm3p1EhiGCXc.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nEV356qNqHCUb41pS3zqMSE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nHm2hrkyco9jQ3NKMXpgOBg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/7nBxcqTeiPvFX1XVBk6VGw.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7vk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nFBvb3f1rSHBccuxwv45BuQ.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsL0XspSvAl7ZHo2ORvFbbnU.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPJ02wFZLBBkWNCvnE5Eqks.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/GdZvpAq9shJukTEvSQbePw.woff") format("woff");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7hsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nCj3Mi2hOMP9GNHlaDA9WRI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsK8NE7_Gi-Xz52ZQ_AwfA78.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nJT5GEmoOtNsejy4tIPLwv0.woff") format("woff");
}
.eds_news_Ozone {
  margin-bottom: 30px;
}
.eds_news_Ozone *,
.eds_news_Ozone *::before,
.eds_news_Ozone *::after {
  box-sizing: border-box;
}
.eds_news_Ozone h1,
.eds_news_Ozone h2,
.eds_news_Ozone h3,
.eds_news_Ozone h4,
.eds_news_Ozone h5,
.eds_news_Ozone h6,
.eds_news_Ozone th,
.eds_news_Ozone .in_article_image .image_title {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone h1, .eds_news_Ozone h2, .eds_news_Ozone h3, .eds_news_Ozone h4, .eds_news_Ozone h5, .eds_news_Ozone h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.1;
}
.eds_news_Ozone h1 {
  font-size: 36px;
}
.eds_news_Ozone h2 {
  font-size: 30px;
}
.eds_news_Ozone h3 {
  font-size: 24px;
}
.eds_news_Ozone h4 {
  font-size: 18px;
}
.eds_news_Ozone h5 {
  font-size: 14px;
}
.eds_news_Ozone h6 {
  font-size: 12px;
}
.eds_news_Ozone p {
  margin: 0 0 15px;
  padding: 0;
}
.eds_news_Ozone ul, .eds_news_Ozone ol {
  margin-left: 15px;
}
.eds_news_Ozone ul {
  list-style-type: disc;
}
.eds_news_Ozone ul ul {
  list-style-type: circle;
}
.eds_news_Ozone ul ul ul {
  list-style-type: square;
}
.eds_news_Ozone ol {
  list-style-type: decimal;
}
.eds_news_Ozone ol ol {
  list-style-type: upper-roman;
}
.eds_news_Ozone ol ol ol {
  list-style-type: lower-roman;
}
.eds_news_Ozone .eds_openModal {
  cursor: pointer;
}
.eds_news_Ozone .edn_clearFix:after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_news span, .eds_news_Ozone.eds_subCollection_news a, .eds_news_Ozone.eds_subCollection_news li, .eds_news_Ozone.eds_subCollection_news td, .eds_news_Ozone.eds_subCollection_news table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_news a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news a > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_articleSummary {
  font-size: 13px;
  line-height: 1.3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleTitle {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle {
  color: #424242;
  font-size: 16px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 5px 15px 10px 0;
  position: relative;
  border: solid 1px #c81704;
  padding: 3px;
  position: relative;
  overflow: hidden;
  line-height: 0;
  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;
  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: "\f030";
  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;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  right: 5px;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
  display: table;
  margin-top: 3px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: block;
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
  background-color: #c81704;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
  display: block;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
    display: inline;
    padding: 0 5px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
  position: relative;
  display: table-cell;
  overflow: hidden;
  text-indent: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a::after {
  position: absolute;
  content: "";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
  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;
  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 {
  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: "\f021";
  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: "\f040";
}
.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: "\f00c";
}
.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: "\f0e6";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before {
  content: "\f06e";
}
.eds_news_Ozone.eds_subCollection_news .edn_readMoreButtonWrapper {
  margin: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .fb-comments, .eds_news_Ozone.eds_subCollection_news .fb-comments iframe[style], .eds_news_Ozone.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Ozone.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article_map {
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .sharethis-inline-share-buttons {
  flex-grow: 1;
}
.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: 20px;
  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::before {
  font: 14px/1 "FontAwesome";
  color: #fff;
  content: "\f02f";
  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: "\f041";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span::before {
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventLocation::before {
  content: "\f041";
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventDate::before {
  content: "\f017";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox {
  border: solid 2px #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px 15px 10px;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span {
  position: relative;
  padding: 0 0 6px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span::after {
  border-bottom: 3px solid #cd1301;
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul {
  margin: 20px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 5px 20px;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li::before {
  color: #c81704;
  content: "\f138";
  font: 13px/1.3 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li a {
  margin-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li span {
  font-style: italic;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
  margin-left: -9px;
  margin-right: -9px;
  line-height: 0;
  font-size: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
  padding: 0 9px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  line-height: 0;
  height: 175px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    display: block;
    border: none;
    padding: 0 0 6px;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li + li {
  border-left: dashed 1px #acacac;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
  max-width: 100%;
  display: block;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    float: left;
    margin: 2px 10px 5px 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
  border: 1px dashed #bfbfbf;
  background-color: #EDEDED;
  box-shadow: 0 0 0 5px #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
  color: #424344;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: solid 1px #F7F5F5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li::before {
  content: "\f016";
  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: "\f1c2";
}
.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: "\f1c3";
}
.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: "\f1c6";
}
.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: "\f1c7";
}
.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: "\f1c5";
}
.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: "\f1c8";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf::before {
  content: "\f1c1";
}
.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: "\f1c4";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt::before {
  content: "\f0f6";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
  color: #999;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border: solid 1px #E5E5E5;
  border-radius: 4px;
  padding: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 5px 30px;
  border-bottom: solid 1px #eee;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon::before {
  content: "\f00d";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon::before {
  content: "\f046";
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr:last-child td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  display: inline-block;
  border: 1px solid #e78a04;
  background-color: #f9ab3c;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #e78a04;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding: 5px 15px 5px 40px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label::before {
  width: 25px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label {
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #c81704;
  border-radius: 5px;
  background-color: #fff;
  color: #c81704;
  overflow: hidden;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  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;
  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: "\f00c";
}
.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: "\f00d";
}
.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: "\f128";
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper {
  margin: 20px 0;
  clear: both;
}
.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: "\f09e";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  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: "\f073";
  font-family: "FontAwesome";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  margin-left: 5px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:hover::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails {
  background-color: #e5e5e5;
  border: solid 1px #cac7c7;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff inset;
  padding: 15px;
  margin: 15px 0 0;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails::after {
  content: "";
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > img {
  float: left;
  margin: 0 15px 5px 0;
  background-color: #f8f8f8;
  padding: 7px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button {
  margin: 0 0 0 7px;
  vertical-align: baseline;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button::before {
  content: "\f143";
  color: #504e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .edn_connectWith {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button {
  display: inline-block;
  margin: 10px 0 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 28px;
  min-height: 28px;
  padding-left: 7px;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio {
  border: 1px solid #c81704;
  background: none #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #c81704;
  line-height: 26px;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  margin: -2px 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before {
  content: "\f003";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  content: "\f007";
}
.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: "\f09a";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.twitter::before {
  content: "\f099";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.linked_in::before {
  content: "\f0e1";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.google_plus::before {
  content: "\f0d5";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.youtube::before {
  content: "\f167";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.instagram::before {
  content: "\f16d";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.website::before {
  content: "\f0c1";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails + [class*=article_list_wrapper] {
  margin-top: 25px;
}
.eds_news_Ozone .edn_module_title {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
  font-size: 24px;
  line-height: 1.1;
}
.eds_news_Ozone .fa {
  font-family: "FontAwesome" !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_news_Ozone.eds_subCollection_calendar {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar span, .eds_news_Ozone.eds_subCollection_calendar a, .eds_news_Ozone.eds_subCollection_calendar li, .eds_news_Ozone.eds_subCollection_calendar td, .eds_news_Ozone.eds_subCollection_calendar table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_calendar a {
  text-decoration: none;
  color: #c81704;
  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: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_subCollection_calendar .fc {
  border: solid 1px #c81704 !important;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: solid 1px #c81704;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  font: normal normal 22px/1 "Roboto Condensed", sans-serif;
  color: #c81704;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #504e4e;
  border-color: #c81704;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month::before {
  content: "\f03a";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export::before {
  content: "\f133";
}
.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: "\f09e";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #c81704;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #c81704;
  content: "\f105";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before {
  content: "\f104";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc-widget-header {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #c81704;
  padding: 14px 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc,
.eds_news_Ozone.eds_subCollection_calendar .fc th,
.eds_news_Ozone.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  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;
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #c81704;
  font-size: 11px;
  color: #504e4e;
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #504e4e;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #c81704;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  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 {
    transform: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.today::after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  margin-top: 25px;
  border-top: solid 1px #dcdcdc;
  padding-top: 25px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div {
  border-bottom: solid 1px #ddd;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse::before {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div.edn_archiveByYear a.edn_archiveLink {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
  color: #504e4e;
  text-decoration: none;
  display: block;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink {
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink {
  font-weight: bold;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse {
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse::before {
  content: "\f07b";
  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: "\f07c";
}
.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: "\f143";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .export::before {
  content: "\f08e";
}
.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: "\f133";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  color: #c81704;
  font-family: "FontAwesome";
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  color: #504e4e;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #c81704;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
}

.eds_news_Ozone.eds_subCollection_news .child_categories {
  margin-bottom: 40px;
}
.eds_news_Ozone.eds_subCollection_news .edn_categoryInfo {
  margin: 20px 0 30px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory {
  margin: 7px;
  padding: 5px;
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  background-color: #e5e5e5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption > span {
  display: inline-block;
  padding: 5px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  color: #504e4e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory:hover > img {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #747474;
  text-decoration: none;
  display: inline-block;
  border-bottom: solid 0 transparent;
  margin-bottom: 2px;
  transition: border-color 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:hover {
  border-bottom-color: #c81704;
  border-bottom-width: 2px;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:last-child {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i {
  display: none;
  margin: 0 7px;
  font-family: "FontAwesome";
  font-size: 17px;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i + a + i {
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_categoryMenu {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu div, .eds_news_Ozone.eds_subCollection_categoryMenu span, .eds_news_Ozone.eds_subCollection_categoryMenu a, .eds_news_Ozone.eds_subCollection_categoryMenu li {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a {
  text-decoration: none;
  color: #c81704;
  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 {
  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;
  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: "\f107";
  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: "\f106";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss::before {
  content: "\f143";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
  color: #504e4e;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image > img {
  border: solid 1px #c81704;
  padding: 2px;
  transition: border 200ms linear;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover > img {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 15px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 45px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 60px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 75px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #000;
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper {
  height: 50px;
  overflow: auto;
  padding: 20px 0;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div {
  padding: 5px 7px 5px 0;
  margin-right: 7px;
  border-bottom: none;
  border-right: solid 1px #ddd;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div .expand_collapse::before {
  content: "\f105";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  transform: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .edn_category {
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .hasChild ul .edn_category {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li ul {
  display: inline-block !important;
  height: auto !important;
  overflow: visible !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span {
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  text-align: center;
  border: solid 1px #eee;
  background-color: #F7F7F7;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  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;
  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: "\f053";
}
.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: "\f054";
}
.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_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div {
  display: flex;
  align-items: center;
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div > .edn_module_title {
  margin: 0;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div > .expand_collapse {
  margin-left: auto;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div,
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul {
  margin-top: 5px !important;
  padding: 8px !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul ul {
  display: block !important;
}

.eds_news_Ozone.eds_subCollection_news .article_comments {
  margin: 15px 0 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment + .comment_list {
  padding-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list {
  margin-bottom: 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  padding-left: 50px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div {
  float: left;
  margin: 0 20px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div img {
  border: 1px solid #504e4e;
  border-radius: 50%;
  padding: 3px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > div {
  color: #424242;
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > time {
  color: #999;
  font-size: 12px;
  display: block;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions {
  text-align: right;
  clear: both;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a {
  display: inline-block;
  border: 1px solid #909090;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  background-color: #bdbdbd;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover {
  background-color: #909090;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete {
  background-color: #d94e49;
  border-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover {
  background-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment.level {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .right_side {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes {
  float: left;
  width: 40px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div {
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > input,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > span {
  display: block;
  margin: 0 auto;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list + .add_comment {
  margin-top: 25px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
  padding: 10px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.left {
  font-family: "Roboto Condensed", sans-serif;
  width: 15%;
  color: #424242;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.right {
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text],
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text]:focus,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text] {
  max-width: 300px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea {
  max-width: 370px;
  font-size: 13px;
  min-height: 110px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper {
  border-top: 1px solid #d7d7d7;
  padding-top: 25px;
  clear: both;
  margin-top: 40px;
  margin: 40px auto 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_numberOfComments {
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 20px 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer {
  font-size: 0;
  line-height: 0;
  margin-bottom: 30px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:first-child, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_userAvatar {
  float: left;
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > span {
  font-family: "PT Sans", sans-serif;
  color: #000;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > div {
  margin: 10px 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails .edNews_commentText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions {
  text-align: right;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span {
  cursor: pointer;
  color: #8b8b8b;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  padding: 10px 20px;
  border-radius: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span:hover {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span + span {
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editComment, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentCancelTrigger {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__deleteComment {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentSaveTrigger {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > .edNews__childCommentsContainer {
  margin: 0 0 0 50px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__commentContent {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews_commentActions.main {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_comment {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage {
  box-sizing: border-box;
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  color: #ac171e;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 16px;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: Arial;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;
  font-family: "PT Sans", sans-serif;
  color: #504e4e;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #c81704;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage > a,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  font-family: "PT Sans", sans-serif;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
  font-family: "PT Sans", sans-serif;
  box-sizing: border-box;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {
  font-family: "PT Sans", sans-serif;
  background-color: #c81704;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 16px;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: "FontAwesome";
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "\f007";
  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;
  transition: all 200ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews_actionIcon {
  color: #bababa;
  font-size: 20px;
  margin-right: 10px;
  transition: color 300ms;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger {
  display: inline-block;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger > * {
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger + .edNews__commentVoting_trigger {
  margin-left: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger:hover .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_voted .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone .edNews__editCommentContainer {
  border: dashed 1px #ddd;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.eds_news_Ozone .edNews__editCommentContent {
  font-family: "PT Sans", sans-serif;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: none;
  padding: 8px;
  width: 100%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
.eds_news_Ozone .edNews__editCommentContent:focus, .eds_news_Ozone .edNews__editCommentContent:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone .edNews__editCommentContent:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone .edn_recentCommentsHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.eds_news_Ozone .edn_recentCommentsHeader > h4 {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before, .eds_news_Ozone .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  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: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  transition: opacity 500ms;
}
.eds_news_Ozone .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto Condensed", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #c81704;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 "FontAwesome";
  color: #2c2c2c;
  content: "\f0da";
  margin-right: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment .edn_readMoreButton {
  float: right;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 2px 0 0;
  padding: 0;
}

.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_title {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: -1px 0 -1px -1px;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_itemsHidden {
  margin-right: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: #888;
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  transition: color 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  margin: 0;
  padding: 0;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: -1px;
  background: #fff;
  z-index: 10000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  display: block;
  margin: 0;
  padding: 4px 10px 3px;
  border: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e4e4e4;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  width: 30px;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger::after {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  display: block;
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "\f067";
  color: #242424;
  display: block;
  text-align: center;
  position: absolute;
  top: 7px;
  transition: color 0.1s ease;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header {
  background: transparent;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
  padding-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  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;
  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: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
  float: left;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
    width: auto;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide article {
  width: auto !important;
  float: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
  float: right;
  width: 48%;
  margin-left: 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide article {
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide.edn_specialFirstArticle article:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div {
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails {
  font: 10px/1.3 "Roboto Condensed", sans-serif;
  color: #808080;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a {
  color: #1b1b1b;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 {
  padding: 0;
  border: 0;
  margin: 10px 0;
  font: 18px/1.3 "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "Roboto Condensed", sans-serif;
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font: 13px/1.3 "PT Sans", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a img {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  font: 10px/1.3 "PT Sans", sans-serif, sans-serif;
  opacity: 0.9;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category {
  margin: 0 0 0 7px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a {
  display: inline-block;
  background-color: #c81704;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 20px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a {
  display: inline-block;
  color: #fff;
  background: #828282;
  padding: 4px 15px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a::before {
  content: "\f075";
  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 {
  display: flex;
  flex-flow: row wrap;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
  width: 48%;
  margin: 0 0 15px 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_prominentArticles article {
    float: none;
    margin: 0 0 35px;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article .edn_metaDetails {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 {
  margin: 5px 0 7px;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article:nth-child(2n+1) {
  margin-left: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
  width: 48%;
  padding: 13px 0;
  float: left;
  margin-left: 4%;
  border-top: 1px solid #dfdfdf;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article > a {
  float: left;
  margin: 0 14px 0 0;
  border: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList.edn_biggerPadding article {
  padding: 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article {
  padding: 13px 0;
  border-top: 1px solid #dfdfdf;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article:first-child {
  border-top: none;
  padding-top: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper > article {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_noContent,
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_contentError {
  font: 16px/1.3 "PT Sans", sans-serif, sans-serif;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle {
  margin-bottom: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle figure > a img {
  width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper {
  border: solid 1px #e4e4e4;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
  float: right;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
    width: auto !important;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title {
  background: none transparent;
  display: block;
  border-bottom: solid 1px #c81704;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #c81704;
  padding: 5px 25px 4px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title + .edn_verticalListWrapper {
  margin-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
  float: left;
  width: auto;
  border: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
    float: none;
    width: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
  display: block;
  border: solid 1px #e4e4e4;
  border-left-style: none;
  border-top-style: none;
  padding: 8px 25px;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 3px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none;
  position: absolute;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_active {
  border-right-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li:first-child {
  border-top-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: block;
  white-space: normal;
  float: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
    display: inline-block;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  border-right: solid 1px #e4e4e4;
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger {
  position: static;
  padding: 9px 25px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::after {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::before {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "\f067";
  color: #242424;
  transition: color 0.1s ease;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList {
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList > li {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper {
  overflow: hidden;
  padding: 20px 20px 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
  float: left;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
    float: none;
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_articleTitle {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_metaDetails {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper {
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination > span {
  margin: 1px 1px 1px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock article {
  opacity: 0;
  max-width: 100%;
  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;
  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;
  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 {
  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 {
  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 {
  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 {
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_articleImage {
  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 {
  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: "\f007";
  font-family: "FontAwesome";
  color: #6e6e6e;
  font-size: 18px;
  padding-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
  top: 3px;
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
  border-top: dashed 1px #a8a4a4;
  border-bottom: dashed 1px #a8a4a4;
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #c81704;
  font-size: 12px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #c81704;
  border: solid 1px #c81704;
  text-decoration: none;
  margin: 2px 3px;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .at-resp-share-element .at-share-btn {
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image {
  background-color: #e5e5e5;
  border: solid 1px #d1d2d3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a {
  position: relative;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a::before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  content: "";
  border: solid 2px transparent;
  background-color: transparent;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:hover::before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_title {
  margin: 5px 0 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_description {
  color: #666161;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  clear: both;
  margin: 15px 0;
  padding: 1px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  border-bottom: solid 1px #c81704;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover {
  background-color: #EAEAEA;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover td {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding: 7px 10px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 3px 10px;
  border: none;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}

.eds_news_Ozone.eds_subCollection_news .edn_article {
  margin-bottom: 35px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_metaDetails {
  margin: 10px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary {
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
  font-size: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 1;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > div .admin_action {
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
  font-size: 15px;
  color: #504e4e;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > div .admin_action {
  position: relative;
  z-index: 3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 2;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
  font-size: 15px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
  overflow: hidden;
  position: relative;
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background-color: rgba(200, 24, 5, 0.2);
  transition: opacity 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer > img {
  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 {
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
  margin-bottom: 3px;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
  margin-bottom: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
  margin: 3px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 {
  margin: 3px 0;
  overflow: hidden;
  padding-bottom: 2px;
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
  font-size: 13px;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
  margin: 0;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments::before {
  font-size: 14px;
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  content: "\f017";
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions > a {
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet {
  float: left;
  padding: 0 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet::before {
  font-family: "FontAwesome";
  color: #c81704;
  font-size: 10px;
  line-height: 0;
  content: "\f054";
}

.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;
  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;
  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;
  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 {
  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);
  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;
  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 {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails > span {
  float: right;
  margin: 0 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section {
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer {
  margin: 0;
  float: none;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a:hover:after {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent {
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleTitle {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleSummary {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time {
  line-height: 1;
  font-size: 13px;
  color: #969696;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation::before {
  content: "\f041";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time::before {
  content: "\f017";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section {
  position: relative;
  display: table;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  border-style: solid;
  border-width: 15px;
  border-left-color: #c81704;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time {
  border-right: solid 1px #bfbfbf;
  padding: 8px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span {
  display: block;
  color: #666161;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div {
  overflow: hidden;
  padding: 8px 8px 8px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_articleTitle {
  font-size: 19px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation::before {
  content: "\f041";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMoreButtonWrapper {
  text-align: left;
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover {
  background-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time::before {
  content: "\f017";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::before {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
  width: 100%;
  height: auto;
  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 {
  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;
  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 {
  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 {
  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);
  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;
  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 {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
  padding-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
  width: 23.5%;
  padding-left: 2%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 48%;
    padding: 0 1% !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption {
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
    clear: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
  box-sizing: content-box;
  width: 32%;
  padding: 0 0 20px 2%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0 0 20px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList {
  margin-bottom: 0;
  padding: 5px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
  font-size: 16px;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
  margin-bottom: 5px;
  margin-top: 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
  margin: 0 0 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 -1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    float: left;
    width: 48% !important;
    padding-right: 1% !important;
    padding-left: 1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    float: none;
  }
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
  display: table;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
  display: table-cell;
  vertical-align: top;
  width: 140px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: inline-block;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock {
  color: #666161;
  font-size: 40px;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  padding-bottom: 20px;
  background: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    background: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
  box-sizing: content-box;
  -moz-box-sizing: border-box;
  padding: 0 8px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
  width: 29px;
  height: 29px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: solid 8px #e2e2e2;
  overflow: hidden;
  margin-top: -5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a > img {
  width: 100%;
  border-radius: 50%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
  margin-left: 30px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-radius: 6px;
  margin-bottom: 35px;
  margin-top: -5px;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 0;
    margin-top: 10px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before {
  position: absolute;
  content: "";
  top: 15px;
  left: -11px;
  width: 20px;
  height: 20px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-right: none !important;
  border-top: none !important;
  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: "\f017";
  color: #c81704;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport {
  margin-right: 20px;
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover::after {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a {
  color: #666161;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > div {
  padding: 5px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #8a8a8a;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
  background: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
  background-color: #ececec;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent::before {
  background-color: #ececec;
}

.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList {
  width: 250px;
  margin: 0;
  padding: 0;
  float: left;
  position: fixed;
  height: 600px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track {
  background: transparent;
  position: relative;
  height: 100%;
  width: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb {
  height: 20px;
  width: 10px;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background ease 0.2s;
  border-radius: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb > .end {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: dashed 1px #ddd;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #646262;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a:hover {
  color: #c81704;
  text-decoration: none;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li.edNews__active > a {
  color: #000;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList + div {
  margin-left: 280px;
}

.eds_news_Ozone.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  border: solid 1px #c81704;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pager > span,
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  display: inline-block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #c81704;
  border-right: none !important;
  border-bottom: none !important;
  border-top: none !important;
  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: "\f105";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.last::after {
  content: "\f101";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.first::before {
  content: "\f100";
  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: "\f104";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling {
  float: none;
  border: none;
  margin: 0 -10px;
  padding: 20px 10px;
  overflow: visible;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a {
  border: solid 1px #c81704 !important;
  border-radius: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
  float: left;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover, .eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  text-align: center;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  position: relative;
  padding: 0;
  background: none transparent;
  box-shadow: none;
  overflow: hidden;
  width: 75%;
  display: inline-block;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger > span {
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  font-size: 15px;
  display: block;
  padding: 7px 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer {
  background-color: #fff;
  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;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay::before {
  content: "\f021";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  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;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 240px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  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;
  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: "\f061";
  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;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_Ozone .edn_pagination {
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid #c81704;
  text-align: right;
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone .edn_pagination > span {
  padding: 0;
  margin: 1px 0 0 1px;
  border: 0;
  background: #c81704;
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.eds_news_Ozone .edn_pagination > span::after {
  font: 18px/1.3 "FontAwesome";
  color: #fff;
  display: block;
  text-align: center;
  display: block;
  padding: 0 11px 1px;
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_previousPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_previousPage::after {
  content: "\f104";
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_nextPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_nextPage::after {
  content: "\f105";
}

.qtip.edn_calendarbox_Ozone {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #c81704;
  width: 500px;
  max-width: 95%;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Ozone p, .qtip.edn_calendarbox_Ozone span, .qtip.edn_calendarbox_Ozone li, .qtip.edn_calendarbox_Ozone a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Ozone .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a:hover {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > img {
  float: left;
  margin: 3px 10px 7px 0;
  padding: 3px;
  border: solid 1px #c81704;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location::before {
  content: "\f041";
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
  font-family: "FontAwesome";
  color: #c81704;
  font-style: normal;
  font-weight: normal;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a:hover {
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -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;
  transition: none 0 none;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_search div, .eds_news_Ozone.eds_subCollection_search span, .eds_news_Ozone.eds_subCollection_search a, .eds_news_Ozone.eds_subCollection_search label, .eds_news_Ozone.eds_subCollection_search input {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_search a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_search a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 50% !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .search_input::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input {
  float: left;
  padding: 0 10px;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text],
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text]:focus {
  border: none;
  outline: none;
  background: none #fff;
  box-shadow: none;
  color: #848484;
  line-height: 28px;
  height: 30px;
  font-size: 13px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search {
  padding: 0 5px;
  line-height: 29px;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search::before {
  content: "\f002";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  border-radius: 0 !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text],
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text]:focus {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search {
  width: auto;
  clear: both;
  border: 1px solid #c81704 !important;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline-block;
  padding-left: 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .search_input .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/indicator.gif");
  background-repeat: none;
  background-position: 90% 10%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  padding-right: 35px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  outline: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.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: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  font-family: "FontAwesome";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open::before {
  content: "\f106";
}
.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: "\f00c";
}
.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,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiselectGroup .ms-parent > label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 45px;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  padding: 2px;
  background-color: #d6d6d6;
  height: 13px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7 #c7c7c7 #d3d3d3;
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: block;
  height: 7px;
  border-radius: 4px;
  background-color: #c3c3c3;
  border: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #c81704;
  border-style: solid;
  border-width: 1px;
  border-color: #931103 #931103 #bf1604;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #eeeff0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-color: #d4d8de;
  height: 20px;
  width: 20px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 50%;
  box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c71704;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #c81704;
  position: absolute;
  white-space: nowrap;
  top: 25px;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  top: 25px;
  font-size: 12px;
  line-height: 1;
  color: #a8a8a8;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label::before {
  background-position: 0 bottom;
  content: "\f00c";
}
.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: "\f111";
  font-size: 8px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  outline: none;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  height: 30px;
  line-height: 28px;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-left: none;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 30px;
  padding: 0 11px;
  color: #c81704;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a {
  display: inline-block;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 29px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit {
  border: 1px solid #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before {
  content: "\f002";
  display: inline-block;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 21px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset {
  border: solid 1px #ddd;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover {
  color: #504e4e;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a + a {
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #c81704;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  width: auto;
  padding: 7px 9px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count::before {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #b4b4b4;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 "PT Sans", sans-serif;
  display: inline-block;
  border: solid 1px #a0a0a0;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: #504e4e;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  width: 0;
  overflow: hidden;
  background-color: #c81704;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7px 0;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  border: solid 4px transparent;
  border-left-color: #fff;
  margin-top: -4px;
  transition: left 300ms ease 200ms;
}
.eds_news_Ozone .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_Ozone .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Ozone {
  padding: 0px;
  border: 1px solid #c81704;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Ozone ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Ozone ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Ozone ul li span a {
  padding: 2px 10px;
  display: block;
  font-size: 12px;
  color: #504e4e;
  text-decoration: none;
  border: solid 1px transparent;
  transition: all 300ms linear;
}
.EDN_search.theme_Ozone ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Ozone ul li.acSelect a {
  background-color: #f8f8f8;
  border-color: #d4d4d4 transparent;
  color: #c81704;
  transform: scale(1.05);
}

.eds_news_Ozone.eds_subCollection_tagCloud div, .eds_news_Ozone.eds_subCollection_tagCloud a, .eds_news_Ozone.eds_subCollection_tagCloud span {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a {
  border: solid 1px #c81704;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 5px 5px 0;
  display: inline-block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span {
  display: inline-block;
  color: #c81704;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: bold;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span:first-child {
  background-color: #c81704;
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #c81704;
}

.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section .edsAccordion_title {
  cursor: pointer;
}
.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion {
    height: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section {
  margin: 0 0 5px;
  padding: 0;
  border: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  color: #504e4e;
  transition: color 300ms linear;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover::after {
  transform: scale(1.8);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title::after {
  position: absolute;
  content: "\f107";
  right: 1%;
  bottom: 5px;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #c81704;
  font-weight: normal;
  font-style: normal;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title::after {
  content: "\f106";
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
  padding-right: 30px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header {
  margin: 0;
  padding: 0;
  border: none;
  padding: 10px 30px 10px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header::after {
  top: auto;
  bottom: 50%;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3 {
  font-size: 18px;
  color: #504e4e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header .edn_metaDetails {
  margin: 5px 0 10px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
  margin: 0 10px 5px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  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;
  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 {
  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;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
    float: none;
    width: auto !important;
    clear: both;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header::after {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3 {
  color: #7c7c7c;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails {
  margin: 0 0 5px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
  padding-right: 35px;
  opacity: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding: 0;
    position: static;
    width: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
  position: relative;
  background-color: #c81704;
  padding-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
    display: none;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3 {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before {
  position: absolute;
  content: "";
  width: 0;
  left: -14px;
  right: auto;
  border-width: 14px 7px;
  border-style: solid;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  top: 50%;
  margin-top: -14px;
  bottom: auto;
  display: block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
  visibility: visible;
  opacity: 1;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft > header {
  float: left;
  clear: left;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft .edsAccordion_contentWrapper {
  padding-right: 0;
  padding-left: 35px;
  left: auto;
  right: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft.edsAccordion_active > header::before {
  left: auto;
  right: -14px;
  transform: rotate(180deg);
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::after, .eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::before {
  display: block;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone .edsTabulator .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  border: solid 1px #c81704;
  border-bottom: none !important;
  padding: 7px 10px;
  margin: 0;
  line-height: 1;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone .edsTabulator .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li + li {
  border-left: none !important;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:first-child {
  border-radius: 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:last-child {
  border-radius: 0 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:hover {
  color: #c81704;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0;
  bottom: 100%;
  border: solid 1px #c81704;
  border-radius: 0 5px 5px 5px;
  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;
  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: "\f104";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext {
  right: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext::before {
  content: "\f105";
}
.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;
}
/*!
 *  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";

/* latin-ext */
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/uSfpAbjl2kRc-p4IRfESlvY6323mHUZFJMgTvxaG2iE.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: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/ASmipTgPwTrjcfmzf6Zfwg.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: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/ASmipTgPwTrjcfmzf6Zfwg.woff2") format("woff2");
}
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/mx466fsxfR1AA3OwUm3waQ.woff") format("woff");
}
.eds_news_Firefly .EDN_clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.eds_news_Firefly .EDN_clear.EDN_separator {
  visibility: visible;
  height: 14px;
  width: auto;
  border: solid 1px #bab8b4;
  border-left-style: none;
  border-right-style: none;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
}
.eds_news_Firefly * {
  box-sizing: content-box;
}
.eds_news_Firefly .eds_openModal {
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_news {
  font-size: 12px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news strong, .eds_news_Firefly.eds_subCollection_news b, .eds_news_Firefly.eds_subCollection_news strong *, .eds_news_Firefly.eds_subCollection_news b * {
  font-weight: bold;
  color: inherit;
}
.eds_news_Firefly.eds_subCollection_news em, .eds_news_Firefly.eds_subCollection_news i, .eds_news_Firefly.eds_subCollection_news em *, .eds_news_Firefly.eds_subCollection_news i * {
  font-style: italic;
  color: inherit;
}
.eds_news_Firefly.eds_subCollection_news h1, .eds_news_Firefly.eds_subCollection_news h2, .eds_news_Firefly.eds_subCollection_news h3, .eds_news_Firefly.eds_subCollection_news h4 {
  font-family: "Sanchez", serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
  color: #4E4D49;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news h1 {
  font-size: 22px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news h1 span {
  font-size: 22px;
}
.eds_news_Firefly.eds_subCollection_news h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news h2 span, .eds_news_Firefly.eds_subCollection_news h2 a {
  font-size: 20px;
}
.eds_news_Firefly.eds_subCollection_news h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news p {
  padding: 0;
  margin: 0 0 17px;
}
.eds_news_Firefly.eds_subCollection_news ul, .eds_news_Firefly.eds_subCollection_news ol {
  margin-bottom: 20px;
  padding-left: 15px;
}
.eds_news_Firefly.eds_subCollection_news ul ul, .eds_news_Firefly.eds_subCollection_news ul ol, .eds_news_Firefly.eds_subCollection_news ol ul, .eds_news_Firefly.eds_subCollection_news ol ol {
  margin-bottom: 0;
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_news ul li, .eds_news_Firefly.eds_subCollection_news ol li {
  padding: 0;
  margin: 0 0 2px;
}
.eds_news_Firefly.eds_subCollection_news ul {
  list-style-type: disc;
}
.eds_news_Firefly.eds_subCollection_news ul ul {
  list-style-type: circle;
}
.eds_news_Firefly.eds_subCollection_news ul ul ul {
  list-style-type: square;
}
.eds_news_Firefly.eds_subCollection_news img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news blockquote, .eds_news_Firefly.eds_subCollection_news blockquote p {
  color: #707070;
  font-size: 13px;
  font-style: italic;
  padding: 10px 0;
  margin: 0;
  line-height: 16px;
}
.eds_news_Firefly.eds_subCollection_news blockquote:before, .eds_news_Firefly.eds_subCollection_news blockquote:after, .eds_news_Firefly.eds_subCollection_news q:before, .eds_news_Firefly.eds_subCollection_news q:after {
  content: none;
}
.eds_news_Firefly.eds_subCollection_news pre {
  font-family: Lucida Console, monospace;
  margin-bottom: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.eds_news_Firefly.eds_subCollection_news a {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news a:hover {
  text-decoration: underline;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news img {
  border: none;
}
.eds_news_Firefly.eds_subCollection_news::after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper {
  text-align: right;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper a {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/rssLink/background/predefined/rss-icon.png") no-repeat scroll 6px 6px #B3B1AD;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 3px 6px 2px 25px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-family: Arial;
  line-height: 21px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .gm-style img {
  max-width: none;
}
.eds_news_Firefly.eds_subCollection_news .article_gallery {
  margin-top: 10px;
  margin-bottom: 20px;
}
.eds_news_Firefly .fb-comments, .eds_news_Firefly .fb-comments iframe[style], .eds_news_Firefly .fb-comments > span {
  width: 100% !important;
}
.eds_news_Firefly .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Firefly.eds_subCollection_tagCloud, .eds_news_Firefly.eds_subCollection_calendar, .eds_news_Firefly.eds_subCollection_categoryMenu, .eds_news_Firefly.eds_subCollection_search,
.eds_news_Firefly .callendar_table_container,
.eds_news_Firefly .archive_list {
  margin: 0;
  padding: 0 !important;
}
.eds_news_Firefly .callendar_table_container {
  margin-bottom: 17px;
}
.eds_news_Firefly .EDN_module_box .edn_module_title,
.eds_news_Firefly .edncf_AdvancedSearch .edn_module_title, .eds_news_Firefly.eds_subCollection_tagCloud .edn_module_title,
.eds_news_Firefly .archive_list .edn_module_title {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  border: solid 1px #b3b3b2;
  padding: 9px 17px;
  position: relative;
  margin: 0;
  font-size: 21px;
  line-height: 1;
}
.eds_news_Firefly .EDN_module_box .edn_module_title span,
.eds_news_Firefly .edncf_AdvancedSearch .edn_module_title span, .eds_news_Firefly.eds_subCollection_tagCloud .edn_module_title span,
.eds_news_Firefly .archive_list .edn_module_title span {
  color: #505050;
  font-size: 21px;
  border: none;
  margin: 0;
  padding: 0;
  font-family: "Sanchez", serif;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}
.eds_news_Firefly .EDN_module_box .rss,
.eds_news_Firefly .archive_list .rss {
  float: right;
  width: 24px;
  height: 25px;
  margin-top: 1px;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/rss-icon-big.png") 0 0 no-repeat;
}
.eds_news_Firefly .EDN_module_box .rss span,
.eds_news_Firefly .archive_list .rss span {
  display: none;
}
.eds_news_Firefly .EDN_module_box .rss:hover,
.eds_news_Firefly .archive_list .rss:hover {
  background-position: 0 -30px;
}
.eds_news_Firefly .archive_list .export {
  position: absolute;
  bottom: -20px;
  right: 2px;
  background: #B3B1AD url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/events/iCalendarExport/background/predefined/export-icon.png") no-repeat 96% 3px;
  border-radius: 2px;
  border: solid 1px #9F9E99;
  color: white;
  font-size: 10px;
  line-height: 15px;
  font-family: Arial;
  padding: 0 16px 0 5px;
  transition: background 0.2s ease-in-out 0s;
}
.eds_news_Firefly .archive_list .export:hover {
  background-color: #C9C9C9;
  text-decoration: none;
}
.eds_news_Firefly .archive_list .export span {
  font-family: Arial;
  font-size: 10px;
  color: #fff;
  line-height: 15px;
  display: inline-block;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article {
  margin-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article::after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container {
  position: relative;
  height: auto;
  width: auto;
  padding: 9px 17px;
  border: solid 1px #bab8b4;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  margin-bottom: 15px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container::after {
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  position: absolute;
  bottom: -7px;
  left: 44px;
  width: 12px;
  height: 12px;
  content: "";
  z-index: 2;
  border-bottom: solid 1px #bab8b4;
  border-left: solid 1px #bab8b4;
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h1 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 20px;
  border: none;
  color: #606060;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2 a {
  color: #606060;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 0 15px 15px 0;
  line-height: 0;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
  display: inline-block;
  line-height: 0;
  font-size: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date span {
  display: block;
  text-align: center;
  font-family: "Sanchez", serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date span.EDN_publish-day {
  font-size: 28px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer img {
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date {
  position: relative;
  display: block;
  padding: 0 15px;
  top: 0;
  bottom: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date span {
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink::before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/photo-24-32.png") no-repeat 0 0;
  transition: all 300ms linear;
  content: "";
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 13px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink:hover::before {
  opacity: 0.8;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container {
  padding: 4px 15px;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
  background-color: #fcfbf9;
  margin-bottom: 15px;
  overflow: hidden;
  line-height: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p {
  padding: 0 0 0 22px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-date {
  margin: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventDateIcon/predefined/EDN_event-date-icon.png") no-repeat 0 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-location {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventLocationIcon/predefined/location-icon.png") no-repeat 0 0;
  margin: 10px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/exportEvent/background/predefined/export-icon.png") no-repeat scroll 96% 3px #B3B1AD;
  border-color: #9F9E99;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  float: right;
  font-size: 10px;
  line-height: 15px;
  height: 15px;
  padding: 0 16px 0 5px;
  margin-top: 2px;
  text-transform: uppercase;
  font-family: Arial;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container > ul {
  padding: 5px 0 5px 16px;
  margin: 0;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container > ul > li {
  list-style-type: circle;
  padding: 0 0 0 5px;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin: 0 5px 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .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_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Sanchez", serif;
  font-size: 22px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content > h3 {
  margin-bottom: 5px;
  font-size: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container {
  max-width: 100%;
  float: left;
  margin: 3px 16px 10px 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a {
  padding: 5px;
  border: solid 1px #e0deda;
  border-radius: 4px;
  float: left;
  background-color: #fff;
  max-width: 100%;
  line-height: 0;
  transition: background 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a:hover {
  border-color: #bab8b4;
  background-color: #eee;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details {
  background-color: #fcfbf9;
  margin: 8px 0 0;
  padding: 0;
  clear: both;
  overflow: hidden;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li {
  float: left;
  list-style-type: none;
  margin: 3px;
  font-size: 12px;
  color: #888;
  font-family: Arial;
  line-height: 28px;
  height: 28px;
  padding: 0 0 0 13px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li > span {
  background-color: #cac8c3;
  padding: 3px 4px;
  color: #fff;
  border-radius: 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li > a {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li.EDN_publish-date {
  background: #cac8c3 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/metaDetails/dateIcon/predefined/EDN_publish-date-icon.png") no-repeat 7px center;
  color: #fff;
  padding-left: 28px;
  padding-right: 8px;
  border-radius: 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles {
  background-color: #fcfbf9;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
  margin-bottom: 20px;
  clear: both;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > h2 {
  background: #f7f4ef url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  margin: 1px;
  padding: 7px 0 7px 15px;
  line-height: 1;
  color: #807d73;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul {
  margin: 0;
  padding: 15px 18px 8px;
  border-top: solid 1px #dbd9d3;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li {
  list-style-type: none;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li a,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li a,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a {
  margin-right: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/document.png") 0 0 no-repeat;
  padding-left: 25px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_doc, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_docx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/doc.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xls, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xlsx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/xls.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_zip {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/zip.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_rar, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_7z {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/archive.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wav, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wma, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ogg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_flac {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/audio.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mp3 {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/mp3.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_png, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_gif {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/image.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_jpg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_jpeg {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/jpg.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mpg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mpeg {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/mpg.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mp4, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xvid, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wmv, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ogv, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mov, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_avi, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mkv {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/video.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_pdf {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/pdf.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ppt, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_pptx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/ppt.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_txt {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/txt.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docDetails {
  color: #969696;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docExtension {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docFileSize {
  color: #3B3B3B;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_listDescription {
  display: block;
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li .edn_listDescription,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li .edn_listDescription {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li {
  list-style-type: none;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/related-articles-bullet.png") no-repeat 0 2px;
  padding-left: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a {
  color: #4E4D49;
  transition: color 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details {
  margin-bottom: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags {
  margin: 5px 0;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
  background-color: #fcfbf9;
  padding: 6px 9px 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating {
  font-family: Arial;
  color: #888;
  line-height: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating .article_rating, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating.rating {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags strong, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories strong {
  line-height: 21px;
  font-family: Arial;
  color: #888;
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a {
  padding: 3px 8px;
  margin: 1px;
  display: inline-block;
  background-color: #cac8c3;
  color: #fff;
  border-radius: 2px;
  font-family: Arial;
  line-height: 21px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a:hover, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a:hover {
  background-color: #bebdb9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_socialPrintWrapper {
  margin: 30px 0 20px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin {
  margin: 0 30px 0 0;
  flex-grow: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton {
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 5px 5px 3px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  font-size: 0;
  line-height: 0;
  display: inline-block;
  margin: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image {
  margin: 3px 0 10px;
  max-width: 100%;
  background-color: #e9e8e4;
  border: solid 1px #aeaca6;
  padding: 5px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image.left {
  float: left;
  margin-right: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image.right {
  margin-left: 15px;
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper {
  max-width: 100%;
  line-height: 0;
  margin-bottom: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title {
  font-family: "Sanchez", serif;
  color: #c54823;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description {
  color: #474747;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details {
  background: #CCCAC4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/background/predefined/sand.png");
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details img {
  float: left;
  margin: 0 14px 5px 0;
  border: solid 1px #afada7;
  padding: 4px;
  background-color: #e9e8e4;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details h4 {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin-bottom: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details p {
  line-height: 14px;
  font-family: Arial;
  font-size: 12px;
  color: #fff;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by a {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by a:hover {
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .EDN_connect-with {
  border-top: solid 1px #d9d8d3;
  margin-top: 17px;
  padding-top: 15px;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/author-social-icons.png") no-repeat center center;
  color: #fff;
  text-decoration: none;
  font-family: Arial;
  font-size: 12px;
  line-height: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button:hover {
  text-decoration: underline;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/authorRss/background/predefined/rss-icon-small.png") no-repeat scroll 6px 4px #B3B1AD;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 3px 6px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  text-indent: -9999px;
  margin: 0 15px;
  width: 15px;
  height: 14px;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social {
  text-indent: -9999px;
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: #b4b2ac;
  border-radius: 50%;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social:hover {
  background-color: #c0beb7;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.facebook {
  background-position: 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.twitter {
  background-position: -78px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.linked_in {
  background-position: -117px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.google_plus {
  background-position: -39px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.youtube {
  background-position: -199px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.instagram {
  background-position: -158px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.website {
  background-position: -241px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.contact, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.full_bio {
  padding: 3px 0 3px 20px;
  float: right;
  margin: 2px 0 0 33px;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/contactAndBiographyLink/icons/predefined/contact-biography-icon.png") 0 0 no-repeat;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.contact {
  background-position: 0 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.full_bio {
  background-position: 0 -87px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul {
  margin: 0 15px 20px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0 10px 10px 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a {
  display: block;
  line-height: 0;
  transition: all 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a:hover {
  border-color: #FFFFFF;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.7);
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.eds_news_Firefly.eds_subCollection_news .edn_article_map {
  margin: 15px;
  border: solid 5px #e9e8e6;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .gvContentTable {
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .gm-style img {
  max-width: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readMoreWrapper {
  text-align: right;
  margin-top: 10px;
  clear: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readmore.EDN_readMoreButton {
  display: inline-block;
  color: #6d6b6b;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 7px 12px;
  line-height: 1;
  background-color: #d5d3ce;
  border: solid 1px #cac8c3;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readmore.EDN_readMoreButton:hover {
  background: #e1e0dd none;
  text-decoration: none;
  color: #6d6b6b;
  border-color: #cac8c3;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container {
  background: #CCCAC4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/customFields/background/predefined/sand.png");
  border-radius: 6px;
  padding: 10px 16px;
  margin: 15px 0;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 5px;
  color: #fff;
  font-family: Arial;
  vertical-align: top;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 2px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 1.2;
  vertical-align: middle;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background-color: #9c9b97;
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  border-radius: 50%;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35), inset 0px 0px 6px rgba(0, 0, 0, 0.24);
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon::after {
  font-family: Arial;
  font-weight: bold;
  height: 16px;
  left: 0;
  padding: 1px 0 0 1px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 16px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  content: "x";
  font-size: 20px;
  line-height: 12px;
  color: #888;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon::after {
  color: #C54823;
  content: "✓";
  font-size: 15px;
  line-height: 17px;
}
.eds_news_Firefly.eds_subCollection_news .admin_actions {
  float: right;
  line-height: 1;
  background-color: #fcfbf9;
  border: solid 1px #dbd9d3;
  border-radius: 2px;
  line-height: 25px;
  height: 25px;
  margin-left: 5px;
}
.eds_news_Firefly.eds_subCollection_news .admin_actions span {
  line-height: 2;
}
.eds_news_Firefly.eds_subCollection_news .admin_action {
  margin: 0 5px;
  padding-left: 23px;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  line-height: 25px !important;
  height: 25px;
}
.eds_news_Firefly.eds_subCollection_news .admin_action.edit {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/edit.png");
}
.eds_news_Firefly.eds_subCollection_news .admin_action.publish, .eds_news_Firefly.eds_subCollection_news .admin_action.publish_article {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/publish.png");
}
.eds_news_Firefly.eds_subCollection_news .bread_crumbs {
  margin: 0 0 10px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline {
  border: 1px solid #BAB8B4;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  border-radius: 1px;
  padding: 6px 6px 0;
  margin: 6px;
  background-color: #f6f4f0;
  display: inline-block;
  margin: 0 8px 16px;
  vertical-align: top;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container {
  margin: 0;
  float: none;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container a img {
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container.EDN_blankImage {
  border-color: transparent !important;
  background-color: transparent !important;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 {
  font-size: 17px;
  padding: 4px 8px 6px;
  text-decoration: none;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a {
  font-size: 17px;
  text-decoration: none;
  color: #4e4d49;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary {
  padding: 0 8px;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary p + p {
  margin-top: 7px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails {
  border: solid 1px #bab8b4;
  border-left: none !important;
  border-right: none !important;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/background/predefined/sand.png");
  padding: 9px 14px 7px;
  margin: 5px -7px -1px;
  overflow: hidden;
  box-sizing: content-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails > span {
  color: #323232;
  padding-left: 22px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails .EDN_inLineArticleDate {
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/dateIcon/predefined/date.png") 0 0 no-repeat;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails .EDN_comments {
  float: right;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/commentsIcon/predefined/comments.png") 0 center no-repeat;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews {
  padding: 3px 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews > div {
  float: left;
  color: #bfbfbf;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews .EDN_numberOfViews {
  float: right;
  padding-left: 30px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxNumberViews/icon/predefined/views.png") 0 center no-repeat;
  margin-top: 3px;
  color: #bfbfbf;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator {
  padding: 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul {
  margin: 0;
  padding: 0;
  border-top: solid 1px #bab8b4;
  border-bottom: solid 1px #bab8b4;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  line-height: 1;
  margin-bottom: -1px 0;
  display: inline-block;
  color: #25282a;
  text-decoration: none;
  font-family: "Sanchez", serif;
  font-size: 14px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active {
  background-color: #c54823;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper {
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: absolute;
  left: auto;
  right: auto;
  top: 0;
  width: 100%;
  padding: 15px 0;
  visibility: hidden;
  z-index: 0;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_article_map,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_gallery,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  position: relative;
  visibility: visible;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion {
  padding: 15px 0;
  margin-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section {
  display: block;
  margin-bottom: 0;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title {
  font-size: 18px;
  color: #25282a !important;
  text-shadow: none !important;
  padding: 15px 60px 15px 0;
  margin: 0;
  line-height: 1;
  border-bottom: solid 1px #bab8b4;
  cursor: pointer;
  font-family: "Sanchez", serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrow.png") no-repeat 97% center;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c54823 !important;
  text-decoration: none;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrowHover.png");
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  border-bottom: solid 1px #bab8b4;
  padding: 15px 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_article_map,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_gallery,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_comments,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c54823 !important;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrowActive.png");
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_article_map,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_articleLinks {
  margin-top: 10px !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  background: #c54823 none;
  float: right;
  padding: 7px 12px;
  border: solid 1px #ae3a17;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 17px 0 0;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: 1px solid #dbd9d3;
  border-radius: 3px;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png") 0 0 #f7f4ef;
  color: #807d73;
  line-height: 1;
  margin: 1px;
  padding: 7px 15px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fcfbf9;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F7F4F0;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border-bottom: solid 1px #dbd9d3;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  font-size: 12px;
  border: none;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 10px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label::after {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  transition: opacity 200ms linear;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label:hover::after {
  opacity: 1;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label::after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label::after {
  background-color: #d9534f;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label::after {
  background-color: #f0ad4e;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_Firefly.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Firefly .admin_action {
  padding-left: 17px;
  margin-right: 10px;
}
.eds_news_Firefly .admin_action.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/pencil_small.png") no-repeat 0 0;
}
.eds_news_Firefly .admin_action.publish_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/check_small.png") no-repeat 0 0;
}

.eds_news_Firefly.eds_subCollection_news .EDN_category-info {
  margin: 16px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_category-info > h1 {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  border-bottom: solid 1px #b3b3b2;
  border-top: solid 1px #b3b3b2;
  padding: 19px 21px;
  color: #505050;
  font-size: 24px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}
.eds_news_Firefly.eds_subCollection_news .EDN_category-info .EDN_category-description {
  margin: 10px 2.5% 25px;
}
.eds_news_Firefly.eds_subCollection_news .child_categories {
  overflow: hidden;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .child_categories + span {
  position: relative;
  padding-top: 40px;
  display: block;
}
.eds_news_Firefly.eds_subCollection_news .child_categories + span::before {
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  border: solid 1px #bab8b4;
  border-left-style: none;
  border-right-style: none;
  border-top-style: none !important;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 1% 25px;
  width: 30%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item {
    width: 100%;
  }
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a {
  font-family: "Sanchez", serif;
  color: #505050;
  font-size: 18px;
  display: block;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a img {
  padding: 1.7%;
  border: solid 1px #e0deda;
  border-radius: 4px;
  background-color: #fff;
  transition: background 0.2s linear;
  display: block;
  max-width: 96%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a img {
    width: 96%;
  }
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a:hover img {
  border-color: #bab8b4;
  background-color: #eee;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date {
  line-height: 1.4;
  padding: 10px 15px;
  width: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span {
  color: #fff;
  display: block;
  font-family: "Sanchez", serif;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span.EDN_publish-day {
  font-size: 28px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer {
  position: relative;
  line-height: 0;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_featured-date {
  position: absolute;
  top: 0;
  left: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer a {
  line-height: 0px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a:hover {
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_summary > p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_summary > p + p {
  margin-top: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image {
  margin-bottom: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_featured-date {
  float: left;
  margin: 0 10px 5px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro {
  position: relative;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a {
  color: #606060;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles {
    float: none;
    width: auto;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_image-container a {
  padding: 1.3% 1.6%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content {
  padding: 0 4.6% 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content .EDN_meta-details li {
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content .EDN_meta-details li.EDN_publish-date {
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles.EDN_second {
  padding-right: 0;
  padding-left: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles {
  margin: 27px 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div {
  display: inline-block;
  width: 44%;
  max-width: none;
  margin: 0 2.5% 15px;
  float: none;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div {
    width: auto;
    display: block;
    margin: 0 0 15px;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container {
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a {
  color: #4E4D49;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover img {
  border-color: #acaaa4;
  background-color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a .EDN_six_articles_title {
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a img {
  border: solid 1px #e0deda;
  background-color: #fff;
  padding: 5px;
  margin: 3px 12px 5px 0;
  float: left;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box {
  margin: 0 17px 11px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a {
  color: #474747;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  display: block;
  overflow: hidden;
  transition: all 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a img {
  padding: 1.5%;
  border: solid 1px #b8b6b1;
  border-radius: 4px;
  background-color: #e9e8e4;
  margin: 1px 11px 5px 0;
  float: left;
  transition: all 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a:hover img {
  border-color: #acaaa4;
  background-color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box.EDN_activeclass a {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .edn_sidebarBoxTitle {
  margin-bottom: 11px;
}

.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox {
  margin-top: -1px;
  margin-bottom: -1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title {
  position: relative;
  height: auto;
  width: auto;
  padding: 9px 17px;
  border: solid 1px #bab8b4;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  margin: 0 -1px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title::after {
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  position: absolute;
  bottom: -7px;
  left: 16%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  content: "";
  z-index: 2;
  border-bottom: solid 1px #bab8b4;
  border-left: solid 1px #bab8b4;
  border-top: none !important;
  border-right: none !important;
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span {
  color: #606060;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
  text-transform: none;
  line-height: 1;
  font-size: 20px;
  display: block;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS {
  float: right;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS > span {
  color: #c54823;
  text-decoration: none;
  font-size: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS:hover > span {
  color: #c54823;
  text-decoration: underline;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper {
  margin: 0 -1px;
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 15px;
  border: solid 1px #BAB8B4;
  border-top: none !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox {
  border: solid 1px #bab8b4;
  border-top: none;
  margin: 0 -1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a {
  text-decoration: none;
  font-family: "Sanchez", serif;
  color: #c94c27;
  display: block;
  line-height: 1;
  position: relative;
  padding: 5px 0;
  transition: all 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a > span {
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a::before {
  content: "";
  border-right: solid 1px #bab8b4;
  position: absolute;
  width: 16%;
  top: 0;
  bottom: 0;
  transition: all 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate {
  padding: 10px 0;
  width: 16%;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate > span {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: color 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishDay {
  color: #25282a;
  font-size: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth {
  color: #c54823;
  font-size: 20px;
  text-transform: uppercase;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishYear {
  font-size: 14px;
  color: #25282a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox {
  width: 80%;
  padding: 0 4%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTitle {
  display: block;
  font-size: 21px;
  padding-bottom: 3px;
  color: #25282a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  color: #6c6c6c;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.4;
  font-weight: normal;
  transition: color 200ms ease-in-out;
  padding-left: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation {
  margin-right: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/location/predefined/location.png") no-repeat 0 1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/time/predefined/time.png") no-repeat 0 1px;
  display: block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover {
  text-decoration: none;
  background-color: #eeebe6;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTitle {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass .EDN_eventBox .EDN_eventBoxTitle {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager {
  margin: 0 -1px -1px;
  text-align: center;
  float: none;
  border: solid 1px #aaaaaa;
  border-top: none;
  padding: 12px 0;
  border-radius: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #b4b4b4;
  margin: 0 7px;
  float: none;
  box-shadow: none;
  text-indent: -9999px;
  padding: 0;
  border: none !important;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active {
  background-color: #fd6516;
  box-shadow: 1px 1px 1px 0px #8A8987, 0 0 8px 2px #FFFFFF, 0 0 0 5px #C4C3C0, 2px 2px 2px rgba(255, 255, 255, 0.2) inset;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper {
  margin: 0;
  padding: 12px 0;
  width: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper .trigger, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .trigger {
  width: 90%;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article {
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article > div + .eds_timeLineThumbnail {
  top: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 264px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail::after {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 0;
  left: 127px;
  width: 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineGuideline/predefined/timeline.png") center 0 repeat-y;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a {
  border: 1px solid #bab8b4;
  border-radius: 9px;
  line-height: 0;
  font-size: 0;
  display: block;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  margin: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime {
  color: #e34d20;
  font-family: "Sanchez", serif;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  float: right;
  color: #505050;
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime + a {
  margin-top: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation {
  display: block;
  padding-left: 20px;
  font-family: "Sanchez", serif;
  font-weight: 300;
  font-size: 17px;
  color: #888;
  margin: 5px 0 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineLocationIcon/predefined/timelineLocation.png") no-repeat 0 1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle {
  background-color: #f6f4f0;
  border: 1px solid #bab8b4;
  border-radius: 1px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  padding: 10px 15px 15px;
  margin: 6px 6px 6px 289px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle::after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_readMoreButton {
  float: right;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > div {
  border-top: solid 1px #d9d9d9;
  padding: 15px 0 0;
  margin-top: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > div::after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 5px 0 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a {
  font-size: 19px;
  line-height: 1;
  color: #505050;
  font-weight: normal;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a:hover {
  color: #e34d20;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_article_content {
  color: #7a7a7a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin {
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin a {
  height: 20px !important;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration {
  float: right;
  font-family: Arial;
  color: #bababa;
  text-transform: lowercase;
  font-size: 13px;
  text-shadow: 0 1px 0 #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span {
  padding-left: 20px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineEventTime/predefined/timelineTime.png") no-repeat 0 center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar {
  float: left;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineExportEvent/predefined/timelineExportCalendar.png") no-repeat center center;
  margin: -3px 10px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail::after {
  top: 80px;
  left: 202px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail > a {
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime {
  font-size: 13px;
  margin-top: 0;
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  font-size: 40px;
  display: block;
  float: none;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLine {
  margin: 0;
  padding-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article:last-child .eds_timeLineThumbnail::after {
  display: none;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
    float: none;
    margin: 14px;
    width: auto !important;
    position: relative !important;
    overflow: hidden;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a img {
    width: 100%;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail::after {
    display: none !important;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle {
    margin: 50px 20px 20px !important;
    padding-left: 15px;
    clear: both;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments {
  margin: 20px 0;
  background-color: #dfddd9;
  border-radius: 6px;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .submit {
  display: inline-block;
  margin: 0 10px 7px 0;
  text-transform: none;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 27px;
  line-height: 27px;
  background-color: #c54823;
  background-image: none;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8), 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .submit:hover {
  background: #bb3811 none;
  text-decoration: none;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment > h3 {
  color: #807d73;
  font-size: 22px;
  line-height: 25px;
  padding: 8px 15px 7px;
  background: #f2f0eb url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/commentForm/title/background/predefined/sand.png");
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  margin: 0 0 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box {
  margin: 0 16px;
  padding-bottom: 25px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.left {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #8a8985;
  width: 23%;
  padding: 6px 2% 0 0;
  text-align: right;
  vertical-align: top;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right {
  padding: 0;
  width: 75%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  font-size: 14px;
  line-height: 1;
  font-family: Arial;
  color: #4E4D49;
  background-color: #fcfbf9;
  width: 95%;
  padding: 7px 2%;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fcfbf9 #fcfbf9 #c8c7c5;
  margin: 0 0 15px 0;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:hover,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:hover {
  border-color: #cdccc7;
  background-color: #fcfbf9;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:focus,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:focus {
  background-color: #fff;
  border-color: #cdccc7;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  min-height: 120px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment {
  background: #c5c3bd url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/numberOfComments/background/predefined/sand.png");
  padding: 11px 15px 10px;
  margin: 0;
  font-family: Arial;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  border-radius: 3px 3px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list {
  margin: 25px 0 15px;
  display: block;
  padding: 0 16px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 10%;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes {
  width: 7%;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details {
  width: 20%;
  text-align: center;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_author {
  color: #919191;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_date_time {
  font-size: 11px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
  color: #555555;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container {
  float: left;
  width: 80%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content {
  margin: 0 0 0 25px;
  min-height: 73px;
  padding: 10px 11px;
  background-color: #fcfbf9;
  color: #4E4D49;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fbfafa #fbfafa #c8c7c5;
  border-radius: 3px;
  position: relative;
  box-shadow: 2px 2px 1px -2px rgba(0, 0, 0, 0.3) inset;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fcfbf9;
  border-style: none none none solid;
  border-width: 0 0 0 1px;
  border-color: transparent transparent transparent #c8c7c5;
  position: absolute;
  left: -8px;
  top: 12px;
  box-shadow: 2px 0px 1px -1px rgba(0, 0, 0, 0.3) inset;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content p {
  margin: 0;
  padding: 0 0 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions {
  margin: 2px 0 3px;
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a {
  margin-left: 5px;
  float: left;
  font-size: 10px;
  text-transform: uppercase;
  background-color: #aaa8a3;
  border-radius: 2px;
  line-height: 20px;
  height: 20px;
  padding: 0 7px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a:hover {
  background-color: #b9b7b2;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fcfbf9 #fcfbf9 #c8c7c5;
  padding: 5px;
  background-color: #fcfbf9;
  width: 80%;
  min-height: 100px;
  color: #4E4D49;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  border: 0;
  text-decoration: none;
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a span {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  background-color: #aaa8a3;
  border-radius: 2px;
  line-height: 20px;
  height: 20px;
  padding: 0 7px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-color: #b9b7b2;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level1 {
  margin-left: 5%;
  padding-top: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level0, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_Firefly .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_Firefly .edNews_latestCommentsOnForum .num_of_comment .submit {
  float: right;
  margin: 0 !important;
}
.eds_news_Firefly .edNews_latestCommentsOnForum .num_of_comment .submit i {
  font-style: normal;
}
.eds_news_Firefly .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 6px 0 0;
  padding: 0;
}
.eds_news_Firefly .edNews_latestCommentsOnForum .add_comment > h3 {
  margin: 0 !important;
}

.eds_news_Firefly .article_pager,
.eds_news_Firefly .article_pagination {
  text-align: right;
  float: right;
  margin: 15px 0;
}
.eds_news_Firefly .article_pager table,
.eds_news_Firefly .article_pagination table {
  margin: 0;
  border-radius: 3px;
}
.eds_news_Firefly .article_pager table span,
.eds_news_Firefly .article_pagination table span {
  padding: 10px 14px 9px 15px;
  float: left;
  border: 1px solid #b1b0ab;
  color: #fff;
  background-color: #cac8c3;
  margin-left: -1px;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  line-height: 1;
  font-family: Arial;
}
.eds_news_Firefly .article_pager table td:first-child span, .eds_news_Firefly .article_pager table td:first-child a,
.eds_news_Firefly .article_pagination table td:first-child span,
.eds_news_Firefly .article_pagination table td:first-child a {
  border-radius: 3px 0 0 3px;
}
.eds_news_Firefly .article_pager table td:last-child span, .eds_news_Firefly .article_pager table td:last-child a,
.eds_news_Firefly .article_pagination table td:last-child span,
.eds_news_Firefly .article_pagination table td:last-child a {
  border-radius: 0 3px 3px 0;
}
.eds_news_Firefly .article_pager a,
.eds_news_Firefly .article_pagination a {
  padding: 10px 14px 9px 15px;
  float: left;
  border: 1px solid #e0e0e0;
  color: #bababa;
  background-color: #fcfbf9;
  margin-left: -1px;
  transition: color, 0.2s, ease-in-out;
  line-height: 1;
  font-family: Arial;
  text-decoration: none;
}
.eds_news_Firefly .article_pager a:first-child,
.eds_news_Firefly .article_pagination a:first-child {
  border-radius: 3px 0 0 3px;
}
.eds_news_Firefly .article_pager a:last-child,
.eds_news_Firefly .article_pagination a:last-child {
  border-radius: 0 3px 3px 0;
}
.eds_news_Firefly .article_pager a:hover,
.eds_news_Firefly .article_pagination a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly .article_pager a.active,
.eds_news_Firefly .article_pagination a.active {
  font-weight: bold;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-color: #b1b0ab;
  background-color: #cac8c3;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly .article_pager a.active:hover,
.eds_news_Firefly .article_pagination a.active:hover {
  color: #c54823;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper {
  margin: 15px 0;
  width: 100%;
  text-align: center;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper .trigger {
  display: inline-block;
  margin: 0;
  border: solid 1px #e0e0e0;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #fcfbf9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/load-more-arrow.png") no-repeat 95% center;
  text-decoration: none;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span {
  display: inline-block;
  min-width: 189px;
  padding: 8px 25px;
  font: normal 12px/1 Arial;
  color: #cac8c3;
  transition: color, 0.2s, linear;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/pagination/loadingImage/predefined/loadingArticles.gif") center center no-repeat #d1cfc9;
  opacity: 0;
  transition: background, 0.5s, ease-in-out;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay > span {
  display: none;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer span {
  color: #c54823;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper.loading .trigger {
  border-color: #b1b0ab;
  background-color: #cac8c3;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay > span {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 7px 0;
}
.eds_news_Firefly .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #4E4D49;
  font-family: "Sanchez", serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Firefly.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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}

.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper {
  margin: 17px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div {
  overflow: hidden;
  margin-bottom: 6px;
  padding-left: 60px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div a {
  display: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category {
  font-family: Arial;
  display: inline;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category > span {
  display: inline-block;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 8px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover > span {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category {
  color: #000;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.hasChild > div {
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.hasChild:hover > div .category {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category {
  color: #474747;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 10px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 20px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 30px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 40px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 50px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss {
  display: block;
  float: right;
  width: 15px;
  height: 14px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuRSS/predefined/rss-icon-small.png") 0 0 no-repeat;
  text-indent: -9999px;
  margin-top: 2px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:hover {
  background-position: 0 -56px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuExpandCollapse/predefined/expand-collapse.png") no-repeat 4px 4px;
  width: 13px;
  height: 7px;
  padding: 4px;
  text-indent: -9999px;
  display: block;
  float: right;
  z-index: 1;
  margin: 2px 6px;
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse {
  background-position: 4px -54px;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image {
  display: block;
  float: left;
  background-color: #E9E8E4;
  border: 1px solid #B8B6B1;
  border-radius: 4px 4px 4px 4px;
  margin-right: 8px;
  padding: 3px;
  width: 42px;
  height: 42px;
  transition: background 0.2s linear;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover {
  background-color: #fff;
  border-color: #ACAAA4;
}

.eds_news_Firefly.eds_subCollection_calendar {
  font-size: 12px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
  width: 50%;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select {
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  box-sizing: border-box;
  width: 108%;
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  margin: 0 40px 0 0;
  position: relative;
  z-index: 2;
  padding: 10px;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
  margin-top: -1px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  border: solid 1px #b3b3b2;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/monthBackground/predefined/sand.png");
  color: #505050;
  padding: 5px 5%;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  font-family: "Sanchez", serif;
  font-size: 21px;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  font-size: 0;
  line-height: 0;
  width: 25px;
  height: 29px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/next_prev_months-bg.png");
  background-repeat: no-repeat;
  background-position: -25px 0;
  float: right;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  background-position: -25px -29px;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a {
  background-position: 0 0;
  float: left;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a:hover {
  background-position: 0 -29px;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td a {
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.week_days {
  background-color: #b6b5b0;
  border: solid 1px #dcdbd8;
  border-left-style: none;
  border-right-style: none;
  padding: 7px 0;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.3), inset 0 -5px 5px -5px rgba(0, 0, 0, 0.3);
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td:first-child.day {
  border-left-style: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td:last-child.day {
  border-right-style: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day {
  border: solid 1px #cac8c3;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > span {
  color: #50504f;
  background-color: #e0dfdc;
  display: block;
  padding: 10px;
  background-repeat: no-repeat;
  background-position: right top;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a:hover {
  text-decoration: none;
  color: #50504f !important;
  background-color: #f2f1ee !important;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #50504f;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected > a {
  background-color: #f2f1ee !important;
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > span {
  color: #b1b0ae;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > span {
  background-color: #c9c7c2 !important;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) !important;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_posts > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_posts.has_events > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts_has_events.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_events > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_events.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .month_selection td {
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td {
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.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_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  text-align: left;
  padding: 9px 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #c54823;
  border-radius: 3px;
  margin: 0;
  padding: 2px 5px;
  background-color: #fcfbf9;
  display: block;
  text-align: left;
  color: #888;
  text-decoration: none;
  font-size: 10px;
  line-height: 12px;
  height: auto;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a:hover {
  color: #4E4D49;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #ff8400;
  background-color: #fcfbf9;
  box-shadow: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions {
  text-align: right;
  margin: 5px 15px 5px 0;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a {
  background-color: #B3B1AD;
  border-color: #9F9E99;
  border-radius: 2px 2px 2px 2px;
  border-style: solid;
  border-width: 1px;
  color: white;
  display: inline-block;
  padding: 0 5px;
  margin-left: 2px;
  line-height: 1;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a span {
  font-size: 10px;
  line-height: 15px;
  height: 15px;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a.icalendar_export {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/topCalendarActions/icalendarExportIcon/predefined/export-icon.png");
  background-repeat: no-repeat;
  background-position: 96% 4px;
  padding: 0 16px 0 5px;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a.icalendar_export:hover {
  background-color: #c9c9c9;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper {
  margin: 17px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul {
  margin: 0 10px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li {
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li div > a {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a {
  color: #474747;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a > span {
  display: inline-block;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 8px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover > span {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.opened > div > a.edn_archive-year {
  color: #000;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.opened > div > a.edn_archive-year:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-year,
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-month {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/archive/archiveMenuExpandCollapse/predefined/expand-collapse.png") no-repeat 4px 4px;
  width: 13px;
  height: 7px;
  padding: 4px;
  text-indent: -9999px;
  display: block;
  float: right;
  margin: 2px 0;
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse.collapse {
  background-position: 4px -54px;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul {
  margin: 20px 17px 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li {
  padding: 0 0 10px;
  background-image: none !important;
  line-height: 15px;
  margin: 0;
  list-style-type: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a {
  color: #474747;
  text-decoration: none;
  display: block;
  font-family: Arial;
  font-size: 12px;
  line-height: 15px;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a span {
  background-color: #dfddd9;
  padding: 4px;
  color: #858181;
  font-weight: normal;
  border-radius: 3px;
  display: block;
  font-size: 12px;
  font-family: Arial;
  text-decoration: none;
  line-height: 15px;
  display: block;
}

.eds_news_Firefly.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none 0 none;
}
.eds_news_Firefly.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/indicator.gif") !important;
  background-position: 70% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_Firefly.eds_subCollection_search .search_input {
  height: 52px;
  overflow: hidden;
  margin: 0;
  padding: 5px 0;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type=text] {
  line-height: 50px;
  height: 50px;
  float: left;
  width: 75%;
  padding: 0 21% 0 3%;
  margin: 0;
  border: none;
  background: none transparent;
  font-family: "Sanchez", serif;
  color: #908b82;
  font-size: 22px;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type=text]:hover {
  border-color: #cdccc7;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  background-color: #edebe5;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type=text]:focus {
  border-color: #cdccc7;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  background-color: #fbf9f4;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search {
  background: #c54823 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/searchSubmit/background/predefined/search-icon.png") no-repeat center center;
  width: 38px;
  height: 38px;
  line-height: 38px;
  float: right;
  margin: -46px 6px 0 0;
  border: solid 1px #ae3a17;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search span {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside > .input input[type=text] {
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  padding: 0 3%;
  width: 93%;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside > .input input[type=text].acLoading {
  background-position: 85% center !important;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside .do_search {
  background-position: 90% center;
  width: auto;
  padding: 0 35px 0 10px;
  margin: 10px 1% 0 0;
  border-radius: 3px;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside .do_search span {
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search *,
.eds_news_Firefly.eds_subCollection_search .ednSbl_search *::before,
.eds_news_Firefly.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  position: relative;
  z-index: 2;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #cecece;
  border-color: #eee;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 Arial;
  display: inline-block;
  border: solid 1px #e4e4e4;
  text-decoration: none;
  color: #878787;
  transition: all 300ms;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #fff;
  z-index: 2;
  transition: all 300ms;
}
.eds_news_Firefly.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #4E4D49;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #fff;
  border: solid 1px #eee;
  color: #363636;
}
.eds_news_Firefly .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_Firefly .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #e6e6e6;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 17px;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  color: #908b82;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  outline: none;
  margin: 0;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  position: relative;
  overflow: hidden;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  box-sizing: border-box;
  width: 108%;
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b4b1 !important;
  color: rgba(0, 0, 0, 0.3) !important;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type=text] {
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  outline: none;
  padding: 6px 40px 6px 10px;
  margin: 0;
  background: #f2f0ec none;
  width: 100%;
  height: 38px;
  box-sizing: border-box;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  opacity: 1;
  cursor: unset;
  background: none;
  vertical-align: unset;
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before {
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  margin-top: 1px;
  border-style: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  border-radius: 4px;
  background-color: #f2f0ec;
  background-image: none !important;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Firefly.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_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Firefly.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;
  color: #474747;
  font-family: Arial;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding-left: 23px;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #fcfbf9;
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 17px;
  color: #f1efeb;
  border-radius: 2px;
  content: "";
  font-family: Arial;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  width: 16px;
  height: 16px;
  padding: 1px 0 0 1px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  content: "✓";
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiDropDownList label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .ms-parent > label {
  font-size: 14px;
  color: #474747;
  font-family: Arial;
  line-height: 1.5;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label::before,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #fcfbf9;
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 17px;
  color: #f1efeb;
  border-radius: 2px;
  content: "";
  font-family: Arial;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  width: 16px;
  height: 16px;
  padding: 1px 0 0 1px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  padding: 2px 10px 2px 0;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label::before {
  content: "•";
  border-radius: 50%;
  font-size: 28px;
  height: 18px;
  width: 18px;
  line-height: 0.7;
  background-color: #b5b3af;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type=radio]:checked + label:before {
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label:before {
  content: "✓";
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 2px 10px 2px 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  font-weight: bold;
  font-family: Arial;
  font-size: 14px;
  color: #474747;
  line-height: 2;
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 16px;
  top: 5px;
  background-color: #c3c1bc;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.4) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: none;
  background: none #C54823;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.2) inset;
  height: 9px;
  top: 8px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: #fff;
  background: #f1f1f1 none;
  width: 14px;
  height: 14px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35), 0 -14px 7px -8px rgba(0, 0, 0, 0.2) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #C54823;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 21px;
  font: 10px/1 Arial;
  color: #787878;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  color: #474747;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-family: Arial;
  line-height: 1;
  outline: none;
  margin: 0;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #c54823;
  background-color: #f2f0ec;
  border-style: solid;
  border-width: 1px;
  border-color: #bdbbb5;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: #c54823 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/advancedSearch/searchSubmit/background/predefined/search-icon.png") no-repeat 80% center;
  padding: 0 65px 0 37px;
  height: 38px;
  display: inline-block;
  line-height: 38px;
  margin: 10px 2%;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
  padding: 0 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E1E0E0 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.6;
  width: 100%;
  z-index: 999;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  min-width: 160px;
  width: 112%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Firefly.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_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 30px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin-left: 15px;
}

.eds_news_Firefly.eds_subCollection_tagCloud .tags {
  overflow: hidden;
  padding: 19px;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a {
  float: left;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 0 6px;
  margin: 0 5px 4px 0;
  font-family: Arial;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  text-decoration: none;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a .tag-count {
  float: right;
  color: #c54823;
  margin: 3px -2px 0 6px;
  font-size: 11px;
  font-weight: bold;
  line-height: 15px;
  height: 15px;
  border: solid 1px #dddfe0;
  padding: 0 5px;
  border-radius: 3px;
  background-color: #fff;
}

.EDN_search.theme_Firefly {
  padding: 0px;
  border: 1px solid #e0deda;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_Firefly ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_Firefly ul li {
  margin: 1px 0;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #4E4D49;
  border: solid 1px transparent;
  border-left-style: none;
  border-right-style: none;
  line-height: 1;
}
.EDN_search.theme_Firefly ul li span a {
  color: #4E4D49;
  text-decoration: none;
}
.EDN_search.theme_Firefly ul li span a:hover {
  text-decoration: none;
  color: #c54823;
  text-decoration: none;
}
.EDN_search.theme_Firefly .acSelect {
  background-color: #fcfbf9;
  color: #4E4D49;
  border-color: #e1e1e1;
}
.EDN_search.theme_Firefly .acSelect a {
  color: #4E4D49;
}

.qtip.edn_calendarbox_Firefly {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 1;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #faf8f3;
  padding: 1px;
  border-radius: 5px;
  width: 500px;
  max-width: 95%;
  margin: 0;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
}
.qtip.edn_calendarbox_Firefly > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title {
  background: #eceae4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/date/background/predefined/sand.png");
  margin: 0;
  padding: 10px 15px;
  display: block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span {
  font-family: "Sanchez", serif;
  color: #c54823;
  font-size: 16px;
  line-height: 1;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span a {
  text-decoration: none;
  color: #c54823;
  text-decoration: underline;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: underline;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 7px 0;
  padding: 4px;
  border: solid 1px #e1dfda;
  border-radius: 3px;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article p {
  color: #4E4D49;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title {
  font-size: 14px;
  font-weight: bold;
  font-family: Arial;
  margin: 0 0 5px 0;
  padding: 0;
  color: #4E4D49;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title a {
  color: #4E4D49;
  text-decoration: none;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title a:hover {
  color: #c54823;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.location {
  line-height: 20px;
  height: 20px;
  color: #3b3b3b;
  margin-top: 5px;
  font-weight: bold;
  padding: 0 0 0 20px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/eventLocation/icon/predefined/location-icon.png") no-repeat 0 0;
  font-size: 12px;
  display: inline-block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > .content {
  color: #4E4D49;
  font: 12px Arial;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > a {
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 0 8px;
  height: 20px;
  line-height: 20px;
  background-color: #c54823;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: background 0.2s ease-in-out;
  float: right;
  clear: both;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > a:hover {
  background-color: #bb3811;
  text-decoration: none;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li {
  list-style-type: none;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/grey-bullet-arrow.png") 0 2px no-repeat;
  margin: 0;
  padding: 0 0 2px 12px;
  border: 0;
  line-height: 1;
  color: #4E4D49;
  font-family: Arial;
  font-size: 12px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > a {
  color: #4E4D49;
  text-decoration: none;
  font-family: Arial;
  font-size: 12px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > a:hover {
  color: #c54823;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > p {
  margin: 0;
  padding: 0;
  border: 0;
  font: 11px Arial;
  line-height: 1;
  color: #858181;
}

.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoriesTagsRating/rating/ratingStars/predefined/rate_stars.png");
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  height: 16px;
  top: 3px;
  left: 2px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background-position: left -32px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background-position: left -16px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting {
  float: right;
  margin: 0 0 0 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting {
    float: none;
    margin: 10px 0;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 Arial;
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
  font-style: normal;
}
.eds_news_Firefly.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_Firefly.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_Firefly.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_Firefly.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}

.eds_news_Firefly.eds_subCollection_news.eds_print .admin_action,
.eds_news_Firefly.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Firefly.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_title-container {
  background: none transparent;
  padding: 0;
  border: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_title-container::after {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container {
  background: none transparent;
  padding-left: 0;
  padding-right: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .EDN_event-date,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .EDN_event-location {
  padding-left: 0;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .export-calendar {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background: none transparent;
  text-align: left;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date span {
  color: #999;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date span.EDN_publish-day {
  font-size: 14px;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video {
  width: auto !important;
  float: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video div {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video div.EDN_article-date {
  display: block;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .article_gallery,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_relatedArticles,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_socialPrintWrapper,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .article_comments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .fb-comments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article #disqus_thread,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_article-content .EDN_meta-details {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_meta-tags,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_author-details {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image {
  border: solid 1px #ddd;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_title {
  color: #000;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_title {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsTabulator > ul {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative;
  visibility: visible;
  top: auto;
  padding: 0;
}
@import url("http://fonts.googleapis.com/css?family=BenchNine:400,300,700&subset=latin,latin-ext");

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleDate
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail
{
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #e4e4e4;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "BenchNine";
	color: #52bd23;
	font-size: 20px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "BenchNine";
	color: #52bd23;
	font-size: 16px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineEventStartIcon/predefined/timelineTime1.png");
	background-position: 0% 50%;
	color: #505050;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin
{
	font-size: 68px;
	font-weight: 300;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineLocationIcon/predefined/timelineLocationGreen.png");
	background-position: 0% 1px;
	font-family: "BenchNine";
	color: #888888;
	font-size: 17px;
	font-weight: 300;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail > a
{
	border-width: 1px;
	border-style: solid;
	border-color: #e8e8e8;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article.eds_timeLineArticle2:after
{
	background-color: #e8e8e8;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .articleTitle
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article h2 a
{
	color: #25282a;
	font-size: 35px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article h2 a:hover
{
	text-decoration: none;
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar_box a
{
	color: #2f2f2f;
	font-size: 16px;
	font-weight: bold;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar_box a:hover
{
	color: #52bd23;
	border-top-color: #ebebeb;
	border-bottom-color: #ebebeb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar_box.EDN_activeclass a
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > h2 a
{
	color: #505050;
	font-size: 22px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > h2 a:hover
{
	text-decoration: none;
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_details h1
{
	color: #25282a;
	font-size: 40px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article h3.articleTitle
{
	color: #919191;
	font-size: 22px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listCatalogDefault .EDN_category_info h1
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 30px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listCatalogDefault .EDN_category_info .EDN_categoryDescription
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news a
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news a:hover
{
	text-decoration: underline;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle
{
	background-color: #f2f2f2;
	border-width: 1px;
	border-style: solid;
	border-color: #dedede;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .EDN_article_content
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .EDN_article_content,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .EDN_article_content
{
	color: #7a7a7a;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > div,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > div
{
	border-top-color: #dedede;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineExportEvent/predefined/timelineExportCalendarGreen.png");
	background-position: 50% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/timeLineEventTime/predefined/timelineTime2Green.png");
	background-position: 0% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration
{
	text-transform: lowercase;
	text-shadow: 0px 1px 0px #ffffff;
	font-family: "Arial";
	color: #bababa;
	font-size: 13px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_tagCloud .tags a
{
	background-color: #cacaca;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_tagCloud .tags a:hover
{
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category
{
	font-family: "Arial";
	color: #25282a;
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category
{
	color: #52bd23;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse
{
	background-color: #a7abae;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/expandCollapse/predefined/expand-collapse.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse
{
	background-position: 0px -25px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .rss
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/categorsRssIcon/predefined/rss.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_simpleArticleImage
{
	border-width: 1px;
	border-style: solid;
	border-color: #efefef;
	background-color: #f7f7f7;
	box-shadow: none;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_simpleArticleImage:hover
{
	border-color: #ffffff;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_article.EDN_articleSimple .EDN_simpleArticleImage
{
	border-width: 1px;
	border-style: solid;
	border-color: #efefef;
	background-color: #f7f7f7;
	box-shadow: none;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .child_categories .EDN_catalog-item a
{
	border-width: 1px;
	border-style: solid;
	border-color: #efefef;
	background-color: #f7f7f7;
	box-shadow: none;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .child_categories .EDN_catalog-item a:hover
{
	border-color: #ffffff;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .child_categories .EDN_catalog-item a span
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 18px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .child_categories .EDN_catalog-item a:hover span
{
	text-decoration: none;
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox
{
	border-width: 1px;
	border-style: solid;
	border-color: #efefef;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .EDN_article.EDN_articleBox .EDN_imageContainerBox
{
	background-color: #f7f7f7;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li
{
	color: #9e9e9e;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li.EDN_number-views
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/boxArticleListImage/numberOfViewsIcon/predefined/icon.png");
	background-position: 0px 8px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2 a
{
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2
{
	border-bottom-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_meta-details
{
	background-color: #ebebeb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_meta-details li.EDN_publish-date
{
	background-color: #52bd23;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_meta-details li
{
	color: #838383;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articleMeta/iconSet/predefined/meta-icons.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_readmore.EDN_readMoreButton
{
	background-color: #3ec434;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_readmore.EDN_readMoreButton:hover
{
	background-color: #13a606;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ebebeb;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ebebeb;
	background-color: #fcfcfc;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventPrice
{
	font-family: "BenchNine";
	font-size: 22px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/dateIcon/predefined/date.png");
	background-position: 0% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date .export-calendar
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/exportIcon/predefined/export.png");
	background-position: 0% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-date .export-calendar:hover
{
	background-position: 0% 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .EDN_event-location
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventDetails/icons/locationIcon/predefined/location.png");
	background-position: 0% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	background-color: #3ec434;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover
{
	background-color: #13a606;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsTabulator > ul .edsTabulator_tabTrigger
{
	background-color: #50ba21;
	font-family: "BenchNine";
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsTabulator > ul .edsTabulator_tabTrigger:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active:hover
{
	background-color: #207d00;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active
{
	background-color: #207d00;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsTabulator > ul
{
	border-bottom-color: #1b6c00;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsAccordion .edsAccordion_section .edsAccordion_title
{
	background-color: #367f00;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/expand-light-green.png");
	background-position: 97% 50%;
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 17px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsAccordion .edsAccordion_section .edsAccordion_title:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title:hover
{
	background-color: #015301;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	background-color: #015301;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/collapse-light-green.png");
	background-position: 97% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags
{
	border-left-color: #b1b1b1;
	font-family: "Arial";
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a
{
	border-width: 1px;
	border-style: solid;
	border-color: #cacaca;
	background-color: #cacaca;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a:hover
{
	border-color: #979797;
	background-color: #dbdbdb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles
{
	background-color: #e6e6e6;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles h2
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 26px;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/relatedArticles/boxTitle/icon/predefined/icon.png");
	background-position: 0px 4px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #d0d0d0;
	box-shadow: inset 0px 1px 0px 0px #f4f4f4;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/relatedArticles/articleList/listBullet/predefined/bullet.png");
	background-position: 4px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li a
{
	text-decoration: none;
	color: #343638;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li a:hover
{
	text-decoration: underline;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments
{
	border-width: 1px;
	border-style: solid;
	border-color: #e6e6e6;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments > h2
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 19px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments ul li a
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_listDescription
{
	font-style: italic;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docDetails
{
	color: #969696;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docExtension
{
	font-style: italic;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docFileSize
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleLinks
{
	border-width: 1px;
	border-style: solid;
	border-color: #e6e6e6;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleLinks > h2
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 19px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleLinks ul li a
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .edn_articleLinks ul li .edn_listDescription
{
	font-style: italic;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_cf_all_fields_container
{
	background-color: #ebebeb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_cf_all_fields_container > table tr td
{
	color: #25282a;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articleCustomFields/checkBoxIcon/predefined/cf-checkbox.png");
	background-position: 0px -20px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon
{
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ebebeb;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ebebeb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader
{
	background-color: #e4e3e3;
	box-shadow: inset 0px 25px 15px -15px #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants > table tr:first-child th
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e4e4e4;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #fcfcfc;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #f4f4f4;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	font-size: 12px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .in_article_image
{
	background-color: #e6e6e6;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title
{
	font-family: "BenchNine";
	color: #52bd23;
	font-size: 19px;
	line-height: 1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro
{
	background-color: rgba(0, 0, 0, 0.52);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container h2 a
{
	text-transform: uppercase;
	color: #ffffff;
	font-size: 26px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container h2 a:hover
{
	text-decoration: underline;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro .EDN_summary-container .EDN_summary
{
	color: #ffffff;
	line-height: 14px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date strong
{
	background-color: #207d00;
	text-shadow: -1px -1px 1px #348d10;
	color: #ffffff;
	font-size: 28px;
	line-height: 26px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date em
{
	background-color: #50ba21;
	text-shadow: -1px -1px 1px #348d10;
	color: #ffffff;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date:after
{
	border-top-color: #2a8701;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent
{
	background-color: rgba(0, 0, 0, 0.52);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a
{
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover
{
	text-decoration: underline;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary
{
	color: #ffffff;
	line-height: 1.5;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleInBox2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent
{
	background-color: rgba(0, 0, 0, 0.52);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleInBox2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a
{
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleInBox2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover
{
	text-decoration: underline;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleInBox2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary
{
	color: #ffffff;
	line-height: 1.5;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article .EDN_publish-date
{
	background-color: #52bd23;
	color: #ffffff;
	line-height: 27px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles h2 a
{
	font-size: 22px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_article_content
{
	line-height: 1.2;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger
{
	border-color: #e0e0e0;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a.active,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination span
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span
{
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pager a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .article_pagination a:hover
{
	text-decoration: none;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay
{
	background-color: #fbfbfb;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/pagination/loadingBackground/predefined/loadingArticles.gif");
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after
{
	border-radius: 4px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails
{
	background-color: #b1b1b1;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails h4
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 18px;
	line-height: 1.1;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .other-posty-by a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button span
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/authorAndGroupBox/iconSet/predefined/icons.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .EDN_connect-with
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9c9c9c;
	box-shadow: inset 0px 1px 0px 0px #c2c2c2;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails
{
	background-color: #b1b1b1;
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails h4
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails .other-posty-by a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails .button span
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails .button
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/authorAndGroupBox/groupBox/iconSet/predefined/icons.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment
{
	background-color: #b1b1b1;
	border-width: 1px;
	border-style: solid;
	border-color: #b1b1b1;
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
	line-height: 1.1;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_author
{
	color: #919191;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_date_time
{
	color: #535353;
	font-size: 11px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content > div,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .arrow
{
	border-color: #e6e6e6;
	background-color: #f8f8f8;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content p
{
	font-family: "Arial";
	color: #1d1d1d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a
{
	font-family: "BenchNine";
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a:hover
{
	color: #000000;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a.reply
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/comments/commentList/comment/replyIcon/predefined/replay.png");
	background-position: 0% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment h3
{
	color: #b1b1b1;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box
{
	background-color: #b1b1b1;
	border-width: 1px;
	border-style: solid;
	border-color: #b1b1b1;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.left
{
	color: #ffffff;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea
{
	border-top-color: #939393;
	border-right-color: #b1b1b1;
	border-bottom-color: #b1b1b1;
	border-left-color: #939393;
	background-color: #f8f8f8;
	font-family: "Arial";
	color: #2f2f2f;
	font-size: 13px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit
{
	background-color: #41e133;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/comments/commentForm/submitButton/background/predefined/bg.png");
	background-repeat: repeat;
	background-position: 0% 0%;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	text-shadow: -1px -1px 1px #5f5f5f;
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
	line-height: 34px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit:hover
{
	background-color: #3bcb2f;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td
{
	background-color: #ebebeb !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection tr td
{
	font-family: "BenchNine";
	color: #52bd23;
	font-style: normal;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection tr td.next_prev_months a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/monthSelectArrows/predefined/arrows.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .top_calendar_actions a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/topCalendarActions/predefined/icons.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table tr td.day
{
	background-color: #ffffff !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.week_days
{
	background-color: #b1b1b1 !important;
	border-bottom-width: 7px;
	border-bottom-style: solid;
	border-bottom-color: #ebebeb;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #b1b1b1;
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
	line-height: 32px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day
{
	border-color: #ebebeb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > span
{
	background-color: #fcfcfc;
	font-family: "Arial";
	color: #111111;
	font-size: 14px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > span
{
	color: #bbbbbb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected > a:hover
{
	background-color: #52bd23 !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > span
{
	background-color: #52bd23 !important;
	color: #ffffff !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected > a
{
	background-color: #ebebeb !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_events > a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/events.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_posts > a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/posts-green.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_events.has_posts > a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendar/days/indicators/predefined/posts_events-green.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > a:hover
{
	color: #ffffff !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected.today > a
{
	color: #686868 !important;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #ffffff;
	background-color: #ea1515;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #ffffff;
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #ffffff;
	background-color: #000000;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #ffffff;
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	background-color: #ffff00;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffffff;
	background-color: #ffc0cb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #ffffff;
	background-color: #808080;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ffffff;
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #ffffff;
	background-color: #a52a2a;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #ffffff;
	background-color: #ea1515;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #ffffff;
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #ffffff;
	background-color: #000000;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #ffffff;
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	background-color: #ffff00;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffffff;
	background-color: #ffc0cb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #ffffff;
	background-color: #808080;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ffffff;
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #ffffff;
	background-color: #a52a2a;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a
{
	background-color: #f7f7f7;
	border-color: #52bd23;
	font-family: "Arial";
	color: #3c3c3c;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a:hover
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a
{
	background-color: #f7f7f7;
	border-color: #ff8400;
	font-family: "Arial";
	color: #3c3c3c;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a:hover
{
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j
{
	background-color: #faf8f3;
	border-width: 2px;
	border-style: solid;
	border-color: #ebebeb;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article > p.title a
{
	text-decoration: none;
	font-family: "BenchNine";
	color: #52bd23;
	font-size: 16px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article > p.title a:hover
{
	text-decoration: none;
	color: #000000;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article > p.title
{
	text-decoration: none;
	font-family: "BenchNine";
	color: #52bd23;
	font-size: 16px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article_list > li > a
{
	text-decoration: none;
	font-family: "Arial";
	color: #000000;
	font-size: 12px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article_list > li > a:hover
{
	text-decoration: none;
	color: #52bd23;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article_list > li
{
	text-decoration: none;
	font-family: "Arial";
	color: #000000;
	font-size: 12px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article_list > li > p
{
	font-family: "Arial";
	color: #2f2f2f;
	font-size: 10px;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j .qtip-content > .wrapper > .article > .content
{
	font-family: "Arial";
	color: #333333;
	font-size: 12px;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .title
{
	background-color: #b1b1b1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .title span,
.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .title span a
{
	font-family: "Arial";
	color: #ffffff;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .title span a:hover
{
	text-decoration: none;
	color: #000000;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article img
{
	border-width: 1px;
	border-style: solid;
	border-color: #ebebeb;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article > a
{
	border-width: 1px;
	border-style: solid;
	border-color: #cacaca;
	background-color: #cacaca;
	text-decoration: none;
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 14px;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j > .qtip-content > .wrapper > .article > a:hover
{
	background-color: #ffffff;
	text-decoration: none;
	color: #52bd23;
}

.qtip.edn_calendarbox_Vision.custom_skhvbnbzc6j .qtip-content > .wrapper > .article > p.location
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/qtip/eventLocation/icon/predefined/location.png");
	background-position: 0% 0%;
	font-family: "Arial";
	color: #3b3b3b;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .EDN_module_box > .edn_module_title span
{
	font-family: "Arial";
	color: #25282a;
	font-size: 20px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .EDN_module_box > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-year,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-month
{
	font-family: "Arial";
	color: #3c3c3c;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li ul li > div > .edn_archive-month
{
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-year:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-month:hover
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.opened div > a.edn_archive-year
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active div > a.edn_archive-year,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active div > a.edn_archive-month
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarArchive/archiveItems/icon/predefined/icon.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse
{
	background-position: 0px -17px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month > span
{
	border-width: 1px;
	border-style: solid;
	border-color: #c6c9cb;
	color: #52bd23;
	font-size: 11px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year:hover > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-month:hover > span
{
	color: #3c3c3c;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list > .edn_module_title span
{
	font-family: "Arial";
	color: #25282a;
	font-size: 20px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events > .edn_module_title .rss
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/moduleTitle/rssIcon/predefined/rss.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events > .edn_module_title .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events > .edn_module_title .export
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/moduleTitle/exportIcon/predefined/export.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events > .edn_module_title .export:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events ul li a
{
	font-family: "Arial";
	color: #2f2f2f;
	line-height: 15px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events ul li a:hover
{
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #868686;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/calendarEvents/eventsItems/icon/predefined/icon.png");
	background-position: 0% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_calendar .archive_list.events ul li
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b9b9b9;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_tagCloud .tags a .tag-count
{
	border-width: 1px;
	border-style: solid;
	border-color: #dddfe0;
	background-color: #ffffff;
	color: #52bd23;
	font-size: 11px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_tagCloud > .edn_module_title span
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 28px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_tagCloud > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .EDN_module_box > .edn_module_title span
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 28px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .EDN_module_box > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input.button_outside > .input input[type="text"]
{
	border-width: 3px;
	border-style: solid;
	border-color: #e1e1e1;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input input[type="text"]
{
	background-color: #f7f7f7;
	font-family: "Arial";
	color: #8f8f8f;
	font-size: 16px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input input[type="text"]:focus
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input.button_outside .do_search
{
	border-width: 3px;
	border-style: solid;
	border-color: #e1e1e1;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input .do_search
{
	background-color: #f7f7f7;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/simpleSearch/submitButton/background/predefined/gradient.png");
	background-repeat: repeat-x;
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input .do_search:hover
{
	background-position: 0px -43px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .search_input .do_search span
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/simpleSearch/submitButton/searchIcon/predefined/magnifier.png");
	text-shadow: 1px 1px 1px #ffffff;
	font-family: "Arial";
	color: #8f8f8f;
	font-size: 20px;
}

.EDN_search.theme_Vision.custom_skhvbnbzc6j
{
	background-color: #ffffff;
	border-color: #ebebeb;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
}

.EDN_search.theme_Vision.custom_skhvbnbzc6j ul li span a
{
	color: #494949;
}

.EDN_search.theme_Vision.custom_skhvbnbzc6j ul li span a:hover
{
	color: #78a145;
}

.EDN_search.theme_Vision.custom_skhvbnbzc6j .acSelect
{
	border-color: #e1e1e1;
	background-color: #fcfcfc;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch
{
	background-color: #e6e6e6;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span
{
	font-family: "Arial";
	color: #8d8d8d;
	font-size: 12px;
	line-height: 2;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span
{
	font-family: "Arial";
	color: #8d8d8d;
	font-size: 12px;
	line-height: 1.8;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title span
{
	font-family: "BenchNine";
	color: #a8a8a8;
	font-size: 26px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch > .edn_module_title:after
{
	background-color: #bfbfbf;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/advancedSearch/moduleTitle/icon/predefined/icon.png");
	background-position: 50% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"]
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b4b4b4;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #efefef;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #efefef;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #b4b4b4;
	background-color: #cecece;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.24);
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b4b4b4;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #efefef;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #efefef;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #b4b4b4;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #cecece;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/advancedSearch/select/background/predefined/select-bg.png");
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice
{
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled
{
	color: #ababab;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	border-width: 1px;
	border-style: solid;
	border-color: #a4a4a4;
	background-color: #cecece;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.3),1px 1px 1px 0px #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before
{
	border-width: 1px;
	border-style: solid;
	border-color: #b6b6b6;
	background-color: #c4c4c4;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.26),inset 3px 3px 5px 0px #ffffff;
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before
{
	background-color: #d3d3d3;
	box-shadow: inset 1px 2px 2px 0px rgba(0, 0, 0, 0.29),1px 1px 1px 0px #ffffff;
	text-shadow: 1px 1px 1px #ffffff;
	color: #b0b0b0;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before
{
	background-color: #d3d3d3;
	box-shadow: inset 1px 2px 2px 0px rgba(0, 0, 0, 0.29),1px 1px 1px 0px #ffffff;
	text-shadow: 1px 1px 1px #ffffff;
	color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #cecece;
	border-color: #b6b6b6;
	box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.24),1px 1px 1px 0px rgba(255, 255, 255, 0.35);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid
{
	background-color: #ffffff;
	border-color: #a4a4a4;
	box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.45);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #868686;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.28),1px 1px 1px 0px rgba(255, 255, 255, 0.35);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	font-family: "Arial";
	color: #52bd23;
	font-size: 12px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	font-family: "Arial";
	color: #a8a8a8;
	font-size: 10px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #bfbfbf;
	border-width: 1px;
	border-style: solid;
	border-color: #7e7e7e;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.57),inset 4px 4px 5px 0px rgba(255, 255, 255, 0.7);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b4b4b4;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #efefef;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #efefef;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #b4b4b4;
	background-color: #cecece;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.24);
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b4b4b4;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #efefef;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #efefef;
	background-color: #cecece;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c6c6c6;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #b1b1b1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b3b0b0;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c6c6c6;
	background-color: #c2c2c2;
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2),inset 3px 3px 2px -1px rgba(255, 255, 255, 0.41),inset 1px 29px 20px -20px rgba(255, 255, 255, 0.6);
	text-transform: lowercase;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 21px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover
{
	background-color: #d5d3d3;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c6c6c6;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #b1b1b1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b3b0b0;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c6c6c6;
	background-color: #c2c2c2;
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2),inset 3px 3px 2px -1px rgba(255, 255, 255, 0.41),inset 1px 29px 20px -20px rgba(255, 255, 255, 0.6);
	text-transform: lowercase;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 21px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover
{
	background-color: #d5d3d3;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_module_box > .edn_module_title span
{
	font-family: "BenchNine";
	color: #25282a;
	font-size: 28px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_module_box > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_module_box > .edn_module_title .rss
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/sidebarBoxModuleTitle/rssIcon/predefined/rss.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_module_box > .edn_module_title .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article_rss_wrapper a
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/articlesRss/icon/predefined/rss.png");
	background-position: 0px 0px;
	line-height: 19px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article_rss_wrapper a:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount
{
	border-width: 1px;
	border-style: solid;
	border-color: #c6c9cb;
	color: #52bd23;
	font-size: 11px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount:hover
{
	color: #3c3c3c;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_article.EDN_eventsBox,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_article.EDN_eventsBox,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_article.EDN_eventsBox > a:before,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_article.EDN_eventsBox > a:before,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content
{
	border-bottom-color: #e0e0e0;
	border-right-color: #e0e0e0;
	border-left-color: #e0e0e0;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span
{
	background-color: #52bd23;
	text-transform: uppercase;
	font-family: "Arial";
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	font-weight: normal;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventsBoxTitle/rssIcon/predefined/rss.png");
	background-position: 0px 0px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a
{
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTitle
{
	color: #25282a;
	font-size: 21px;
	line-height: 1;
	font-weight: bold;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime
{
	font-family: "Arial";
	color: #6c6c6c;
	font-size: 12px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxTime
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventBox/eventLocationAndTime/icons/location/predefined/location-green.png");
	background-position: 0px 1px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxLocation
{
	background-position: 0px -49px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventBox/eventLocationAndTime/icons/time/predefined/time-green.png");
	background-position: 0px 1px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxTime
{
	background-position: 0px -49px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:before
{
	background-color: ;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover:before,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a:before
{
	background-color: #118111;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishDay,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishDay
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth
{
	text-transform: uppercase;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishMonth,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishMonth
{
	color: #64df2e;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishYear,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishYear
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a
{
	border-color: #ffffff;
	background-color: #a7abae;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover
{
	border-color: #118111;
	background-color: #a7abae;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active
{
	border-color: #118111;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger
{
	border-color: #e0e0e0;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger:hover,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger:hover
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span
{
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay,
.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay
{
	background-color: #fbfbfb;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/eventBoxPagination/loadMoreButton/loadingBackground/predefined/loadingArticles.gif");
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision a.edsgg_galleryBackLink
{
	border-color: #e0e0e0;
	background-color: #fcfbf9;
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision a.edsgg_galleryBackLink:hover
{
	background-color: #fbfbfb;
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision a.edsgg_galleryBackLink:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/gravityGallery/viewInGalleryButton/icon/predefined/photo.png");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #e0e0e0;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover
{
	background-color: #fbfbfb;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText span
{
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText span
{
	color: #bababa;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: #fbfbfb;
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Vision/images/gravityGallery/loadMoreMediaButton/loadingOverlay/background/predefined/loadingArticles.gif");
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	font-size: 15px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer > a:hover .edsgg_title
{
	text-decoration: none;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 11px;
}

.eds_news_Vision.eds_style_custom_skhvbnbzc6j.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #d6d6d6;
	background-color: #ffffff;
}
@import url("http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700&subset=latin,latin-ext");

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h1,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h2,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h3,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h4,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h5,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news h6,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news th,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .in_article_image .image_title
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news a
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div .edn_articleTitle a
{
	color: #3b3c40;
	font-size: 19px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div:hover .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 h2.edn_articleTitle
{
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a
{
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle
{
	color: #8de171;
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a
{
	color: #7cc663;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a:hover
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a
{
	color: #7ecd63;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a
{
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_simpleArticle6Bullet:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultTabs .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .edn_article.edn_articleDetails h1.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article .edn_articleSubTitle
{
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article .edn_articleSummary
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after
{
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle
{
	color: #a3a3a3;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a
{
	color: #8de171;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:hover h2.edn_articleTitle,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle:hover h2.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle .edn_articleSubTitle
{
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock
{
	color: #666161;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section:hover
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active > section
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud > div a span:first-child
{
	background-color: #8de171;
	color: #ffffff;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud > div a:hover span:first-child
{
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud > div a
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud > div a span
{
	color: #3b3c40;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_tagCloud > div a:hover span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_rss:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_rss:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category
{
	color: #504e4e;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category
{
	color: #74c459;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before
{
	color: #64a34f;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .bread_crumbs > a
{
	font-family: "Roboto Condensed";
	color: #747474;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .bread_crumbs > a:hover
{
	border-bottom-color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .bread_crumbs > a:last-child
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .bread_crumbs > i
{
	font-size: 17px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.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_custom_smbwkwvkv1g.eds_subCollection_news .edn_catalogCategory
{
	background-color: #e5e5e5;
	box-shadow: inset 0px 0px 0px 1px #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_catalogCategory > figcaption > span
{
	background-color: #ffffff;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.6);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_eventDetails
{
	border-radius: 0px;
	box-shadow: inset 0px 2px 0px 0px #ffffff,inset 0px -2px 0px 0px #ffffff;
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_eventDetails .edn_eventPrice
{
	font-family: "Roboto Condensed";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_calendarExport:after
{
	text-shadow: none;
	color: #504e4e;
	font-size: 13px;
	line-height: 1.3;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_calendarExport:hover:after
{
	text-shadow: none;
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_calendarExport.edn_toolTip:hover .edn_toolTipContent
{
	color: #ffffff !important;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_eventDetails .edn_eventLocation
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBarWrapper > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span > label
{
	border-width: 1px;
	border-radius: 5px;
	color: #63b248;
	font-size: 15px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label::before
{
	background-color: #619c1c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label::before
{
	background-color: #d61603;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label::before
{
	background-color: #f89e00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > time
{
	box-shadow: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time
{
	background-color: #8de171;
	box-shadow: none;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time
{
	box-shadow: none;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation
{
	color: #74bf5b;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation:before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton
{
	border-color: #8de171;
	border-radius: 4px;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer
{
	border-color: #8de171;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer:hover
{
	border-color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 .edn_mediaContainer:after
{
	background-color: rgba(200, 24, 5, 0.2);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticle2WithAccordion .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_mediaContainer.edn_withTime > a:after
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > .edn_mediaLink
{
	border-color: #ffffff;
	border-radius: 3px;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > time
{
	background-color: #8de171;
	box-shadow: none;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_metaDetails
{
	color: #6e6e6e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails > time:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listEventDetails
{
	color: #969696;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listEventDetails > span:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails
{
	background-color: #000000;
	opacity: 0.7;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberComments:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager.edn_articleScrolling a
{
	border-color: #8de171 !important;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager.edn_articleScrolling a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager.edn_articleScrolling .edn_toolTip:hover .edn_toolTipContent
{
	border-color: transparent !important;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.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: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a
{
	border-color: #8de171;
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover
{
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title
{
	color: #72bd59;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover:after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3
{
	color: #7bc563;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3
{
	color: #319011;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header:before
{
	border-right-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a
{
	border-color: #e2e2e2;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png");
	background-repeat: repeat-y;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before
{
	border-color: #bcbcbc;
	background-color: #dadada;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before
{
	background-color: #ececec;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary
{
	color: #8a8a8a;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a
{
	color: #55a839;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a:hover
{
	color: #426c34;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header
{
	border-bottom-color: #bcbcbc;
	box-shadow: 0px 1px 0px 0px #eeeeee;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport
{
	color: #5b5b5b;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:after
{
	color: #3ca519;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover:after
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time:before
{
	color: #3ca519;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .in_article_image
{
	border-color: #d1d2d3;
	border-radius: 4px;
	background-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .in_article_image .image_title
{
	color: #8de171;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .in_article_image .image_description
{
	color: #666161;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .in_article_image .image_wrapper > a:hover:before
{
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants
{
	border-color: #e5e5e5;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8de171;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader th
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #eeeeee;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr:hover
{
	background-color: #eaeaea;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_listOfAttendants > table tr:hover td
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments
{
	border-color: #e5e5e5;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docExtension
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize
{
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription
{
	color: #999999;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li
{
	border-bottom-color: #f7f5f5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.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_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li:before
{
	color: #589f40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li span
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles
{
	border-color: #bfbfbf;
	border-radius: 4px;
	background-color: #ededed;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li:before
{
	color: #659e51;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a
{
	color: #424344;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a span
{
	font-family: "Roboto Condensed";
	color: #424344;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a:hover span
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li + li
{
	border-left-color: #acacac;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 4px #ffffff;
	background-color: #e5e5e5;
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails > h4 .button:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails > h4 .button:hover:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social
{
	border-color: #8d8989;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social:hover
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social:before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social:hover:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails > h4 .button:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails .button.contact
{
	border-color: #8de171;
	border-radius: 4px;
	font-family: "Roboto Condensed";
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails .button.contact:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails .button.social
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails.edn_groupDetails .button.social:before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .num_of_comment
{
	border-color: #8de171;
	border-radius: 4px;
	color: #000000;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment article > section > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment article > section > div
{
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment article > section > time
{
	color: #999999;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment article > div img
{
	border-color: #8de171;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment .actions > a
{
	border-color: #909090;
	background-color: #bdbdbd;
	font-family: "Roboto Condensed";
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover
{
	background-color: #909090;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete
{
	border-color: #9d241e;
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover
{
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment > h3
{
	color: #3b3c40;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment > div
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Roboto Condensed";
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"],
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:focus,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:focus
{
	border-color: #8de171;
	border-radius: 6px;
	color: #666666;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box .submit
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #424242;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_readMore.edn_readMoreButton
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager span,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination span
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination table
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination a
{
	background-color: transparent;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .article_pagination span
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before
{
	color: #8de171;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articlesRssWrapper a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eeeeee;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eeeeee;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articlesRssWrapper a:hover
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articlesRssWrapper a span:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articlesRssWrapper a span
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edn_articlesRssWrapper a:hover span
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edsTabulator .eds_tabsNav > li
{
	border-color: #81cf67;
	color: #b4b4b4;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edsTabulator .eds_tabsNav > li:hover
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .edsTabulator .eds_tabsNav > li.edsTabulator_active
{
	background-color: #eb1601;
	box-shadow: inset 0px -25px 13px -13px #cb1400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount
{
	background-color: #3b3c40;
	border-radius: 10px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	color: #848484;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .do_search,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .do_search:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input .do_search:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search
{
	border-color: #8de171 !important;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search > span
{
	text-transform: uppercase;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search > span:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search:before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .search_input.button_outside .do_search:hover:before
{
	color: #ffffff;
}

.EDN_search.theme_Ozone.custom_smbwkwvkv1g
{
	background-color: #ffffff;
	border-color: #8de171;
	box-shadow: none;
}

.EDN_search.theme_Ozone.custom_smbwkwvkv1g ul li span a
{
	color: #2c2c2c;
	font-size: 12px;
}

.EDN_search.theme_Ozone.custom_smbwkwvkv1g ul li span a:hover
{
	color: #8de171;
}

.EDN_search.theme_Ozone.custom_smbwkwvkv1g .acSelect a
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span
{
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after ,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before
{
	color: #7ac162;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input
{
	color: #848484;
	font-size: 13px;
	border-color: #d4d4d4;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #d6d6d6;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c7c7c7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #c7c7c7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d3d3d3;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c7c7c7;
	border-radius: 6px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #8de171;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #6bab56;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #5ca544;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #5bf229;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #58a041;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #68aa53;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	color: #a8a8a8;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid
{
	background-color: #c3c3c3;
	border-width: 1px;
	border-style: solid;
	border-color: #bcbcbc;
	border-radius: 4px;
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #d4d8de;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	box-shadow: inset 0px 6px 6px 0px rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before
{
	background-color: #5c9f46;
	border-radius: 50%;
	box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.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: #61a64a;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.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: #63a24d;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	color: #848484;
	border-color: #d4d4d4;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	border-right-color: #d4d4d4;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit
{
	background-color: #ffffff;
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit
{
	color: #3b3c40;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset
{
	background-color: #ffffff;
	border-color: #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover
{
	background-color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #3b3c40;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table
{
	border-color: #8de171 !important;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td
{
	color: #7fc268;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.week_days
{
	background-color: #8de171;
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts > a
{
	color: #599047;
	border-color: #58d031;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts > a:hover
{
	background-color: #58d031;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events > a
{
	color: #3b3c40;
	border-color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events > a:hover
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.today:after
{
	border-top-width: 3px;
	border-top-color: #dddddd;
	border-right-width: 1px;
	border-right-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	border-left-width: 1px;
	border-left-color: #dddddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .top_calendar_actions > a
{
	border-color: #8de171;
	border-radius: 4px;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .top_calendar_actions > a:hover
{
	border-color: #558a43;
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a
{
	background-color: transparent;
	border-color: #3b3c40;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a:hover
{
	background-color: transparent;
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a
{
	background-color: transparent;
	border-color: #619e4d;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a:hover
{
	background-color: #619e4d;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list
{
	border-top-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover
{
	color: #6fb757;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink
{
	color: #504e4e;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul > li .expand_collapse:before
{
	color: #8de171;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span
{
	border-radius: 10px;
	background-color: #3b3c40;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:before
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:before
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events ul li > a
{
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events ul li > a:hover
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_calendar .archive_list.events ul li::before
{
	color: #71ba59;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g
{
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #8de171;
	border-radius: 0px;
	box-shadow: none;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .title span,
.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .title span a
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .title span a:hover
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article > p.title a
{
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article > p.title a:hover
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article > p.title
{
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article_list > li > a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article_list > li > a:hover
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article_list > li
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article_list > li > p
{
	color: #999999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g .qtip-content > .wrapper > .article > .content
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article img
{
	border-color: #8de171;
	border-radius: 0px;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article > a
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g > .qtip-content > .wrapper > .article > a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.custom_smbwkwvkv1g .qtip-content > .wrapper > .article > p.location:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink > span
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:before
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay:before
{
	color: #8de171;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	color: #77bf60;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #8de171;
	border-radius: 0px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone
{
	border-radius: 6px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	background-color: rgba(255, 255, 255, 0.7);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:after
{
	color: #c7c7c7;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:hover:after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 5px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on:after
{
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .navigation_button
{
	border-radius: 3px;
	background-color: #8de171;
	box-shadow: inset 0px 48px 48px -48px #b1ee9c;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover:before
{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .title_box
{
	font-size: 18px;
	background-color: rgba(149, 149, 149, 0.5);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport .overview,
.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport p
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box
{
	background-color: rgba(54, 54, 54, 0.5);
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb
{
	border-color: #8de171;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_custom_smbwkwvkv1g.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay .indicator:before
{
	color: #8de171;
}
@import url("http://fonts.googleapis.com/css?family=Sanchez");

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news a
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listCatalogDefault .child_categories .EDN_catalog-item a
{
	font-family: "Sanchez";
	color: #505050;
	font-size: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listCatalogDefault .child_categories .EDN_catalog-item a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news h3
{
	font-family: "Sanchez";
	color: #4e4d49;
	font-size: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "Sanchez";
	color: #e34d20;
	font-size: 17px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "Sanchez";
	color: #e34d20;
	font-size: 13px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin
{
	color: #505050;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin
{
	font-size: 40px;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineLocationIcon/predefined/timelineLocation.png");
	background-position: 0px 1px;
	font-family: "Sanchez";
	color: #888888;
	font-size: 17px;
	font-weight: 300;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail:after,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail:after
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineGuideline/predefined/timeLine.png");
	background-repeat: repeat-y;
	background-position: 50% 0%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle
{
	background-color: #f6f4f0;
	border-width: 1px;
	border-style: solid;
	border-color: #bab8b4;
	box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.07);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > h2 a
{
	color: #505050;
	font-size: 19px;
	line-height: 1;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > h2 a:hover
{
	text-decoration: none;
	color: #e34d20;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .EDN_article_content,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .EDN_article_content
{
	font-family: "Arial";
	color: #7a7a7a;
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > div,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > div
{
	border-top-color: #d9d9d9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineExportEvent/predefined/timelineExportCalendar.png");
	background-position: 50% 50%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineEventTime/predefined/timelineTime.png");
	background-position: 0% 50%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration
{
	text-transform: lowercase;
	text-shadow: 0px 1px 0px #ffffff;
	font-family: "Arial";
	color: #bababa;
	font-size: 13px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar-box a
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Arial";
	color: #474747;
	font-size: 14px;
	line-height: 17px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar-box a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar-box.EDN_activeclass a
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a
{
	text-shadow: none;
	font-family: "Sanchez";
	color: #4e4d49;
	font-size: 17px;
	line-height: 1px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_module_box .rss
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/rssIcon/predefined/rss-icon-big.png");
	background-position: 0px 0px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_module_box .rss:hover
{
	background-position: 0px -30px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuExpandCollapse/predefined/expand-collapse.png");
	background-position: 4px 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse
{
	background-position: 4px -54px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuRSS/predefined/rss-icon-small.png");
	background-position: 0px 0px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:hover
{
	background-position: 0px -56px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_category-info > h1
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b3b3b2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryInfo/categoryTitle/background/predefined/sand.png");
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 24px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .child_categories .EDN_catalog-item a img
{
	border-width: 1px;
	border-style: solid;
	border-color: #e0deda;
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .child_categories .EDN_catalog-item a:hover img
{
	border-color: #bab8b4;
	background-color: #eeeeee;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a
{
	font-family: "Sanchez";
	color: #ffffff;
	font-size: 30px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a:hover
{
	text-decoration: underline;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro
{
	background-color: rgba(0, 0, 0, 0.45);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date
{
	background-color: rgba(0, 0, 0, 0.45);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span
{
	font-family: "Sanchez";
	color: #ffffff;
	font-size: 14px;
	line-height: 1.4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span.EDN_publish-day
{
	font-size: 28px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_title-container,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_title-container:after,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_clear.EDN_separator,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .child_categories + span:before
{
	border-color: #bab8b4;
	background-color: #efede8;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
	background-repeat: repeat;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_title-container > h2 a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a
{
	text-decoration: none;
	font-family: "Sanchez";
	color: #606060;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_title-container > h2 a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a:hover
{
	text-decoration: none;
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .EDN_article .EDN_title-container > h1,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .EDN_article .EDN_title-container > h1,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultWithTabs .EDN_article .EDN_title-container > h1,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .EDN_article .EDN_title-container > h1
{
	font-family: "Sanchez";
	color: #606060;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date
{
	background-color: rgba(0, 0, 0, 0.45);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date span
{
	font-family: "Sanchez";
	color: #ffffff;
	font-size: 14px;
	line-height: 1.4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date span.EDN_publish-day
{
	font-size: 28px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_articleBoxInline
{
	box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.07);
	border-width: 1px;
	border-style: solid;
	border-color: #bab8b4;
	background-color: #f6f4f0;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a img
{
	border-width: 1px;
	border-style: solid;
	border-color: #e0deda;
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover img
{
	border-color: #bab8b4;
	background-color: #eeeeee;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a
{
	border-width: 1px;
	border-style: solid;
	border-color: #bab8b4;
	box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.07);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #bab8b4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #bab8b4;
	background-color: #efede8;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/background/predefined/sand.png");
	background-repeat: repeat;
	background-position: 0% 0%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails > span
{
	color: #323232;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews > div
{
	color: #bfbfbf;
	line-height: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews .EDN_numberOfViews
{
	color: #bfbfbf;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_sidebar-box a img
{
	border-width: 1px;
	border-style: solid;
	border-color: #ff8000;
	background-color: #ff8000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_sidebar-box a:hover img
{
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ebebeb;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ebebeb;
	background-color: #fcfbf9;
	text-decoration: none;
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
	line-height: 20px;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventPrice
{
	font-family: "Sanchez";
	font-size: 22px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-date
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventDateIcon/predefined/EDN_event-date-icon.png");
	background-position: 0px 2px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-location
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventLocationIcon/predefined/location-icon.png");
	background-position: 0px 0px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar
{
	border-width: 1px;
	border-style: solid;
	border-color: #9f9e99;
	background-color: #b3b1ad;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/exportEvent/background/predefined/export-icon.png");
	background-position: 96% 3px;
	font-family: "Arial";
	color: #ffffff;
	font-size: 10px;
	line-height: 15px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3),inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover
{
	background-color: #bb3811;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li
{
	font-family: "Arial";
	color: #888888;
	font-size: 12px;
	line-height: 28px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li.EDN_publish-date
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/metaDetails/dateIcon/predefined/EDN_publish-date-icon.png");
	background-position: 7px 50%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li.EDN_publish-date,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li > span
{
	color: #ffffff;
	background-color: #cac8c3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger
{
	color: #25282a;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active
{
	color: #ffffff;
	background-color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #bab8b4;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrow.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #c54823 !important;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrowHover.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	color: #c54823 !important;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/elements/accordion/expandableHead/background/predefined/accArrowActive.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a .EDN_six_articles_title
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover .EDN_six_articles_title
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a .EDN_six_articles_summary
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover .EDN_six_articles_summary
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a img
{
	border-width: 1px;
	border-style: solid;
	border-color: #e0deda;
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover img
{
	border-color: #bab8b4;
	background-color: #eeeeee;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger
{
	border-width: 1px;
	border-style: solid;
	border-color: #e0e0e0;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a.active,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination table span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger
{
	border-color: #b1b0ab;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a.active,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay
{
	background-color: #cac8c3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a.active,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination table span
{
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span
{
	font-family: "Arial";
	color: #bababa;
	font-size: 12px;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a.active:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager a.active,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pagination table span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span
{
	text-shadow: 1px 1px 1px rgba(57, 90, 2, 0.2);
	color: #ffffff;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay
{
	background-color: ;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/pagination/loadingImage/predefined/loadingArticles.gif");
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after
{
	border-radius: 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article_rss_wrapper a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b3b1ad;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/rssLink/background/predefined/rss-icon.png");
	background-position: 6px 6px;
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article_rss_wrapper a:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .in_article_image
{
	border-width: 1px;
	border-style: solid;
	border-color: #aeaca6;
	background-color: #e9e8e4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title
{
	font-family: "Sanchez";
	color: #c54823;
	font-size: 16px;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description
{
	color: #474747;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments
{
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li a
{
	font-family: "Arial";
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li a:hover
{
	text-shadow: none;
	text-decoration: underline;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li .edn_listDescription
{
	font-family: "Arial";
	font-size: 12px;
	line-height: 1.5;
	font-style: italic;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul li .edn_docDetails
{
	color: #969696;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul li .edn_docExtension
{
	font-style: italic;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul li .edn_docFileSize
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > h2
{
	background-color: #f7f4ef;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documentsToDownload/boxTitle/background/predefined/sand.png");
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
	color: #807d73;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks
{
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li a
{
	font-family: "Arial";
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li a:hover
{
	text-shadow: none;
	text-decoration: underline;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li .edn_listDescription
{
	font-family: "Arial";
	font-size: 12px;
	line-height: 1.5;
	font-style: italic;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/moreLinks/listBullet/predefined/links-bullet.png");
	background-position: 0px 2px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > h2
{
	background-color: #f7f4ef;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/moreLinks/boxTitle/background/predefined/sand.png");
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
	color: #807d73;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles
{
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a
{
	text-decoration: none;
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a:hover
{
	text-shadow: none;
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/relatedArticles/listBullet/predefined/links-bullet.png");
	background-position: 0px 2px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > h2
{
	background-color: #f7f4ef;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/relatedArticles/boxTitle/background/predefined/sand.png");
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
	color: #807d73;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	background-color: #f7f4ef;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants > table tr:first-child th
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dbd9d3;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #f7f4f0;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags
{
	border-width: 1px;
	border-style: solid;
	border-color: #dbd9d3;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories strong
{
	font-family: "Arial";
	color: #888888;
	font-size: 12px;
	line-height: 21px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a
{
	background-color: #cac8c3;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 21px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a:hover
{
	background-color: #bebdb9;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags strong
{
	font-family: "Arial";
	color: #888888;
	font-size: 12px;
	line-height: 21px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a
{
	background-color: #cac8c3;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 21px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a:hover
{
	background-color: #bebdb9;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating
{
	color: #888888;
	line-height: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news div.EDN_article_rateit div
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoriesTagsRating/rating/ratingStars/predefined/rate_stars.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details
{
	background-color: #cccac4;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details h4
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details p,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by a
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .EDN_connect-with
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #d9d8d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details img
{
	border-width: 1px;
	border-style: solid;
	border-color: #afada7;
	background-color: #e9e8e4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b3b1ad;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/authorRss/background/predefined/rss-icon-small.png");
	background-position: 6px 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social
{
	background-color: #b4b2ac;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social:hover
{
	background-color: #c0beb7;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button
{
	text-decoration: none;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button:hover
{
	text-decoration: underline;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.contact
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/contactAndBiographyLink/icons/predefined/contact-biography-icon.png");
	background-position: 0px 2px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.full_bio
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/contactAndBiographyLink/icons/predefined/contact-biography-icon.png");
	background-position: 0px -87px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup
{
	background-color: #cccac4;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/groupBox/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup h4
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup p,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .other-posty-by a
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .EDN_connect-with
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #d9d8d3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup img
{
	border-width: 1px;
	border-style: solid;
	border-color: #afada7;
	background-color: #e9e8e4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button.author_rss
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b3b1ad;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/groupBox/groupRss/background/predefined/rss-icon-small.png");
	background-position: 6px 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button.author_rss:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button.social
{
	background-color: #b4b2ac;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button.social:hover
{
	background-color: #c0beb7;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button
{
	text-decoration: none;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 18px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button:hover
{
	text-decoration: underline;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details.EDN_AuthorGroup .button.contact
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/groupBox/contactLink/icon/predefined/contact-biography-icon.png");
	background-position: 0px 2px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_cf_all_fields_container
{
	background-color: #cccac4;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/customFields/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_cf_all_fields_container > table tr td
{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon
{
	background-color: #9c9b97;
	box-shadow: 1px 1px 0px 0px rgba(255, 255, 255, 0.35),inset 0px 0px 6px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon:after
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	color: #888888;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:after
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments
{
	background-color: #dfddd9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span
{
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_author
{
	color: #919191;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_date_time
{
	font-size: 11px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content:after
{
	border-top-color: #c8c7c5;
	border-right-color: #fbfafa;
	border-bottom-color: #fbfafa;
	border-left-color: #c8c7c5;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a span
{
	background-color: #aaa8a3;
	color: #ffffff;
	font-size: 10px;
	line-height: 20px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a:hover span
{
	background-color: #b9b7b2;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment
{
	background-color: #c5c3bd;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/numberOfComments/background/predefined/sand.png");
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
	line-height: 20px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Arial";
	color: #8a8985;
	font-size: 14px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment > h3
{
	background-color: #f2f0eb;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/commentForm/title/background/predefined/sand.png");
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
	font-family: "Sanchez";
	color: #807d73;
	font-size: 22px;
	line-height: 25px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c8c7c5;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #fcfbf9;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fcfbf9;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c8c7c5;
	background-color: #fcfbf9;
	font-family: "Arial";
	color: #4e4d49;
	font-size: 14px;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea:hover
{
	border-color: #cdccc7;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:focus,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:focus,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea:focus
{
	border-color: #cdccc7;
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	box-shadow: inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8),inset 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit:hover
{
	background-color: #bb3811;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_tagCloud .edn_module_title
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/tagCloudModuleTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_tagCloud .edn_module_title span
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_tagCloud .tags a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b6b4b0;
	text-transform: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_tagCloud .tags a:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_tagCloud .tags a .tag-count
{
	border-width: 1px;
	border-style: solid;
	border-color: #dddfe0;
	background-color: #ffffff;
	font-family: "Arial";
	color: #c54823;
	font-size: 11px;
	line-height: 15px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_module_title
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuModuleTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_module_title span
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image
{
	border-width: 1px;
	border-style: solid;
	border-color: #b8b6b1;
	background-color: #e9e8e4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover
{
	border-color: #acaaa4;
	background-color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category > span
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b6b4b0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 20px;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover > span
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category
{
	font-family: "Arial";
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category
{
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
	color: #474747;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0.opened > div .category:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0.hasChild:hover > div .category
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0.opened > div > a.category
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #000000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0.active > div > a.category
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.hasChild:hover > div .category
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #000000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .search_input > .input input[type="text"]
{
	border-width: 1px;
	border-style: solid;
	border-color: #bdbbb5;
	background-color: #f2f0ec;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
	font-family: "Sanchez";
	color: #908b82;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .search_input > .input input[type="text"]:hover
{
	border-color: #cdccc7;
	background-color: #edebe5;
	box-shadow: inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .search_input > .input input[type="text"]:focus
{
	border-color: #cdccc7;
	background-color: #fbf9f4;
	box-shadow: inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .search_input .do_search
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/searchSubmit/background/predefined/search-icon.png");
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3),inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .search_input .do_search:hover
{
	background-color: #bb3811;
}

.EDN_search.theme_Firefly.custom_spnh5kbqfho
{
	background-color: #ffffff;
	border-color: #e0deda;
}

.EDN_search.theme_Firefly.custom_spnh5kbqfho ul li span a
{
	color: #4e4d49;
}

.EDN_search.theme_Firefly.custom_spnh5kbqfho ul li span a:hover
{
	color: #c54823;
}

.EDN_search.theme_Firefly.custom_spnh5kbqfho .acSelect
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e1e1e1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e1e1e1;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span
{
	font-family: "Arial";
	color: #474747;
	font-size: 14px;
	line-height: 2;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span
{
	font-family: "Arial";
	color: #474747;
	font-size: 14px;
	line-height: 1.5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/tagCloudModuleTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title span
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"]
{
	border-width: 1px;
	border-style: solid;
	border-color: #bdbbb5;
	background-color: #f2f0ec;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
	font-family: "Arial";
	color: #908b82;
	font-size: 14px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:before,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div
{
	border-width: 1px;
	border-style: solid;
	border-color: #bdbbb5;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice
{
	background-color: #f2f0ec;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	font-family: "Arial";
	color: #908b82;
	font-size: 14px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:before,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	background-color: #fcfbf9;
	box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before
{
	background-color: #b5b3af;
	color: #f1efeb;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #c3c1bc;
	box-shadow: inset 0px 5px 8px -5px rgba(0, 0, 0, 0.4);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #c54823;
	box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	font-family: "Arial";
	color: #c54823;
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	font-family: "Arial";
	color: #787878;
	font-size: 10px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #f1f1f1;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #ffffff;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.35),inset 1px -14px 7px -8px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	border-color: #bdbbb5;
	background-color: #f2f0ec;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
	font-family: "Arial";
	color: #908b82;
	font-size: 14px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-color: #bdbbb5;
	background-color: #f2f0ec;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/advancedSearch/searchSubmit/background/predefined/search-icon.png");
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3),inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
	text-transform: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover
{
	background-color: #bb3811;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.3),inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
	text-transform: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover
{
	background-color: #bb3811;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td
{
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/monthBackground/predefined/sand.png");
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/monthSelectionArrows/predefined/next_prev_months-bg.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days
{
	background-color: #b6b5b0 !important;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dcdbd8;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dcdbd8;
	box-shadow: inset 0px 5px 5px -5px rgba(0, 0, 0, 0.3),inset 0px -5px 5px -5px rgba(0, 0, 0, 0.3);
	text-shadow: 1px 1px 1px rgba(109, 109, 109, 0.1);
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span
{
	background-color: #e0dfdc;
	background-repeat: no-repeat;
	font-family: "Arial";
	color: #50504f;
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a:hover
{
	background-color: #f2f1ee !important;
	background-repeat: no-repeat;
	color: #50504f !important;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span
{
	background-color: #c9c7c2 !important;
	background-repeat: no-repeat;
	text-shadow: 1px 1px 1px rgba(57, 90, 2, 0.2) !important;
	color: #ffffff !important;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a
{
	background-color: #f2f1ee !important;
	background-repeat: no-repeat;
	color: #50504f !important;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-red > a
{
	background-color: #ff0000;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-blue > a
{
	background-color: #0000ff;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-black > a
{
	background-color: #000000;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-green > a
{
	background-color: #008000;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-yellow > a
{
	background-color: #ffff00;
	color: #50504f;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-pink > a
{
	background-color: #ffc0cb;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-gray > a
{
	background-color: #808080;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-orange > a
{
	background-color: #ffa500;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-brown > a
{
	background-color: #a52a2a;
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts.has_events > a
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts_has_events.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_events.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span
{
	color: #b1b0ae;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a
{
	background-color: #fcfbf9;
	border-color: #c54823;
	font-family: "Arial";
	color: #888888;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red
{
	border-color: #ff0000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue
{
	border-color: #0000ff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green
{
	border-color: #008000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow
{
	border-color: #ffff00;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange
{
	border-color: #ffa500;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown
{
	border-color: #a52a2a;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a:hover
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a
{
	background-color: #fcfbf9;
	border-color: #ff8400;
	font-family: "Arial";
	color: #888888;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red
{
	border-color: #ff0000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue
{
	border-color: #0000ff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green
{
	border-color: #008000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow
{
	border-color: #ffff00;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange
{
	border-color: #ffa500;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown
{
	border-color: #a52a2a;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a:hover
{
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .top_calendar_actions a
{
	border-width: 1px;
	border-style: solid;
	border-color: #9f9e99;
	background-color: #b3b1ad;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .top_calendar_actions a:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .top_calendar_actions a span
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 10px;
	line-height: 15px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .top_calendar_actions a.icalendar_export
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/topCalendarActions/icalendarExportIcon/predefined/export-icon.png");
	background-position: 96% 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/archive/archiveMenuExpandCollapse/predefined/expand-collapse.png");
	background-position: 4px 4px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse.collapse
{
	background-position: 4px -54px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_title
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/archive/moduleTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_title span
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a > span
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9f9e99;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9f9e99;
	background-color: #b6b4b0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	line-height: 20px;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover > span
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a
{
	font-family: "Arial";
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
	color: #474747;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.opened > div > a.edn_archive-year
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #000000;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-year
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li div > a
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li div > a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-month
{
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events > ul li a
{
	font-family: "Arial";
	color: #474747;
	font-size: 12px;
	line-height: 15px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events > ul li a:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events > ul li a span
{
	font-family: "Arial";
	color: #858181;
	font-size: 12px;
	background-color: #dfddd9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .rss
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/events/rssIcon/predefined/rss-icon-big.png");
	background-position: 0px 0px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list .rss:hover
{
	background-position: 0px -30px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	border-width: 1px;
	border-style: solid;
	border-color: #b3b3b2;
	background-color: #c1bfb9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/events/moduleTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events .edn_module_title span
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	font-family: "Sanchez";
	color: #505050;
	font-size: 21px;
	line-height: 1;
	font-style: normal;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events .export
{
	border-width: 1px;
	border-style: solid;
	border-color: #9f9e99;
	background-color: #b3b1ad;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/events/iCalendarExport/background/predefined/export-icon.png");
	background-position: 96% 3px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events .export:hover
{
	background-color: #c9c9c9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_calendar .archive_list.events .edn_module_title .export span
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 10px;
	line-height: 15px;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho
{
	background-color: #faf8f3;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article > p.title a
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 14px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article > p.title a:hover
{
	text-decoration: underline;
	color: #c54823;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article > p.title
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 14px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article_list > li > a
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article_list > li > a:hover
{
	color: #c54823;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article_list > li
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article_list > li > p
{
	font-family: "Arial";
	color: #858181;
	font-size: 11px;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho .qtip-content > .wrapper > .article > .content
{
	font-family: "Arial";
	color: #4e4d49;
	font-size: 12px;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .title
{
	background-color: #eceae4;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/date/background/predefined/sand.png");
	background-repeat: repeat;
	background-position: 0% 0%;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .title span,
.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .title span a
{
	font-family: "Sanchez";
	color: #c54823;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .title span a:hover
{
	text-decoration: underline;
	color: #000000;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article img
{
	border-width: 1px;
	border-style: solid;
	border-color: #e1dfda;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article > a
{
	border-width: 1px;
	border-style: solid;
	border-color: #ae3a17;
	background-color: #c54823;
	box-shadow: inset 0px 1px 1px -1px rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho > .qtip-content > .wrapper > .article > a:hover
{
	background-color: #bb3811;
	text-decoration: none;
}

.qtip.edn_calendarbox_Firefly.custom_spnh5kbqfho .qtip-content > .wrapper > .article > p.location
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/eventLocation/icon/predefined/location-icon.png");
	background-position: 0% 0%;
	font-family: "Arial";
	color: #3b3b3b;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title:after
{
	border-color: #bab8b4;
	background-color: #efede8;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventsBoxTitle/background/predefined/sand.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span
{
	font-family: "Sanchez";
	color: #606060;
	font-size: 20px;
	line-height: 1;
	font-weight: normal;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS > span
{
	text-decoration: none;
	color: #c54823;
	font-size: 16px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS:hover > span
{
	text-decoration: underline;
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover
{
	background-color: #eeebe6;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a:before,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .article_pager
{
	border-color: #a4a4a4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTitle
{
	color: #25282a;
	font-size: 21px;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTitle
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime
{
	font-family: "Arial";
	color: #6c6c6c;
	font-size: 12px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime
{
	color: #6c6c6c;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/location/predefined/location.png");
	background-position: 0px 1px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/time/predefined/time.png");
	background-position: 0px 1px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate
{
	font-family: "Sanchez";
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishDay
{
	color: #25282a;
	font-size: 20px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth
{
	text-transform: uppercase;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishYear
{
	font-size: 14px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a
{
	background-color: #b4b4b4;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover
{
	background-color: #fd6516;
	box-shadow: 1px 1px 1px 0px #8a8987,0px 0px 8px 2px #ffffff,0px 0px 0px 5px #c4c3c0,inset 2px 2px 2px 0px rgba(255, 255, 255, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active
{
	background-color: #fd6516;
	box-shadow: 1px 1px 1px 0px #8a8987,0px 0px 8px 2px #ffffff,0px 0px 0px 5px #c4c3c0,inset 2px 2px 2px 0px rgba(255, 255, 255, 0.2);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger
{
	border-width: 1px;
	border-style: solid;
	border-color: #e0e0e0;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper.loading > button.trigger,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper.loading > button.trigger
{
	border-color: #b1b0ab;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay
{
	background-color: #cac8c3;
	background-color: ;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span
{
	font-family: "Arial";
	color: #cac8c3;
	font-size: 12px;
	line-height: 1;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span,
.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span
{
	text-shadow: 1px 1px 1px rgba(57, 90, 2, 0.2);
	color: #ffffff;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly a.edsgg_galleryBackLink span
{
	border-color: #e0e0e0;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly a.edsgg_galleryBackLink
{
	background-color: #fcfbf9;
	color: #cac8c3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly a.edsgg_galleryBackLink:hover
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly a.edsgg_galleryBackLink:before
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/gravityGallery/viewInGalleryButton/icon/predefined/photo.png");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #e0e0e0;
	background-color: #fcfbf9;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText span
{
	color: #cac8c3;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText span
{
	color: #c54823;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: #d1cfc9;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/gravityGallery/loadMoreMediaButton/loadingOverlay/background/predefined/loadingArticles.gif");
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__loadMediaWrapper.loading .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay > span
{
	color: #ffffff;
	font-weight: bold;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	font-size: 15px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer > a:hover .edsgg_title
{
	text-decoration: none;
	color: #4e4d49;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 11px;
}

.eds_news_Firefly.eds_style_custom_spnh5kbqfho.eds_subCollection_news .eds_GravityGallery_Firefly .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #d6d6d6;
	background-color: #ffffff;
}
/* CSS For DotNetNuke Skin by bestdnnskins.com / Copyright 2013 By BESTDNNSKINS.COM */
/*-------- for all containers --------*/
.c_icon, .c_title, .c_menu { float:left;}
.c_title { max-width:95%;}
.c_menu { padding-top:13px;}
.c_help { float:right; padding-top:10px;}
.c_content_style { display:inline-block; width:100%;}
.c_footer { padding:0px 2px;}
.c_footer_l { float:left;}
.c_footer_r { float:right;}
.c_footer_space { height:13px; line-height:13px; overflow:hidden;}
.clear_float { clear:both;}
h2.c_titles { margin:0; padding:0; line-height:1em;}
h2.c_titles span { vertical-align:middle; }

/*-------- containers title --------*/
.c_title_footer { font-size:18px; color:#777777; font-weight:600;font-family:'Oswald',Arial, Tahoma, sans-serif;}
.c_title_black { font-size:18px; color:#555555; font-weight:600;font-family:'Oswald',Arial, Tahoma, sans-serif;}
.c_title_white { font-size:18px; color:#FFFFFF; font-weight:600;font-family:'Oswald',Arial, Tahoma, sans-serif;}
.c_title_LightCoral{ font-size:18px; color:#ed7d67; font-weight:600;font-family:'Oswald',Arial, Tahoma, sans-serif;}

/*-------- Banner Container --------*/
.banner_container { position:relative;background:#ED7D67; } 

/*-------- BlackTitle --------*/
.BlackTitle_style { min-width:150px;}
.BlackTitle_style:hover .c_title_black{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.BlackTitle_c_menu { float:left;}
.BlackTitle_c_help  { float:right;}
.BlackTitle_top_style {margin:0; padding:5px 3px;}
.BlackTitle_content { padding:8px 3px;}
.BlackTitle_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- BlackTitle02 --------*/
.BlackTitle02_style { min-width:150px;}
.BlackTitle02_style:hover .c_title_black{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.BlackTitle02_c_menu { float:left;}
.BlackTitle02_c_help  { float:right; }
.BlackTitle02_top_bg { border-bottom:4px double #e6e6e6;  padding:5px 3px; } 
.BlackTitle02_content { padding:8px 3px;}
.BlackTitle02_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- BlackTitle03 --------*/
.BlackTitle03_style { min-width:150px;}
.BlackTitle03_style:hover .c_title_black{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.BlackTitle03_c_menu { float:left;}
.BlackTitle03_c_help  { float:right; }
.BlackTitle03_top_bg { border-bottom:1px solid #e9e9e9; position:relative;}
.BlackTitle03_style .c_title { border-bottom:2px solid #ed7d67; margin-bottom:-1px; padding:5px 3px;}
.BlackTitle03_content { padding:8px 3px;}
.BlackTitle03_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- BlackTitle04 --------*/
.BlackTitle04_style { min-width:150px;}
.BlackTitle04_style:hover .c_title_black{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.BlackTitle04_c_menu { float:left;}
.BlackTitle04_c_help  { float:right;}
.BlackTitle04_top_bg { border-bottom:1px dashed #dedede; padding:5px 3px;}
.BlackTitle04_content { padding:8px 3px;}
.BlackTitle04_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral01 --------*/
.LightCoral01_style { min-width:150px;}
.LightCoral01_style:hover .c_title_LightCoral{ color:#555555; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral01_c_menu { float:left;}
.LightCoral01_c_help  { float:right; }
.LightCoral01_top_bg { padding:5px 3px; margin:0;}
.LightCoral01_content { padding:8px 3px;}
.LightCoral01_footer { height:12px; line-height:12px; overflow:hidden;}

/*-------- LightCoral02 --------*/
.LightCoral02_style { min-width:150px;}
.LightCoral02_style:hover .c_title_LightCoral{ color:#555555; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral02_style:hover .LightCoral02_top_bg{ border-color:#555555; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral02_c_menu { float:left;}
.LightCoral02_c_help  { float:right; }
.LightCoral02_top_bg { border-bottom:1px solid #ed7d67; padding:8px 3px;}
.LightCoral02_content { padding:8px 3px;}
.LightCoral02_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral03 --------*/
.LightCoral03_style { min-width:150px;}
.LightCoral03_c_menu { float:left;}
.LightCoral03_c_help  { float:right;}
.LightCoral03_top_bg { min-height:25px; background:#ed7d67; border-radius:4px; webkit-border-radius:4px; -moz-border-radius:4px; padding:4px 10px 7px 12px;}
.LightCoral03_style:hover .LightCoral03_top_bg{ background:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral03_content { padding:10px 6px;}
.LightCoral03_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral04 --------*/
.LightCoral04_style { min-width:150px;position:relative;}
.LightCoral04_c_menu { float:left;}
.LightCoral04_c_help  { float:right; padding-top:8px;}
.LightCoral04_top_bg {min-height:25px; background: #ed7d67; padding:4px 10px 7px 12px; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral04_style:hover .LightCoral04_top_bg { background: #555;}
.LightCoral04_top_shadow{background:url("/Portals/_default/Containers/Clear-LightCoral/images/Container04_shadow.png") no-repeat;width:36px;height:40px;position:absolute;left:0;top:0;}
.LightCoral04_top_icon{ width: 0;height: 0;position:absolute; left:15px; top:13px;border-bottom:6px solid transparent;  border-top:6px solid transparent;border-left:8px solid #fff;}
.LightCoral04_style:hover .LightCoral05_top_bg{ background:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral04_content { padding:10px 3px ;}
.LightCoral04_style h2 span { padding:0 5px 0 35px; }
.LightCoral04_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral05 --------*/
.LightCoral05_style { min-width:150px; }
.LightCoral05_c_menu { float:left;}
.LightCoral05_c_help  { float:right; }
.LightCoral05_top_bg {min-height:25px; background: #ed7d67; padding:4px 10px 7px 12px;}
.LightCoral05_style:hover .LightCoral05_top_bg{ background:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral05_content { padding:10px 12px ;}
.LightCoral05_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral06 --------*/
.LightCoral06_style { min-width:150px;  border-left:5px solid #000; }
.LightCoral06_style:hover { border-color:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral06_bg {background:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral06_style:hover .LightCoral06_bg {background:#888;}
.LightCoral06_c_menu { float:left;}
.LightCoral06_c_help  { float:right; }
.LightCoral06_top_bg {padding:4px 10px 7px 12px;}
.LightCoral06_content { padding:0 12px 12px;}
.LightCoral06_footer { height:16px; line-height:16px; overflow:hidden;}
.LightCoral06_style, .LightCoral06_style .Normal, .LightCoral06_style p, .LightCoral06_style div, .LightCoral06_style span, .LightCoral06_style li, .LightCoral06_style td, .LightCoral06_style dt, .LightCoral06_style dd, .LightCoral06_style h1, .LightCoral06_style h2, .LightCoral06_style h3, .LightCoral06_style h4, .LightCoral06_style h5, .LightCoral06_style h6{ color:#fff;}

/*-------- LightCoral07 --------*/
.LightCoral07_style { min-width:150px; border:1px solid #ed7d67;}
.LightCoral07_style:hover { border-color:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral07_c_menu { float:left;}
.LightCoral07_c_help  { float:right; }
.LightCoral07_top_bg { min-height:25px; background: #ed7d67; padding:4px 10px 7px 12px;}
.LightCoral07_style:hover .LightCoral07_top_bg{ background:#555;transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral07_content { padding:10px 12px;}
.LightCoral07_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- LightCoral08 --------*/
.LightCoral08_style { min-width:150px; border:1px solid #e9e9e9;}
.LightCoral08_style:hover .c_title_black{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.LightCoral08_c_menu { float:left;}
.LightCoral08_c_help  { float:right; }
.LightCoral08_top_bg { min-height:25px; background: #e9e9e9; padding:4px 10px 7px 12px;}
.LightCoral08_content { padding:10px 12px;}
.LightCoral08_footer { height:14px; line-height:14px; overflow:hidden;}

/*-------- Footer01 --------*/
.Footer01_style { min-width:150px;}
.Footer01_style:hover .c_title_footer{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.Footer01_c_menu { float:left;}
.Footer01_c_help  { float:right; }
.Footer01_top_bg { padding:8px 3px; margin:0;}
.Footer01_content { padding:16px 3px 8px 3px;}
.Footer01_footer { height:12px; line-height:12px; overflow:hidden;}

/*-------- Footer02 --------*/
.Footer02_style { min-width:150px;}
.Footer02_style:hover .c_title_footer{ color:#ed7d67; transition: all 0.8s ease 0s;  -webkit-transition:all 0.8s ease 0s;-moz-transition:all 0.8s ease 0s;}
.Footer02_c_menu { float:left;}
.Footer02_c_help  { float:right; }
.Footer02_top_style {min-height:25px; border-bottom:#e9e9e9 solid 1px;  margin:0px; padding:8px 3px;}
.Footer02_content { padding:12px 3px 8px 3px;}
.Footer02_footer { height:12px; line-height:12px; overflow:hidden;}

/*-------- notitle --------*/
.notitle_container { }
/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *---------------------------------------------- -------- -------- 
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *---------------------------------------------- -------- -------- 
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{ 
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {background-color:#32646D;
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}



h1{color:#ff8000;}
h2{color:#ff8000;}
h3{color:#ff8000;}
h4{color:#ff8000;}
h5{color:#ff8000;}
h6{color:#ff8000;}

A:link{color:#ff8000;}
A:visited{color:#ff8000;}
A:active{color:#ff8000;}
.clear_skin .color_text{color:#ff8000;}
.clear_skin .color_bg{background-color:#ff8000;}
.clear_skin A.Breadcrumb:hover{color:#ff8000;}

.clear_skin .pre_defined_color{background-color:#ff8000;}
.clear_skin .banner_style{background-color:#ff8000;}
.clear_skin .pagename_style h1{color:#ff8000;}
.clear_skin .icons_menu{background-color:#ff8000;}
.clear_skin #standardMenu .rootMenu > li.selected > a span,.clear_skin #standardMenu .rootMenu > li.breadcrumb > a span,.clear_skin #standardMenu .rootMenu > li:hover > a span,.clear_skin #standardMenu .rootMenu > li > a:hover span{color:#ff8000;}
.clear_skin #standardMenu .subMenu li.selected > a span,.clear_skin #standardMenu .subMenu li.breadcrumb > a span,.clear_skin #standardMenu .subMenu li.item a:hover span{color:#ff8000;}
.clear_skin #megaMenu .root > li.selected > a span,.clear_skin #megaMenu .root > li.breadcrumb > a span,.clear_skin #megaMenu .root > li:hover > a span,.clear_skin #megaMenu .root > li > a:hover span{color:#ff8000;}
.clear_skin #megaMenu .category li.selected > a span,.clear_skin #megaMenu .category li.item a:hover span{color:#ff8000;}
.clear_skin #megaMenu .leaf li.selected > a span{color:#ff8000;}
.clear_skin #leftMenu .leftSub li.selected > a span,.clear_skin #leftMenu .leftSub li a:hover span{color:#ff8000;}

.clear_skin .hi-icon{color:#ff8000;}
.clear_skin .main_top_icon1 > .icon_effect > .hi-icon:after{background-color:#ff8000;}
.clear_skin .main_top_icon2 > .icon_effect > .hi-icon:after{background-color:#ff8000;}
.clear_skin .main_top_icon3 > .icon_effect > .hi-icon:after{background-color:#ff8000;}
.clear_skin .main_top_icon4 > .icon_effect > .hi-icon:after{background-color:#ff8000;}
.clear_skin .main_top_img1{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .main_top_img2{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .main_top_img3{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .main_top_img4{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .main_top_text:hover h3{color:#ff8000;}

.clear_skin .nav-tabs2 > li > a .Icon_one:hover,.clear_skin .nav-tabs2 > .active > a .Icon_one{color:#ff8000;}
.clear_skin .nav-tabs2 > li > a .Icon_two:hover,.clear_skin .nav-tabs2 > .active > a .Icon_two{color:#ff8000;}
.clear_skin .nav-tabs2 > li > a .Icon_three:hover,.clear_skin .nav-tabs2 > .active > a .Icon_three{color:#ff8000;}
.clear_skin .nav-tabs2 > li > a .Icon_four:hover,.clear_skin .nav-tabs2 > .active > a .Icon_four{color:#ff8000;}
.clear_skin .nav-tabs2 > .active{border-left-color:#ff8000;}
.clear_skin .nav-tabs2 > .active > a{color:#ff8000;}
.clear_skin .nav-tabs2 > .active > a:hover{color:#ff8000;}
.clear_skin a.caroul_prev:hover{background-color:#ff8000;}
.clear_skin a.caroul_next:hover{background-color:#ff8000;}

.clear_skin .demo_content_title h3:hover{color:#ff8000;}
.clear_skin .project-pagination a{color:#ff8000;}
.clear_skin .project-pagination a:hover{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .project-pagination li.selected a{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .input_button a{background-color:#ff8000;}
.clear_skin .button1_style span{background-color:#ff8000;}
.clear_skin .button1_style span:hover{background-color:#ff8000;}
.clear_skin .button2_style span{background-color:#ff8000;}
.clear_skin .button2_style span:hover{background-color:#ff8000;}
.clear_skin .Info_one{background-color:#ff8000;}
.clear_skin .error_page .sitemap_button a{background-color:#ff8000;}
.clear_skin .error_categories ul li a:hover{color:#ff8000;}
.clear_skin .about_orange{color:#ff8000;}
.clear_skin .categories_design a:hover .categories_right{background-color:#ff8000;}
.clear_skin .categories_style li a:hover{color:#ff8000;}
.clear_skin .defult_text{border-left-color:#ff8000;}
.clear_skin .perfect_right input{background-color:#ff8000;}
.clear_skin .testimonials_list span{color:#ff8000;}
.clear_skin .services_arround{background-color:#ff8000;}
.clear_skin .quovolve-box ul li .quovolve-box_text h5{color:#ff8000;}
.clear_skin .price_dark_button span a:hover{background-color:#ff8000;}
.clear_skin .prices_top_purple{background-color:#ff8000;}
.clear_skin .price_color_button span a{background-color:#ff8000;}
.clear_skin .page_number .active{background-color:#ff8000;}
.clear_skin .page_number span a:hover{background-color:#ff8000;}
.clear_skin .project_page h3:hover{color:#ff8000;}
.clear_skin .project_list a.read-more:hover{background-color:#ff8000;}
.clear_skin .latest_tweets a,.clear_skin .latest_tweets a:visited{color:#ff8000;}
.clear_skin ul.footerblog_post a,.clear_skin ul.footerblog_post a:hover,.clear_skin ul.footerblog_post a:visited{color:#ff8000;}
.clear_skin .icon_around{background-color:#ff8000;}
.clear_skin ul.footerblog_post a:hover.post_more{color:#ff8000;}
.clear_skin .pg-info,.clear_skin .pg-info4{background-color:#ff8000;  }
.clear_skin ul.shortcodes-portfolio-lists li > .portfolio-overlay{ background-color:#ff8000;}

.clear_skin #options a:hover{background-color:#ff8000;}
.clear_skin .banner_button{background-color:#ff8000;}
.clear_skin .banner_button2{background-color:#ff8000;}
.clear_skin .ls-h2{color:#ff8000;}
.clear_skin .ls-h3 span{background-color:#ff8000;}
.clear_skin .banner_button{background-color:#ff8000;}
.clear_skin .unoslider_indicator a.unoslider_indicator_active{background-color:#ff8000;}

.clear_skin .threeColSocial .console-mouseon{background-color:#ff8000;}
.clear_skin .threeColSocial a.dnnPrimaryAction{background-color:#ff8000;}
.clear_skin .threeColSocial .selectDrop.active > a{background-color:#ff8000;}
.clear_skin .threeColSocial .dnnButtonGroup > li > a.active{border-color:#ff8000;background-color:#ff8000;}
.clear_skin .threeColSocial .dnnButtonGroup > li > a.disabled:hover{border-color:#ff8000;background-color:#ff8000;}
.clear_skin .threeColSocial .alpha > a:hover{background-color:#ff8000;border-color:#ff8000;}
.clear_skin .threeColSocial .alpha > a,.clear_skin .threeColSocial .alpha > a:hover,.clear_skin .threeColSocial .alpha > a.active{border-color:#ff8000;}
.clear_skin .threeColSocial a.dnnSecondaryAction.ArchiveItems:hover{background-color:#ff8000;}
.clear_skin .threeColSocial .dnnTertiaryAction:hover,.clear_skin a.dnnTertiaryAction:hover{background-color:#ff8000;}

.clear_skin .c_title_LightCoral{color:#ff8000;}
.clear_skin .banner_container{background-color:#ff8000;}
.clear_skin .BlackTitle_style:hover .c_title_black{color:#ff8000;}
.clear_skin .BlackTitle02_style:hover .c_title_black{color:#ff8000;}
.clear_skin .BlackTitle03_style:hover .c_title_black{color:#ff8000;}
.clear_skin .BlackTitle03_style .c_title{border-bottom-color:#ff8000;}
.clear_skin .BlackTitle04_style:hover .c_title_black{color:#ff8000;}
.clear_skin .LightCoral02_top_bg{border-bottom-color:#ff8000;}
.clear_skin .LightCoral03_top_bg{background-color:#ff8000;}
.clear_skin .LightCoral04_top_bg{background-color:#ff8000;}
.clear_skin .LightCoral05_top_bg{background-color:#ff8000;}
.clear_skin .LightCoral06_bg{background-color:#ff8000;}
.clear_skin .LightCoral07_style{border-color:#ff8000;}
.clear_skin .LightCoral07_top_bg{background-color:#ff8000;}
.clear_skin .LightCoral08_style:hover .c_title_black{color:#ff8000;}
.clear_skin .Footer01_style:hover .c_title_footer{color:#ff8000;}
.clear_skin .Footer02_style:hover .c_title_footer{color:#ff8000;}


@media handheld,only screen and (max-width:767px){
.clear_skin .menuclick{background-color:#ff8000;}
.clear_skin #standardMenu .rootMenu > li.selected > a,.clear_skin #standardMenu .rootMenu > li.rmHover > a,.clear_skin #standardMenu .rootMenu > li.breadcrumb > a,.clear_skin #standardMenu .rootMenu > li:hover > a,.clear_skin #standardMenu .rootMenu > li > a:hover{background-color:#ff8000;}
.clear_skin #megaMenu .root > li.selected > a,.clear_skin #megaMenu .root > li.rmHover > a,.clear_skin #megaMenu .root > li.breadcrumb > a,.clear_skin #megaMenu .root > li:hover > a,.clear_skin #megaMenu .root > li > a:hover{background-color:#ff8000;}
  
  
.wrapper .icon{
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: inline-block;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
  text-decoration: none;
}
.wrapper .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}
.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background-color: #e1306c;
  color: #ffffff;
}
.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}
.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background-color: #de463b;
  color: #ffffff;
}  
}
.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type=text] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  box-sizing: border-box;
  font-family: Arial;
  color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent > div > div {
  padding: 20px;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent > h3 > span,
.eds_modalWrapper .eds_modalContent > h3 > label {
  color: inherit;
  font: inherit;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type=text]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type=text]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type=text]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type=text].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper.eds_alignCenter {
  text-align: center;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button],
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 48px !important;
  text-shadow: none !important;
  padding: 0 30px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-transform: none !important;
  margin: 0 !important;
  height: auto !important;
  transition: all 100ms linear !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3 !important;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7 !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit].edn_stripeSubmit {
  border: solid 2px #747bff !important;
  background: #fff url("/DesktopModules/EasyDNNNews/images/stripe_checkout.png") 13px center no-repeat !important;
  color: #747bff !important;
  border-radius: 24px !important;
  padding-right: 25px !important;
  padding-left: 50px !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit].edn_stripeSubmit:hover {
  background-color: #747bff !important;
  color: #fff !important;
  background-image: url("/DesktopModules/EasyDNNNews/images/stripe_checkout_white.png") !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px !important;
  background: none #e9e9ed !important;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7 !important;
}
.eds_modalWrapper .eds_modalContent input[type=radio] + label,
.eds_modalWrapper .eds_modalContent input[type=checkbox] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > span {
  width: auto;
  white-space: normal;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  line-height: 1.3;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > input,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  vertical-align: top;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup {
  display: flex;
  flex-flow: column;
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup {
    flex-flow: row;
  }
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .eds_flexInput {
    flex-grow: 2;
    padding-right: 20px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .eds_justifyCenter {
  justify-content: center;
}
@media (min-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList {
    margin-top: 6px;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList > li {
    display: inline-block;
    vertical-align: middle;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .eds_flexGroup .inlineList > li label {
  width: auto;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "\f00d";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .edNews_tooltipContent {
  border-radius: 5px;
  border: 1px solid #B8D5E0;
  background: #0A445B;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  max-width: 350px;
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  top: auto;
  bottom: 100%;
  z-index: 999;
}
.eds_modalWrapper .edNews_tooltip {
  position: relative;
}
.eds_modalWrapper .edNews_tooltip::after {
  position: absolute;
  top: 0;
  left: auto;
  right: -6px;
  display: block;
  background: none;
  content: "\f059";
  font: 16px/1 "FontAwesome";
  text-align: center;
  padding: 0;
  color: #555;
  transition: color ease-in-out 0.4s;
}
.eds_modalWrapper .edNews_tooltip:hover .edNews_tooltipContent {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper .eds_labelAndInput:first-child .edNews_tooltipContent {
  top: 100%;
  bottom: auto;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages::before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success::before {
  content: "\f058";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "\f05a";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "\f071";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "\f06a";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type=radio] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before, .eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3::before {
  content: "\f0e0";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "\f022";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "\f085";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper.eds_width70 .eds_modalContent {
  width: 70%;
  max-width: 70%;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.eds_modalWrapper .styleDisplayNone {
  display: none !important;
}
.eds_modalWrapper .loading {
  position: relative;
}
.eds_modalWrapper .loading::before, .eds_modalWrapper .loading::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 999;
}
.eds_modalWrapper .loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.eds_modalWrapper .loading::after {
  content: "\f021";
  font: 900 3rem/1 "FontAwesome";
  color: #189fd3;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -1rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.edNews_adminInfo {
  display: inline-block;
  margin: 1rem;
  border-width: 1px;
  border-style: solid;
  border: solid 1px #ababab;
  border-radius: 3px;
  padding: 5px 10px;
  line-height: 0;
  background-color: #fff;
  font: normal normal 12px/1.1 "Arial";
}
.edNews_adminInfo label {
  font: inherit;
}
.edNews_adminInfo.edNews_info {
  border-color: #85bdf8;
  color: #85bdf8 !important;
}
.edNews_adminInfo.edNews_warning {
  border-color: #fa6900;
  color: #fa6900 !important;
}
.edNews_adminInfo.edNews_blockCenter {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.edNews_adminInfo .edNews_textCenter {
  text-align: center;
}
.edNews_adminInfo .edNews_inputGroup * {
  vertical-align: middle;
}
.edNews_adminInfo .edNews_inputGroup input[type=checkbox],
.edNews_adminInfo .edNews_inputGroup input[type=radio] {
  margin: 0;
}
.edNews_adminInfo .edNews_inputGroup input + label {
  margin: 0 0 0 7px;
}

.eds_modalContent ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalContent ul li label span {
  font-weight: bold;
}

body.eds__modalWindowOpened {
  height: 100vh;
  overflow-y: hidden;
}

.personalBarContainer ~ div .eds_modalWrapper {
  left: 80px;
}

.news .edn_userDashboard {
  margin-bottom: 2rem;
  font-size: 0;
  position: relative;
  border-radius: 7px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard {
    margin-bottom: 1rem;
  }
}
.news .edn_userDashboard::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32px;
  background-color: #f7f7f7;
  border-radius: 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard::before {
    height: 100%;
  }
}
.news .edn_userDashboard > div,
.news .edn_userDashboard a {
  display: inline-block;
}
.news .edn_userDashboard a {
  position: relative;
  font: 12px/32px Arial !important;
  color: #9b9b9b !important;
  text-decoration: none !important;
  text-align: center !important;
  padding: 0 0.4rem !important;
  background: none !important;
  transition: all 400ms !important;
  height: 32px !important;
  background-color: #f7f7f7 !important;
  cursor: pointer;
  text-transform: none !important;
  border: none !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a {
    font-size: 0 !important;
    height: 40px !important;
  }
}
.news .edn_userDashboard a::before {
  display: inline-block;
  vertical-align: middle;
}
.news .edn_userDashboard a::before {
  font: 20px/0 "FontAwesome";
  transition: all 400ms;
  z-index: 1;
  color: #c9c9c9;
  padding-right: 0.2rem;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a::before {
    font-size: 24px;
    padding-right: 0;
    line-height: 40px;
  }
}
.news .edn_userDashboard a:hover {
  color: #5f5f5f !important;
  background-color: #edeef0 !important;
  text-decoration: none !important;
}
.news .edn_userDashboard a:hover::before {
  color: #5f5f5f;
}
.news .edn_userDashboard a:first-child {
  border-top-left-radius: 7px;
}
.news .edn_userDashboard a:first-child:hover {
  border-top-left-radius: 0;
}
.news .edn_userDashboard a:last-child {
  border-top-right-radius: 7px;
}
.news .edn_userDashboard a:last-child:hover {
  border-top-right-radius: 0;
}
.news .edn_userDashboard a.add_article::before {
  content: "\f055";
}
.news .edn_userDashboard a.article_manager::before {
  content: "\f15c";
}
.news .edn_userDashboard a.event_manager::before {
  content: "\f133";
}
.news .edn_userDashboard a.approve_articles::before {
  content: "\f046";
}
.news .edn_userDashboard a.approve_comments::before {
  content: "\f0e6";
}
.news .edn_userDashboard a.category_manager::before {
  content: "\f0ca";
}
.news .edn_userDashboard a.dashboard::before {
  content: "\f26c";
}
.news .edn_userDashboard a.settings::before {
  content: "\f013";
}
.news .edn_userDashboard a.author_profile::before {
  content: "\f2be";
}
.news .edn_userDashboard a.themeSettings::before {
  content: "\f1fc";
}
