﻿
.toast-container {
	width: 280px;
	z-index: 9999;
}


* html .toast-container {
	position: absolute;
}

.toast-item {
	position:absolute;
	right:0; top:10px;
	width:300px;
	background:rgba(0,0,0,0.85);
	border:1px solid #333;
	
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	-webkit-box-shadow: inset 0px 25px 40px -25px rgba(255, 255, 255, 0.4),0px 1px 3px 0px rgba(0, 0, 0, 0.3), inset 0px -25px 25px -25px rgba(0, 0, 0, 0.9);
	box-shadow: inset 0px 25px 40px -25px rgba(255, 255, 255, 0.4),  0px 1px 3px 0px rgba(0, 0, 0, 0.3), inset 0px -25px 25px -25px rgba(0, 0, 0, 0.9); 
}

.toast-item > ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #999;
}

ul > li.toast-message{
	padding:15px;
	border-bottom:1px solid #222;
	border-top:1px solid #555;
	margin: 0;
	list-style-type: none;    
    cursor: move;
}

.toast-item > ul  > li.toast-message:first-child{
	border-top: none;
}

.toast-item > ul > li.toast-lastChild{
	padding:10px;
	text-align:center;
	border-bottom:1px solid #222;
	border-top:1px solid #555;
	margin: 0;
	list-style-type: none;
}

.toast-item  li.toast-message > a {
	display:inline-block;
	margin-bottom:5px;
	text-decoration:none;
	color:#fff;
	font-size:13px;
	font-weight:bold;
	cursor: pointer;
}

.toast-item p {
    text-align: left;
	margin: 0;	
	color:#aaa;
}

.toast-item  > ul  > li.toast-lastChild > a.seeMoreLink{	
	margin-bottom: 0;
}

.toast-item-close {
    background:url("/Resources/Shared/components/Toast/images/close.gif");
    width:22px;
    height:22px;
    position: absolute;
    top:-10px;
    right:-10px;
}

.toast-item-image{
	display: none;
}

.toast-item-image-notice {
    background:url("/Resources/Shared/components/Toast/images/notice.png");
}

.toast-item-image-success {
    background:url("/Resources/Shared/components/Toast/images/success.png");
}

.toast-item-image-warning {
    background:url("/Resources/Shared/components/Toast/images/warning.png");
}

.toast-item-image-error {
    background:url("/Resources/Shared/components/Toast/images/error.png");
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: white;
}

.toast-type-success {
    color: white;
}

.toast-type-warning {
    color: white;
    border-color: #FCBD57;
}

.toast-type-error {
    color: white;
    border-color: #B32B2B;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
    position: fixed;
    left: 20px;
    top: 20px;
}

.toast-position-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.toast-position-top-right {
    position: fixed;
    top: 20px;
    right: 80px;
}

.toast-position-middle-left {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.toast-position-middle-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-middle-right {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}


@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }


@charset "UTF-8";
/* WeHuntSC Global Skin: Skin.css */

/* DNN Body */
    
html{	
	background: url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/bg.jpg") no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}

.DnnModule-LiveBlog img {
	max-width:100%;
}

.detail-container{
	background:#fff;
}

.social-share-container{
	margin-top:-6px !important;
}

.StatesDropDown{
	width:100%;
	height:75px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/StatesDropDownBannerBkg.jpg") repeat-x;
}

.DropDown{
	width:100%;
	height:75px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/StatesDropDownBannerBkg.jpg") repeat-x;
	
}

.DNNEmptyPane{
	height: 0px !important;
	width: 0px !important;
	padding:0px !important;
	margin:0px !important;
}

#JumpStateSelect{
	display:none;
}

.MPBannerClose{
	display:none;
}

.ShowContent , .ShowBkg{
background: #666;
padding: 5px;
color: #ACACAC;
float: left;
margin-top: 5px;
border-radius: 5px;
cursor:pointer;
-moz-opacity: 0.35;
opacity: 0.35;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=35);
}


.ShowContent , .ShowBkg:Hover{
color: #FFF;
-moz-opacity: 0.95;
opacity: 0.95;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=95);
}

.HeaderBkg{
    margin-left:-100px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/MenuBkg.png") no-repeat;
	height:53px;
	width:1211px;
}


.StatesText{
	font-size:30px;
	color:#fff;
	padding:30px 0 0 0;
	float:left;
}

.StateImages{
	padding:15px 0px 0px 0px;
}

.StateImages img{
	margin-left:11px;
}

#SCimg:hover{
	margin-top:-5px;
}

#NCimg:hover{
	margin-top:-5px;
}

.PullBanner{
	float:left;
	height:104px;
	width:100px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/BannerSb.png") no-repeat;
	margin-left:10%;
	cursor:pointer;
	margin-top:-3px;
	z-index:1000;
}

.PullBanner:hover{	
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/BannerSw.png") no-repeat;
}

.spacer{clear:both; height:15px;}

.PageTitle{
	font-size:40px;
	margin:0 0 20px 10px;
}
	
.StateTabs{
	float:left; 
	margin-left:10px; 
	padding:12px 20px 12px 20px; 
	background:#ccc; 
	cursor:pointer;
	font-size:35px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}	

#dnn_FilterPane{
	clear:both;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png") repeat;
	padding-left:30px;
	padding-right:10px;
	width:975px;
	height:50px;
	padding-top:20px;
}

.Selected{
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png") repeat;
}



.GalleryWrapper{
	clear:both;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png") repeat;
	width:965px;
	padding:30px 25px 30px 25px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}


#SFooter{
	position:fixed;
	bottom:0;
	text-align:center;
	height:35px;
	width:100%;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/FooterTransBkg.png") repeat;
}

.PoweredBy{
	margin:0 auto;
	color:#fff;
	font-size:10px;
	padding-top:5px;
}

.PoweredBy img{
	height:25px;
}

/*------------------------------------------------*/
/* FONT STYLE */
/*------------------------------------------------*/
body,th,td,table,h1,h2,h3,h4,h5,h6,p, 
.Head,.SubHead,.SubSubHead, 
.Normal,.NormalBold, .NormalRed, .NormalTextBox, .NormalDisabled, 
a:link, a:visited, a:hover, input, .CommandButton {
	font-family: Arial, Helvetica, sans-serif;
}

a {
  cursor: pointer;
}

body,th,td,table,
.Head,.SubHead,.SubSubHead, 
.Normal,.NormalBold, .NormalRed, .NormalTextBox, .NormalDisabled {
	color: #666;
	font-size: 12px;
	line-height: 18px;
}

em { 
	font-style: italic; 
	letter-spacing: 0; 
}

strong { 
	color: #333;
	font-weight: bold; 
}
small { 
	font-size: 11px; 
	letter-spacing: 0;
}

::selection
{
background-color:#FB4563; 
}
::-moz-selection
{
background-color:#FB4563; 
} 

/*------------------------------------------------*/
/* HEADER STYLE */
/*------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {	
	color: #666;	
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;	
	line-height: 1;
	margin: 0 0 10px 0;
}
h1{
	font-size: 32px;
	font-weight: normal;
	/*text-shadow:0px 1px 0px rgba(255,255,255,1);*/
}
h2, h2 .Head{
	font-size: 28px;
	font-weight: normal;
}
h3, h3 .Head{
	font-size:24px;
	font-weight: normal;
}
h4, h4 .Head{
	font-size:20px;
}
h5, h5 .Head{
	font-size:16px;
}
h6, h6 .Head{
	font-size:14px;
}

/*------------------------------------------------*/
/* ANCHOR STYLE */
/*------------------------------------------------*/
a,a:link,a:visited,a:active{
	color:#005984;
	text-decoration:none;
}
a:hover{
	color:#ff8015; 
	text-decoration:none;
}

.pinkLink {
    color:#ff5f76; 
}

/* DNN Specific Selectors 
-------------------------------------*/
.CommandButton {
	font-size: 13px;
	color: #3d3d3d;
	font-weight: bold;
}
.CommandButton:hover {
	color: #007cae;
}
a.CommandButton:link {
	font-size: 13px;
	text-decoration: none;
	color: #3d3d3d;
	font-weight: bold;	
}
a.CommandButton:hover {
	text-decoration: underline;
	color: #007cae;
}

/*------------------------------------------------*/
/* PARAGRAPH STYLE */
/*------------------------------------------------*/
p {
	margin: 0 0 25px 0;
}

hr { 
	clear: both;
	height: 0;
	border: solid #e8e8e8; 
	border-width: 1px 0 0;  
	margin: 20px 0 20px 0; 
}

/*------------------------------------------------*/
/* IMAGE STYLES */
/*------------------------------------------------*/
img {
	border: 0;
}

/* Image Align Left 
-------------------------------------*/
.imgLeft {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}

/* Image Align Right 
-------------------------------------*/
.imgRight {
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;
}

/*------------------------------------------------*/
/* lIST STYLE */
/*------------------------------------------------*/
/* Unordered List
-------------------------------------*/
ul li {
	list-style-type: disc;
	margin-bottom: 8px;
	vertical-align: top;
}

ul ul {
	margin-top: 8px;
	margin-left: 30px;
}

ul li li {
	list-style-type: disc;
}

ul li li li {
	list-style-type: circle;
}

/* Ordered List
-------------------------------------*/
ol li {
	list-style-type: decimal;
	margin-bottom: 8px;
	vertical-align: top;
}

ol ol {
	margin-top: 8px;
	margin-left: 30px;
}

ol ol li {
	list-style-type: lower-roman;
}

ol ol ol li {
	list-style-type: lower-alpha;
}

ol ul li {
	list-style-type: lower-roman;
}

/*------------------------------------------------*/
/* TABLE STYLE */
/*------------------------------------------------*/
/* Default Table Style
-------------------------------------*/
table { border-collapse: collapse; border-spacing: 0;}
td { vertical-align: top; }
	
table.tableDefault  {
	width: 100%; 
	border-collapse: collapse; 
	border-spacing: 0; 
	background-color: transparent;
}

table.tableDefault th, 
table.tableDefault td {
	font-size: 12px;
	padding: 8px; 
}

table.tableDefault th {
	color: #fff;
	font-weight: bold;
	text-align: left;
	border-bottom: solid 2px #eb3250;
	background-color: #fb4563;
}

table.tableDefault td {
	border-bottom: solid 1px #d9d9d9;
}

table.tableDefault tr:nth-child(odd) {
	background: #transparent
}

table.tableDefault tr:nth-child(even) {
	background: #e8e4e3;
}

.tableDefault tbody tr:hover td { 
	color: #111;
}

/*------------------------------------------------*/
/* FORM STYLE
/*------------------------------------------------*/
input[type="text"],select,textarea,input[type="email"],input[type="search"], input[type="password"]{
	padding: 9px;
	background-color: #fff;
	border: 1px solid #ccc;
	/* CSS3 */
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3) ;
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3) ;
	
}

/* Form - One Column
-------------------------------------*/
.form_oneCol label {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.form_oneCol input , .form_oneCol textarea{
	width: 94%;
}

/*------------------------------------------------*/
/* BUTTONS STYLE */
/*------------------------------------------------*/
/* Primary Style Button 
-------------------------------------*/
button.dnnPrimaryAction, a.dnnPrimaryAction {
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #fff;
	padding: 10px;
	border: 1px solid #005894;
	margin-bottom: 10px;
	background-color: #005894;
	/* CSS3 */
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.5);	
	text-shadow: 0px 1px 0px #777;
	background: rgb(125,175,224); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(125,175,224,1) 0%, rgba(0,88,148,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(125,175,224,1)), color-stop(100%,rgba(0,88,148,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(125,175,224,1) 0%,rgba(0,88,148,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(125,175,224,1) 0%,rgba(0,88,148,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(125,175,224,1) 0%,rgba(0,88,148,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(125,175,224,1) 0%,rgba(0,88,148,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dafe0', endColorstr='#005894',GradientType=0 ); /* IE6-9 */

}

button.dnnPrimaryAction:hover, a.dnnPrimaryAction:hover {
	cursor: pointer;
	color: #fff;
	background-color: #005894;
	border: 1px solid #005894;
	/* CSS3 */
	background: rgb(0,88,148); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(0,88,148,1) 0%, rgba(125,175,224,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,88,148,1)), color-stop(100%,rgba(125,175,224,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,88,148,1) 0%,rgba(125,175,224,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,88,148,1) 0%,rgba(125,175,224,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,88,148,1) 0%,rgba(125,175,224,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,88,148,1) 0%,rgba(125,175,224,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005894', endColorstr='#7dafe0',GradientType=0 ); /* IE6-9 */

	
}

/* Secondary Style Button 
-------------------------------------*/
button.dnnSecondaryAction, a.dnnSecondaryAction {
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #666;
	padding: 10px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	background-color: #f4f4f4;
	/* CSS3 */
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	box-shadow:			0px 1px 0px 0px rgba(100, 100, 100, 0.3);
	-moz-box-shadow: 	0px 1px 0px 0px rgba(100, 100, 100, 0.3);
	-webkit-box-shadow: 0px 1px 0px 0px rgba(100, 100, 100, 0.3);	
	text-shadow: 0px 1px 1px #ffffff;
	
	background: -moz-linear-gradient(top, #ffffff, #eeeeee); /* FF3.6 */
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ffffff),color-stop(1, #eeeeee)); /* Saf4+, Chrome */
}

button.dnnSecondaryAction:hover, a.dnnSecondaryAction:hover { 
	cursor: pointer;
	color: #666;
	background-color: #f4f4f4;
	border: 1px solid #ddd;
	/* CSS3 */
	background: -moz-linear-gradient(top, #eeeeee, #ffffff); /* FF3.6 */
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #eeeeee),color-stop(1, #ffffff)); /* Saf4+, Chrome */
}

/* Alternative Style Button 
-------------------------------------*/
button.dnnTertiaryAction,
a.dnnTertiaryAction,
button.altButton,
a.altButton {
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #666;
	padding: 10px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	background-color: #eee;
}

button.dnnTertiaryAction:hover,
a.dnnTertiaryAction:hover,
button.altButton:hover,
a.altButton:hover {
	cursor: pointer;
	background-color: #bbb;
	border: 1px solid #aaa;
	color: #fff;
}

ul.footerlinks {
	margin: 0;
}
.footerlinks li {
	list-style: none;
	margin-bottom: 0;
}
.footerlinks li a:link,
.footerlinks li a:visited {
	color: #41AFA7;
}

.footerlinks li a:hover {
	color:#ff8015; 
}

/* Button Group Styles */
.dashboard-tab .dnnButtonGroup li a {
  padding: 8px;
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top, #fff, #dcdcdc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
 	
	font-weight:bold;
	font-size:12px;
	text-shadow: 0 1px 0 #FFFFFF;
}

.dashboard-tab .dnnButtonGroup li a.active {
  padding: 8px;
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#fff));
  background: -moz-linear-gradient(top, #dcdcdc, #fff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dcdcdc', endColorstr='#ffffff');
}

.dashboard-tab .dnnButtonGroup li a span{
	color:#777!important;
}


/* Remove focus outline on webkit browsers */
input[type="text"]:focus {
  outline: none;
}

/* Global HTML and DNN */
html {
	100%;
}

/* DNN Body */
#Body {
	100%
}

/* Adjust DNNActionMenu z-index */
.dnnActionMenu { z-index: 100;}


/*Site Spacing
-------------------------------------*/
.spacingTop {
	margin-top: 20px;
}

.spacingRight {
	margin-right: 20px;
}

.spacingBottom {
	 margin-bottom: 20px; 
}

.spacingLeft {
	margin-left: 20px;
}

/*------------------------------------------------*/
/* SITE STRUCTURE */
/*------------------------------------------------*/
.wrapper {
	margin: Auto;
	max-width: 1020px; /* Change width of the skin here */	
}

/* Site Header
-------------------------------------*/
.topBar {
	color: #ff5f76;
	text-transform: uppercase;
	padding: 8px 0 7px 0;
}

.topLink { 
	float: left;
	margin-top: 5px;
}

.topLink a:link, 
.topLink a:visited {
	color: #ff5f76;
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;	
	line-height: 1;
}

.topLink a:hover {
	color: #ff8015;
}

.topLink .normal {
	text-transform: none;
}

.header { 
	padding: 15px 0;
	border-top: solid 3px #ff8015;
	background: #fcb52f url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/header.jpg") center top no-repeat;
}

#logo {
	float: left;
	width:157px;
	height:157px;
	margin-top:10px;
}

.smallLogo{
	margin-top:0px !important;
	position:fixed;
	z-index:1;
}

.smallLogo img{
	width:88px !important;
	height:91px !important;
}

.topHeader {
	border-bottom: solid 1px #e5e5e5;
}

/*Search
-------------------------------------*/
.search {
	float: right; 
	width: 160px;
	height: 28px;
	background-color: #f4e9e9;
	border-radius: 3px;
	margin-top:10px;
}

.search a.SearchButton:link,
.search a.SearchButton:visited {
	float: right;
	display:inline-block;
	height: 28px;
	width: 30px;
	text-indent:-9999px;
	padding:0;
	margin: 0;
	background: #f4e9e9 url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/search.png") no-repeat center center;
	border-radius: 3px;
}
	
.search a.SearchButton:hover {		
	background: #f4e9e9 url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/search.png") no-repeat center center;
}
	
.search .searchSite label {
	display: none;
}
	
.search .searchSite input, 
.search .searchSite input[type="text"], 
.search .searchSite input[type="search"]  {
	display: block; 
	float: left;
	width: 120px;
	height: 28px;
	color: #ff5f76;
	line-height: 1;
	padding: 0 0 0 10px;
	border: none; 
	margin: 0;
	background-color: transparent;
	box-shadow: none;
	outline: none;
}	

#dnn_dnnSearch_txtSearch  {
    display: block; 
	float: left;
	width: 120px;
	height: 28px;
	color: #999;
	line-height: 1;
	padding: 0 0 0 10px;
	border: none; 
	margin: 0;
	background-color: transparent;
	box-shadow: none;
	outline: none;
}

/*Login
-------------------------------------*/
.login {
	float:right;	
	margin-right: 15px;	
	margin-top:10px;
	margin-bottom:10px;
}

/* User Controls Menu */
.userProperties {
	float:right;
	max-width:260px; /* grow user information to a max of 260px */
}

.userProperties > ul { 
	float: right;
	padding: 0;
	margin: 0;
}

.userProperties > ul li {
	position:relative;
	list-style: none; 
	padding: 0;
	margin: 0;	
}

.userProperties > ul li.userRegister a {
	margin-top:0px !important;
	background: #005894;
	padding: 8px;
	color: #ACACAC;
	float: left;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	cursor:pointer;
	-moz-opacity: 0.75;
	opacity: 0.75;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=75);

}



.userProperties > ul li.userLogin a {
	margin-top:0px !important;
	background: #005894;
	padding: 8px;
	color: #ACACAC;
	float: left;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor:pointer;
	-moz-opacity: 0.75;
	opacity: 0.75;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=75);
	border-left:1px solid #ACAC9D;
}


.userProperties > ul li.userLogin a:hover , .userProperties > ul li.userRegister a:hover {
	color: #fff;
	-moz-opacity: 0.99;
	opacity: 0.99;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=99);
}

.userProperties > ul > li, 
.userProperties > ul > li > span { 
	float:left; 
}

/*.userProperties > ul > li. img, */
.userProperties > ul > li > a {
	width: auto;
	display: block;
	color: #000;
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;	
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
}

.userName,
.userRegister,
.userLogin {
	padding-top: 0px;
}

.userRegister > a,
.userLogin > a{
	display: inline-block;
	line-height: 1;
	padding: 0 8px;
	margin-top: 8px;
	background:none;
}

.userRegister > a:hover,
.userLogin > a:hover	,
.userName > a:hover{
	color: #0000ff;
}

.userName {	
	max-width: 200px; /* user name and arrow max width */
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png") repeat;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	
}
	
.userName > a {
	display: inline-block;
	padding: 5px 25px 5px 10px;
	margin-right: 1px;
	background: url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/arrowDown.png") no-repeat 95% center;
	/* styles to handle long names */
	width:100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-radius:3px;
}
	
.userName > a.active {
	color: #ff8015;
}

.userProfile .userProfileImg {
	float: right;
	display: inline-block;
	overflow:hidden;
	margin: 0;
	border-radius:3px;
}

.userProfile .userProfileImg img {
	width:28px;
	height:28px; 
}

.userProfile .userMessages {
	display:none;
}
	
.userProfile .userMessages:after {
	content:'';
	position: absolute;
	left: -4px; 
	top: 5px;
	width: 0px; 
	height: 0px; 
	font-size: 0px;
	line-height: 0px;
	border-bottom: 4px solid transparent;  /* left arrow slant */
	border-top: 4px solid transparent; /* right arrow slant */
	border-right: 4px solid #f7f7f7; /* bottom, add background color here */
	
}
	
/* User Controls Menu Drop Down */
.userProperties ul.userMenu {
	z-index: 100;
	display: none;
	position: absolute;	
	width: 225px;
	top:10px; 
	left:0; 
	border: 1px solid #fff;
	margin: 18px 0 0 0;
	background: #fff;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
	-webkit-animation-duration: .25s;
	-webkit-animation-delay: .2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .25s;
	-moz-animation-delay: .2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .25s;
	-ms-animation-delay: .2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .25s;
	animation-delay: .2s;
	animation-timing-function: ease;
	animation-fill-mode: both;
	padding: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;	
}

.userProperties ul.userMenu li { 
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}

.userProperties li.userNotifications,
.userProperties li.userProfilename {
	border-bottom: 1px dotted #999;
}

.userProperties ul.userMenu a {
	display: block;
	padding: 5px 15px;
	color: #666;
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	transition: all ease-in 100ms;
	-moz-transition: all ease-in 100ms;
	-webkit-transition: all ease-in 100ms;
	-o-transition: all ease-in 100ms;
	-ms-transition: all ease-in 100ms;
	text-transform: none;
}

.userProperties ul.userMenu a span{ 
	padding: 0px 4px;
	background:rgba(0,0,0,0.45); 
	border-radius:3px;  
	font-size:11px; 
	font-weight:bold; 
	color:#fff;
	/* CSS3 */
	text-shadow: 0px 1px 0px rgba(0,0,0,0.8);
	-webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1);
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1); 
	text-transform: none;
}

.userProperties ul.userMenu li:last-child > a { 
	padding-top: 10px;
}

.userProperties ul.userMenu li:hover > a,
.userProperties ul.userMenu li:hover > a strong {
	color:#ff5f76;
	background: #f4f4f4;
}

/* Navigation
-------------------------------------*/
/* Site Navigation */
#mNav{display:none;}

#nav {
	float: right;
	clear:right;
	margin-top:20px;
	display: inline-block; 
	background: url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png");
	border-radius:5px;
	padding-right:20px;
}

.StickyMenuBkg{
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png");
	background:#fff;
	height:50px;
	width:100%;
	position:fixed;
	filter: alpha(opacity=90);
	opacity: 0.90;
	border-bottom:2px solid #ccc;
	-webkit-box-shadow: 0 5px 15px 1px #666;
	box-shadow: 0 5px 15px 1px #666;
	z-index:1;
	display:none;
}

#nav2{
	position:fixed;	
	margin-top:-5px;
	margin-left:550px;
	z-index:1;
	display:none;
}

#dnn_pnav li { 
	position:relative; 
	list-style:none;
	padding: 0;
	margin: 0;
}

#dnn_pnav > li {
	float:left;
	padding: 0;
	margin: 0 0 0 25px; 
}

#dnn_pnav > li:first-child {
	float:left;
	padding: 0;
	margin: 0 0 0 0px; 
}
	
#dnn_pnav > li > a, #dnn_pnav > li > span {
	display: block;
	color: #000;
	font-size: 27px;
	font-weight:normal;
	text-decoration: none;
	padding: 20px 0 15px 0; 
	border-bottom: solid 7px transparent;
	margin: 0;
}
	
#dnn_pnav > li:hover > a, #dnn_pnav > li.active > a  {
	color:#005984;
	border-bottom: solid 7px #005894;
}
	
#dnn_pnav > li:hover > a:active { 
	color:#fff;
	border-bottom: solid 7px #fff;
}
	
#dnn_pnav > li:hover > span {
	color:#005984;
	border-bottom: solid 7px #005894;
}

/* Secondary level */
#dnn_pnav > li ul {  /* Styles for all sub levels */
	display:none;
	position:absolute;
	z-index: 2;
	width: 180px;
	padding: 0;
	border: 2px solid #005894;
	margin: 25px 0 0 0;
	background: #fff;
	/* CSS3 */
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
	box-shadow:	0px 2px 2px 0px rgba(0, 0, 0, 0.4);
	-webkit-animation-duration: .25s;
	-webkit-animation-delay: .2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .25s;
	-moz-animation-delay: .2s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .25s;
	-ms-animation-delay: .2s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .25s;
	animation-delay: .2s;
	animation-timing-function: ease;
	animation-fill-mode: both; 
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
}
	
#dnn_pnav li:hover > ul { 
	display:block;
}
	
#dnn_pnav > li > ul { /* styles specific to secondary level */
	top:35px; 	
	padding: 5px;
	z-index:1000;
}

#dnn_pnav > li > ul.rightDropdown{
	right: 0 !important;
}

#dnn_pnav > li > ul:after {
	position:absolute;
	top:-15px; 
	left:20px;
	content:'';
	width:0px; 	
	height:0px; 
	font-size:0px;
	line-height:0px;
}

#dnn_pnav > li ul a {
	display:block;
	padding: 5px 15px;
	color:#666;
	font-family: "Titillium Web", Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight: normal;
	text-decoration:none;
	/* transition decleration */
	transition: all ease-in 100ms;
	-moz-transition: all ease-in 100ms; /* Firefox 4 */
	-webkit-transition: all ease-in 100ms; /* Safari and Chrome */
	-o-transition: all ease-in 100ms; /* Opera */
	-ms-transition: all ease-in 100ms; /* IE9? */
}

#dnn_pnav  ul li:last-child > a { }
	
#dnn_pnav > li > ul li:hover > a {
	color:#005894;
	background: #f4f4f4;
}
	
/* Tertiary level */
#dnn_pnav li ul li ul {
	left: 225px; 
	top: -25px;
	padding: 5px;
	border-left: 1px solid #ddd;
}

/* Social links */
ul.socialConnect {
	display: inline-block;
	margin: 0 0 15px 0;
}

ul.socialConnect li {
	float: left;
	color: #999;
	font-weight: bold;
	list-style-type: none;
	padding-left: 15px;
}

ul.socialConnect li  a{
	display: inline-block;
	vertical-align: top;
	background-image: url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/includes/spriteSocial.png");
	width: 16px;
	height: 16px;
}

ul.socialConnect li a.socialConnect-twitter {	
	background-position: -8px -8px;
}

ul.socialConnect li a.socialConnect-facebook {
	background-position: -38px -8px;
}

ul.socialConnect li a.socialConnect-linkedin {
	background-position: -68px -8px;
}

ul.socialConnect li a.socialConnect-googleplus {
	background-position: -98px -8px;
}

ul.socialConnect li a.socialConnect-twitter:hover {	
	background-position: -128px -8px;
}

ul.socialConnect li a.socialConnect-facebook:hover {
	background-position: -158px -8px;
}

ul.socialConnect li a.socialConnect-linkedin:hover {
	background-position: -188px -8px;
}

ul.socialConnect li a.socialConnect-googleplus:hover {
	background-position: -218px -8px;
}

/* Breadcrumb
-------------------------------------*/	
.breadcrumb {
	padding: 28px 0 12px 0;
}

.breadcrumb img {
	margin-left: 10px;
	margin-right: 10px;
}

a.breadcrumbLink:link,
a.breadcrumbLink:visited {
	color: #fff;
	text-transform: uppercase;
}

a.breadcrumbLink:hover {
	color: #fff;
	text-decoration: underline;
}

/* Content Panes
-------------------------------------*/
.contentWrap {
	border-top:1px solid white;
	padding-top: 40px;
	background: #f7f1f0; /* Old browsers */
	background: radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1)24%, #f7f1f0 55%);
	background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1)24%, #f7f1f0 55%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1)24%, #f7f1f0 55%);
	background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1)24%,#f7f1f0 55%); 
	
	-webkit-box-shadow: inset 0px 45px 30px -25px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 45px 30px -25px rgba(255, 255, 255, 1);
}

#content{
	padding:20px 0px 13px 0px;
	margin:0 0px 200px 0px;
	border-radius:5px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/TabBkg.png")repeat;
	width:100%;
	overflow:hidden; 
}

/* Content Pane - Home */

.VideoPane{
	float:right;
	margin:-39px 25px -65px 0px;
	padding:38px 0px 0px 2px;
	height:66px;
	width:98px;
	background:url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/VideoPlayerBkg.png") top left no-repeat;
}


.contentPane {
	width: auto;
	clear:left;
}

.leftPane {
	float:left;
	width: 70.6%;
	
}

.sidebarPane {
	float:left;
	width: 23.5%;
	
}

.smallLeftPane {
	float:left;
	clear:left;
	width: 22%;
	margin-right:-14px;
	
}

.bigRightPane {
	float:right;
	width: 72%;
	
}

.ThreeColLeftPane{
	float:left;
	clear:left;
	width:30.6%;	
}

.ThreeColMiddlePane{
	float:left;
	width:30.6%;
}

.ThreeColRightPane{
	float:left;
	width:30.6%;
}
.WeatherLeftPane{
	float:left;
	clear:left;
	width:29%;
}

.WeatherRightPane{
	float:left;
	width:65%;
}

.DNNContainer_Title_h5 {
	border-radius:10px;
}

.bottomPane{
	float:left;
	clear:left;
	width:96%;
}

a.dnnSocialLink {
    color: #339795;
	color: #005894;
}

.idea-pager-ul > li > a {
    color: #339795;
}

.moduleTopInsetShadowBox, .moduleBotInsetShadowBox { 
    -moz-box-shadow: 	0 40px 40px -25px #E9E1DE inset;
    -webkit-box-shadow: 0 40px 40px -25px #E9E1DE inset;
    box-shadow: 		0 40px 40px -25px #E9E1DE inset;
}

/* Content Pane - Footer */
.footer {
	clear: both;
	padding-top: 40px;
	padding-bottom: 20px;
}

.footerPane {
	float: left;
	width: 145px;
	min-height: 55px;
	border-right: solid 1px #ddd; 
}

.footer .last {
	border-right: none;
}

.footerPaneRight { 
	float: right; 
} 
	
/* Copyright
-------------------------------------*/
.copyright {
	color: #999;
	padding-top: 20px;
	padding-bottom: 20px;
}

/* nicer DNN info boxes */
.dnnFormMessage.dnnFormWarning {
  -moz-box-shadow: 0 0 7px #d4cfce;
  -webkit-box-shadow: 0 0 7px #d4cfce;
  box-shadow: 0 0 7px #d4cfce;
  background-color: #fff;
  color: #fb0044;
  font-weight: bold;
  border: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
  border-radius: 0;
}

.dnnFormMessage {
  -moz-box-shadow: 0 0 7px #d4cfce;
  -webkit-box-shadow: 0 0 7px #d4cfce;
  box-shadow: 0 0 7px #d4cfce;
  background-color: #fff;
  color: black;
  font-weight: normal;
  border: none; 
  margin-left: 0;
  margin-right: 0;  
  margin-bottom: 15px;
  border-radius: 0;
}

/* some specific nebula elements color redefine */

.activeIndicator{
  background-color: #ff5f76 !important;
  color: #fff !important;
}

a.no-answer{
	background-color: #ff5f76 !important;
	color: #fff !important;
}

.DnnModule-Messaging-Notifications .dnnAdminTabNav a span {	
	background-color: #fb0044 !important;
	background: #fb0044 !important;
	color: #fff !important;
}

/* fix on jquery ui popup with default button */
.dnnFormPopup .ui-dialog-buttonpane button.dnnPrimaryAction {
    margin: 0 10px 0 0 ;
    padding: 10px;
    border: 1px solid #339795;
}

.dnnFormPopup .ui-dialog-buttonpane button.dnnSecondaryAction {
    margin: 0 10px 0 0 ;
    padding: 10px;
    border: 1px solid #ddd;
}

/* social event/idea special border */
.ModSocialEventsC .idea-list-vote-panel:after{ 
    display:block;
    position:absolute;
    bottom:-6px; left:30px;
    width:120px; 
    height:1px;
    content:"";
    border-bottom:5px solid #ccc;
}

@-moz-document url-prefix(){
    .ModSocialEventsC .idea-list-vote-panel:after
    {
        display: none;
    }
    .ModSocialEventsC .idea-list-vote-panel
    {
        border-bottom:5px solid #ccc;
    }
}

.ModIdeasC .idea-list-vote-panel:after {     
    display:block;
    position:absolute;
    top:-1px; left:15px;
    width:150px; 
    height:1px;
    content:"";
    border-bottom:5px solid #ccc;
}

@-moz-document url-prefix(){
    
    .ModIdeasC .idea-list-vote-panel:after
    {
        display: none;
    }

    .ModIdeasC .idea-list-vote-panel
    {
        border-bottom:5px solid #ccc;
    }
}

/* vote button style */

.share-idea-vote-options .button,
.idea-vote-options .button {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  background-color: rgb(0, 215, 199) !important;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(0, 215, 199)), to(rgb(0, 179, 193))) !important;
  background: -moz-linear-gradient(top, rgb(0, 215, 199) 0%, rgb(0, 179, 193) 100%) !important; /* FF3.6+ */
  background: -webkit-linear-gradient(top, rgb(0, 215, 199) 0%,rgb(0, 179, 193) 100%) !important; /* Chrome10+,Safari5.1+ */    
  background: -ms-linear-gradient(top, rgb(0, 215, 199) 0%,rgb(0, 179, 193) 100%) !important; /* IE10+ */
  background: linear-gradient(top, rgb(0, 215, 199) 0%,rgb(0, 179, 193) 100%) !important; /* W3C */
}

.share-idea-vote-options .button.left,
.idea-vote-options .button.left {
  display:block;clear:none;
  border-left-color: rgb(0, 194, 194);
  border-left-style: solid;
  border-right-color: gray;
  border-right-style: solid;
  border-top-color: rgb(0, 194, 194);
  border-top-style: solid;
  border-top-width: 1.1111111640930176px;
  box-shadow: #306166 0px 1px 1px 0px !important;
  border-radius: 1px;
  overflow: hidden;
  border-right: 1px solid gray; /* IE */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); /* IE dumbness */
}

.idea-vote-options .ie-shadow {
	background-color: rgb(68,68,68); /* Needed for IEs */
  border-radius: 5px; /* for non-IE */
	-moz-box-shadow: 2px 2px 2px rgba(68,68,68,0.6);
	-webkit-box-shadow: 2px 2px 2px rgba(68,68,68,0.6);
	box-shadow: 2px 2px 2px rgba(68,68,68,0.6);
	filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
	-ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
}

.share-idea-vote-options .button.center,
.idea-vote-options .button.center {  
  border-left-color: rgb(0, 194, 194);
  border-left-style: solid;
  border-right-color: gray;
  border-right-style: solid;
  border-top-color: rgb(0, 194, 194);
  border-top-style: solid;
  border-top-width: 1.1111111640930176px;
  box-shadow: #306166 0px 1px 1px 0px !important;
}

.share-idea-vote-options .button.vright,
.idea-vote-options .button.vright {
  border-left: none;
  border-right-color: gray;
  border-right-style: solid;
  border-top-color: rgb(0, 194, 194);
  border-top-style: solid;
  border-top-width: 1.1111111640930176px;
  box-shadow: #306166 0px 1px 1px 0px !important;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}

.share-idea-vote-options .button.single,
.idea-vote-options .button.single {
  border-left-color: rgb(0, 194, 194);
  border-left-style: solid;
  border-right-color: rgb(0, 194, 194);
  border-right-style: solid;
  border-top-color: rgb(0, 194, 194);
  border-top-style: solid;
  border-top-width: 1.1111111640930176px;
  box-shadow: #306166 0px 1px 1px 0px !important;
}

.share-idea-vote-options .button.disabled,
.idea-vote-options .button.disabled,
.share-idea-vote-options .button.disabled:hover,
.idea-vote-options .button.disabled:hover,
.share-idea-vote-options .button.disabled:active,
.idea-vote-options .button.disabled:active
 {
	background-color: #eee !important;
	color: rgb(122, 122, 122) !important;
}

.share-idea-vote-options .button:hover,
.idea-vote-options .button:hover {
  background-color: rgb(0, 149, 138) !important;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(0, 149, 138)), to(rgb(0, 74, 80))) !important; 
  background-image: linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -o-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -moz-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -webkit-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -ms-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
}

.share-idea-vote-options .button:active,
.idea-vote-options .button:active {
  background-color: rgb(0, 74, 80) !important;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(0, 74, 80)), to(rgb(0, 149, 138))) !important;
  background-image: linear-gradient(top, rgb(0, 74, 80), rgb(0, 149, 138)) !important;
  background-image: -o-linear-gradient(top, rgb(0, 74, 80), rgb(0, 149, 138)) !important;
  background-image: -moz-linear-gradient(top, rgb(0, 74, 80), rgb(0, 149, 138)) !important;
  background-image: -webkit-linear-gradient(top, rgb(0, 74, 80), rgb(0, 149, 138)) !important;
  background-image: -ms-linear-gradient(top, rgb(0, 74, 80), rgb(0, 149, 138)) !important;
}

.share-idea-vote-options .button.selectedVotes,
.idea-vote-options .button.selectedVotes {
  background-color: rgb(0, 149, 138) !important;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(0, 149, 138)), to(rgb(0, 74, 80))) !important;
  background-image: linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -o-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -moz-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -webkit-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
  background-image: -ms-linear-gradient(top, rgb(0, 149, 138), rgb(0, 74, 80)) !important;
}

input[type="text"]::-webkit-input-placeholder { /* WebKit browsers */
    color: #999;
}

input[type="text"]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
}

input[type="text"]::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
}

input[type="text"]:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999;
}

/* Profile Console Module */
.console br {
	height:0;
	display:none;
}
.console-none .console-none {
	padding-bottom:5px!important;
}
.console-none h3{
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	letter-spacing:normal;
}




@media only screen and (min-width : 481px){



}

/****************************************************** START OF RESPONSIVE **********************************************************************************/
/****************************************************** START OF RESPONSIVE **********************************************************************************/
/****************************************************** START OF RESPONSIVE **********************************************************************************/

@media only screen and (min-width : 0px) and (max-width : 1023px){

	.ShowContent, .ShowBkg {
		display:none;
	}

	.PullBanner{
		background:#005894;
		width:100%;
		margin:0px;
		padding:0px;
		height:25px;
		text-align:center;
		padding:5px 0px 0px 0px;
	}

	.PullBanner:after{
		content:"Jump to Another WeHunt State";
		text-align:center;
		color:#7083bE;
		font-size:20px;
	}
	
	.PullBanner:hover{
		background:#005894;
	}
	
	.MPBannerClose{
		float:right;
		color:#000;
		font-weight:bold;
		background:#fff;
		border-radius:50px;
		height:20px;
		width:16px;
		margin: -27px 10px 0px 0px;
		padding:3px 0px 0px 7px;
		cursor:pointer;
		display:none;
	}
	
	.DropDown{
		height:50px
	}
	
	#JumpStateSelect{
		display:inline-block;
		width:90%;
		margin:7px 0px 0px 0px;
	}
	
	.StateImages{
		display:none;
	}
	
	.StatesText{
		margin:0px 0px 0px 40px;
		display:none !important;	
	}

	.search{
		display:none;
	}
	
	#logo{
		margin-left:40%;
	}
	
	.LWrap{
		max-width:1024px;
		float:left;
		margin-left:45%;
	}
	
	.login{
		clear:both;
	}
	
	img {
		max-width:100%;
		height:auto;
	}
	
	#mMenuIcon{
		margin: -1px 7px 0px 0px;
	}
	
	.spacer{
		height:0px;
	}
	
	#content{
		margin: 1% 0% 35% 1%;
		padding: 8px 0px 0px 1%;
		border-radius:0px;
		width:97%;
	}
	
	.VideoPane{
		display:none;
	}
	
	.contentPane{
		float:left;
		width: 99%;
		margin:0px;
	}
	
	.leftPane {
		float:left;
		width: 99%;
		margin:0px;
	}
	
	.sidebarPane {
		float:left;
		width: 98%;
		margin-top:20px;
		margin-right:3px;
		margin-left:3px;
	}

	.smallLeftPane {
		float:left;
		clear:left;
		width: 99%;
		margin-right:3px;
		margin-left:3px;
	}

	.bigRightPane {
		float:left;
		width: 99%;
		margin-right:3px;
		margin-left:3px;
	}

	.WeatherLeftPane{
		float:left;
		clear:left;
		width: 99%;
		margin-right:3px;
		margin-left:3px;
	}

	.WeatherRightPane{
		float:left;
		width:99%;
		margin-right:3px;
		margin-left:3px;
	}


	.ThreeColLeftPane{
		float:left;
		clear:left;
		width: 99%;\
		margin-right:3px;
		margin-left:3px;
		
	}

	.ThreeColMiddlePane{
		float:left;
		width: 99%;
		margin-right:3px;
		margin-left:3px;
	}

	.ThreeColRightPane{
		float:left;
		width: 99%;
		margin-right:3px;
		margin-left:3px;
	}


	.bottomPane{
		width:99%;
	/*  float:left; ----- Removing this so that the white background covers entire page*/
		clear:left;
		margin-right:3px;
		margin-left:3px;
	}
	
	
	
	/* Navigation
	-------------------------------------*/
	/* Site Navigation */
	#mNav{
		display:inline-block;
		clear:both;
		float:right;
		width:150px;
		height:35px;
		background:#005894;
		color:#fff;
		margin-right:.7%;
		font-size:25px;
		font-weight:bold;
		text-align:center;
		padding-top:15px;
		cursor:pointer;
		-webkit-border-top-left-radius: 5px;
		-webkit-border-top-right-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-topright: 5px;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	
	#mNavFlat{
		  -webkit-border-bottom-right-radius: 0px;
		  -webkit-border-bottom-left-radius: 0px;
		  -moz-border-radius-bottomright: 0px;
		  -moz-border-radius-bottomleft: 0px;
		  border-bottom-right-radius: 0px;
		  border-bottom-left-radius: 0px;
	}
	
	
	#nav {
		float:right;
		clear:both;
		margin-top:-5px;
		margin-left:2px;
		margin-right:.3%;
		display: none; 
		background:none;
		border-radius:0px;
		width:99%;
		padding:0px;
	}
	
	#dnn_pnav li { 
		position:relative; 
		list-style:none;
		padding: 0;
		margin: 0;
	}

	#dnn_pnav > li {
		float:left;
		padding: 0;
		margin: 0 0 0 0px; 
		width:99.5%;
		text-align:center;
	}
	
	ul{
		margin-left:0px;
	}

	#dnn_pnav > li:first-child {
		float:left;
		padding: 0;
		margin: 0 0 0 0px; 
	}
		
	#dnn_pnav > li > a, #dnn_pnav > li > span {
		display: block;
		color: #fff;
		font-size: 27px;
		font-weight:normal;
		text-decoration: none;
		padding: 20px 0 15px 0; 
		border-bottom: solid 7px transparent;
		margin: 0;
		background:#005894;
	}
		
	#dnn_pnav > li:hover > a, #dnn_pnav > li.active > a  {
		color:#fff;
		border-bottom: solid 7px #005894;
	}
		
	#dnn_pnav > li:hover > a:active { 
		color:#fff;
		border-bottom: solid 7px #fff;
	}
		
	#dnn_pnav > li:hover > span {
		color:#fff;
		border-bottom: solid 7px #005894;
	}

	/* Secondary level */
	#dnn_pnav > li ul {  /* Styles for all sub levels */
		display:none;
		position:absolute;
		z-index: 2;
		width: 97%;
		padding: 0;
		border: 0px solid #005894;
		margin: 5px 0 0 0;
		background: #005894;
		/* CSS3 */
		-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
		box-shadow:	0px 2px 2px 0px rgba(0, 0, 0, 0.4);
		-webkit-animation-duration: .25s;
		-webkit-animation-delay: .2s;
		-webkit-animation-timing-function: ease;
		-webkit-animation-fill-mode: both;
		-moz-animation-duration: .25s;
		-moz-animation-delay: .2s;
		-moz-animation-timing-function: ease;
		-moz-animation-fill-mode: both;
		-ms-animation-duration: .25s;
		-ms-animation-delay: .2s;
		-ms-animation-timing-function: ease;
		-ms-animation-fill-mode: both;
		animation-duration: .25s;
		animation-delay: .2s;
		animation-timing-function: ease;
		animation-fill-mode: both; 
		-webkit-border-bottom-right-radius: 0px;
		-webkit-border-bottom-left-radius: 0px;
		-moz-border-radius-bottomright: 0px;
		-moz-border-radius-bottomleft: 0px;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 0px;
		-webkit-border-top-right-radius: 0px;
		-moz-border-radius-topright: 0px;
	}
		
	#dnn_pnav li:hover > ul { 
		display:block;
	}
		
	#dnn_pnav > li > ul { /* styles specific to secondary level */
		top:35px; 	
		padding: 5px;
	}

	#dnn_pnav > li > ul.rightDropdown{
		right: 0 !important;
	}

	#dnn_pnav > li > ul:after {
		position:absolute;
		top:-15px; 
		left:20px;
		content:'';
		width:0px; 	
		height:0px; 
		font-size:0px;
		line-height:0px;
	}

	#dnn_pnav > li ul a {
		display:block;
		margin-top:10px;
		padding: 5px 15px;
		color:#ccc;
		font-family: "Titillium Web", Arial, Helvetica, sans-serif; 
		font-size: 17px;
		text-transform:uppercase;
		font-weight: bold;
		text-decoration:none;
		/* transition decleration */
		transition: all ease-in 100ms;
		-moz-transition: all ease-in 100ms; /* Firefox 4 */
		-webkit-transition: all ease-in 100ms; /* Safari and Chrome */
		-o-transition: all ease-in 100ms; /* Opera */
		-ms-transition: all ease-in 100ms; /* IE9? */
		
	}

	#dnn_pnav  ul li:last-child > a { }
		
	#dnn_pnav > li > ul li:hover > a {
		color:#ccc;
		background: #005894;
	}
		
	/* Tertiary level */
	#dnn_pnav li ul li ul {
		left: 225px; 
		top: -25px;
		padding: 5px;
		border-left: 1px solid #ddd;
	}

}


@media only screen and (min-width : 1024px) and (max-width : 1033px){
	
	.sidebarPane {
		float:left;
		width: 23%;
	}

}

@media only screen and (min-width : 0px) and (max-width : 381px){
	
	html{
		background: url("/Portals/_default/Skins/WeHuntSC_Global_Responsive/images/bg.jpg") no-repeat top center fixed; 
		-webkit-background-size: 100%;
		-moz-background-size: 100%;
		-o-background-size: 100%;
		background-size: 100%;
	}
	
	#logo {
		width:125px;
		height:92px;
		margin-left:3%;
	}
	
	.LWrap{
		float:right;
		margin-left:0px;
	}
	
	#nav2{
		display:none !important;
	}
	
	.StickyMenuBkg{
		display:none !important;
	}
	
	.smallLeftPane{
		margin-bottom:20px;
	}
	.console-none div{
		width:290px;
	}

}



/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNnews/static/font-awesome/css/font-awesome.min.css");
/* 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;
}

/* latin-ext */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--thjGy9m0s.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--thgmy9.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbXsl0vU0.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbUMl0.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xhjGy9m0s.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xhgmy9.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--thjGy9.woff2") format('woff2');
}
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbXsl0.woff2") format('woff2');
}
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xhjGy9.woff2") format('woff2');
}

@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 300;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--thjGy7.woff") format('woff');
}
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 400;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbXsly.woff") format('woff');
}
@font-face {
  font-family: 'BenchNine';
  font-style: normal;
  font-weight: 700;
  src: url("//fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xhjGy7.woff") format('woff');
}



.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_articleSimple .EDN_simpleDate,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleDate
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "BenchNine";
	color: #027dd3;
	font-size: 20px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime
{
	text-transform: uppercase;
	font-family: "BenchNine";
	color: #027dd3;
	font-size: 16px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/timeLineLocationIcon/predefined/timelineLocationBlue.png");
	background-position: 0% 1px;
	font-family: "BenchNine";
	color: #888888;
	font-size: 17px;
	font-weight: 300;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineThumbnail > a,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article.eds_timeLineArticle2::after
{
	background-color: #e8e8e8;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .articleTitle
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article h2 a
{
	color: #25282A;
	font-size: 35px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article h2 a:hover
{
	text-decoration: none;
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar_box a:hover
{
	color: #027dd3;
	border-top-color: #ebebeb;
	border-bottom-color: #ebebeb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSidebarBox .EDN_article.EDN_sidebar_box.EDN_activeclass a
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > h2 a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > h2 a:hover
{
	text-decoration: none;
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_details h1,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_details h1
{
	color: #25282A;
	font-size: 40px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article h3.articleTitle
{
	color: #919191;
	font-size: 22px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listCatalogDefault .EDN_category_info .EDN_categoryDescription
{
	color: #3B3B3B;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news a
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news a:hover
{
	text-decoration: underline;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article .EDN_article_content
{
	color: #3B3B3B;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .EDN_article_content,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .EDN_article_content
{
	color: #7a7a7a;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle > div,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle > div
{
	border-top-color: #dedede;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/timeLineExportEvent/predefined/timelineExportCalendarBlue.png");
	background-position: 50% 50%;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline2 .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/timeLineEventTime/predefined/timelineTime2Blue.png");
	background-position: 0% 50%;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_tagCloud .tags a
{
	background-color: #cacaca;
	font-family: "Arial";
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_tagCloud .tags a:hover
{
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category
{
	color: #027dd3;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse
{
	background-position: 0px -25px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_simpleArticleImage:hover
{
	border-color: #ffffff;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .3);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimple .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleTabs .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleSimpleAccordion .EDN_article.EDN_articleSimple .EDN_simpleArticleImage,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .child_categories .EDN_catalog-item a:hover
{
	border-color: #ffffff;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .3);
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .child_categories .EDN_catalog-item a:hover span
{
	text-decoration: none;
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_articleBox .EDN_imageContainerBox
{
	border-width: 1px;
	border-style: solid;
	border-color: #efefef;
}

.eds_news_Vision.eds_style_predefined_blue .EDN_article.EDN_articleBox .EDN_imageContainerBox
{
	background-color: #f7f7f7;
}

.eds_news_Vision.eds_style_predefined_blue .EDN_article.EDN_articleBox .EDN_imageContainerBox .EDN_metaDetailsBox li
{
	color: #9E9E9E;
}

.eds_news_Vision.eds_style_predefined_blue .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_predefined_blue .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2 a
{
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue .EDN_article.EDN_articleBox .EDN_imageContainerBox > h2
{
	border-bottom-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_meta-details
{
	background-color: #EBEBEB;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_meta-details li.EDN_publish-date
{
	background-color: #027dd3;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_readmore.EDN_readMoreButton
{
	background-color: #0B507C;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_readmore.EDN_readMoreButton:hover
{
	background-color: #046DB0;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_event-location-container .edn_eventPrice
{
	font-family: "BenchNine";
	font-size: 22px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	background-color: #0B507C;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover
{
	background-color: #046DB0;
}

.eds_news_Vision.eds_style_predefined_blue .edsTabulator > ul .edsTabulator_tabTrigger
{
	background-color: #001827;
	font-family: "BenchNine";
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue .edsTabulator > ul .edsTabulator_tabTrigger:hover,
.eds_news_Vision.eds_style_predefined_blue .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active:hover
{
	background-color: #126cb3;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active
{
	background-color: #126cb3;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue .edsTabulator > ul
{
	border-bottom-color: #2f2f2f;
}

.eds_news_Vision.eds_style_predefined_blue .edsAccordion .edsAccordion_section .edsAccordion_title
{
	background-color: #001827;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/expand-blue.png");
	background-position: 97% 50%;
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 17px;
}

.eds_news_Vision.eds_style_predefined_blue .edsAccordion .edsAccordion_section .edsAccordion_title:hover,
.eds_news_Vision.eds_style_predefined_blue .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title:hover
{
	background-color: #126cb3;
}

.eds_news_Vision.eds_style_predefined_blue .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title
{
	background-color: #126cb3;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/accordionExpandableHead/expandIcon/predefined/collapse-blue.png");
	background-position: 97% 50%;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags
{
	border-left-color: #B1B1B1;
	font-family: "Arial";
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i
{
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i
{
	color: #37b1ab;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span:hover > i
{
	color: #37b1ab;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span
{
	color: #6e6e6e;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__voted,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover
{
	color: #6e6e6e;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown
{
	color: #6e6e6e;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_ArticleVoting > span:hover
{
	color: #6e6e6e;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles
{
	background-color: #E6E6E6;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li a
{
	text-decoration: none;
	color: #343638;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .edn_relatedArticles ul li a:hover
{
	text-decoration: underline;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments
{
	border-width: 1px;
	border-style: solid;
	border-color: #E6E6E6;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments > h2
{
	font-family: "BenchNine";
	color: #25282A;
	font-size: 19px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments ul li a
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_listDescription
{
	font-style: italic;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docDetails
{
	color: #969696;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docExtension
{
	font-style: italic;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleDocuments ul li .edn_docFileSize
{
	color: #3B3B3B;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleLinks
{
	border-width: 1px;
	border-style: solid;
	border-color: #E6E6E6;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleLinks > h2
{
	font-family: "BenchNine";
	color: #25282A;
	font-size: 19px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleLinks ul li a
{
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article .edn_articleLinks ul li .edn_listDescription
{
	font-style: italic;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_cf_all_fields_container
{
	background-color: #EBEBEB;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_cf_all_fields_container > table tr td
{
	color: #25282a;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #fcfcfc;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #f4f4f4;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	font-size: 12px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .in_article_image
{
	background-color: #E6E6E6;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title
{
	font-family: "BenchNine";
	color: #027dd3;
	font-size: 19px;
	line-height: 1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272D;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description
{
	color: #3B3B3B;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_intro
{
	background-color: rgba(0, 0, 0, .52);
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date strong
{
	background-color: #012e4e;
	text-shadow: -1px -1px 1px #292929;
	color: #ffffff;
	font-size: 28px;
	line-height: 26px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date em
{
	background-color: #0d5f99;
	text-shadow: -1px -1px 1px #373737;
	color: #ffffff;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date::after
{
	border-top-color: #014677;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent
{
	background-color: rgba(0, 0, 0, .52);
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover
{
	text-decoration: underline;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary
{
	color: #ffffff;
	line-height: 1.5;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleInBox2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent
{
	background-color: rgba(0, 0, 0, .52);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent h2 a:hover,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .EDN_article.edn_smallMultiarticleBox > div .edn_smallMultiarticleBoxContent .EDN_summary,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article .EDN_publish-date
{
	background-color: #027dd3;
	color: #ffffff;
	line-height: 27px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles h2 a
{
	font-size: 22px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_two-articles-row .EDN_two-articles .EDN_article_content
{
	line-height: 1.2;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger
{
	border-color: #e0e0e0;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .2);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a.active,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination span
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .2);
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span
{
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pager a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .article_pagination a:hover
{
	text-decoration: none;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .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_predefined_blue.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after
{
	border-radius: 4px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails
{
	background-color: #b1b1b1;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .other-posty-by a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails .button span
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails
{
	background-color: #b1b1b1;
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails h4
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails .other-posty-by a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .EDN_authorGroupDetails.EDN_groupDetails .button span
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span
{
	color: #3B3B3B;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .content > div,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .actions a:hover
{
	color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment h3
{
	color: #B1B1B1;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit
{
	background-color: #0B507C;
	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, .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_predefined_blue.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit:hover
{
	background-color: #046DB0;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table .month_selection tr td,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #EBEBEB !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-toolbar h2
{
	font-family: "BenchNine";
	color: #027dd3;
	font-style: normal;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table .month_selection td.next_prev_months a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-button.fc-prev-button,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-button.fc-next-button
{
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/calendar/monthSelectArrows/predefined/arrows.png");
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_calendar .advanced .calendar_table tr td.day,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-bg .fc-day
{
	background-color: #ffffff !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span
{
	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;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, .24);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span select option
{
	background-color: #cecece;
	background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Vision/images/calendar/monthQuickSelection/background/predefined/select-bg.png");
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span select,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span select option
{
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.week_days,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-day-header.fc-widget-header,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-week-number.fc-widget-header
{
	background-color: #b1b1b1 !important;
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
	line-height: 32px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.week_days,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed div.fc-row.fc-widget-header
{
	border-bottom-width: 7px;
	border-bottom-style: solid;
	border-bottom-color: #ebebeb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-widget-header th.fc-week-number.fc-widget-header
{
	border-right-color: #ebebeb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-bg .fc-week-number
{
	background-color: #b1b1b1;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-content,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-divider,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-list-heading td,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-list-view,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-popover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-row,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed tbody,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed td,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed th,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed thead
{
	border-color: #EBEBEB;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number
{
	background-color: #fcfcfc;
	font-family: "Arial";
	color: #111111;
	font-size: 14px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.other_month > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.other_month > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top.fc-other-month .fc-day-number
{
	color: #bbbbbb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.today > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.selected > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number:hover
{
	background-color: #027dd3 !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.today > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.today > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top.fc-today .fc-day-number
{
	background-color: #027dd3 !important;
	color: #ffffff !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.selected > a
{
	background-color: #ebebeb !important;
}

.eds_news_Vision.eds_style_predefined_blue.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-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_predefined_blue.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-blue.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_predefined_blue.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-blue.png");
	background-repeat: no-repeat;
	background-position: 100% 0%;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.today > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number:hover
{
	color: #ffffff !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.selected > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table tr td.day.selected.today > a
{
	color: #686868 !important;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #ffffff;
	background-color: #ea1515;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #ffffff;
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #ffffff;
	background-color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #ffffff;
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	background-color: #ffff00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffffff;
	background-color: #ffc0cb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #ffffff;
	background-color: #808080;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ffffff;
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #ffffff;
	background-color: #a52a2a;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #ffffff;
	background-color: #ea1515;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #ffffff;
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #ffffff;
	background-color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #ffffff;
	background-color: #52bd23;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	background-color: #ffff00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffffff;
	background-color: #ffc0cb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #ffffff;
	background-color: #808080;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ffffff;
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #ffffff;
	background-color: #a52a2a;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event
{
	background-color: #f7f7f7;
	border-color: #027dd3;
	font-family: "Arial";
	color: #3c3c3c;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event:hover
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover
{
	border-color: #37cbcb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events
{
	background-color: #f7f7f7;
	border-color: #ff8400;
	font-family: "Arial";
	color: #3c3c3c;
	font-size: 10px;
	line-height: 12px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button
{
	background-color: #f7f7f7;
	border-color: #d1d1d1;
	color: #b1b1b1;
	font-size: 15px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-active
{
	background-color: #ffffff;
	color: #126CB3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-left,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-button.fc-state-default.fc-corner-right
{
	border-radius: 4px;
}

.eds_news_Vision.eds_style_predefined_blue .fc-unthemed .fc-divider.fc-widget-header
{
	background-color: transparent;
}

.eds_news_Vision.eds_style_predefined_blue .fc .fc-list-view .fc-list-heading .fc-widget-header
{
	background-color: transparent;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.has_posts .fc-event-dot
{
	background-color: #126CB3;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #db313c;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #37cbcb;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #8de171;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #e49908;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item td a
{
	color: #3b3b3b;
}

.eds_news_Vision.eds_style_predefined_blue .fc-list-item td a:hover
{
	color: #126CB3;
}

.qtip.edn_calendarbox_Vision.blue
{
	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.blue .qtip-content .wrapper > .article > p.title a
{
	text-decoration: none;
	font-family: "BenchNine";
	color: #027dd3;
	font-size: 16px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper > .article > p.title a:hover
{
	text-decoration: none;
	color: #000000;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper > .article > p.title
{
	text-decoration: none;
	font-family: "BenchNine";
	color: #027dd3;
	font-size: 16px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.blue .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.blue .qtip-content .wrapper .article_list > li > a:hover
{
	text-decoration: none;
	color: #027dd3;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper .article_list > li
{
	text-decoration: none;
	font-family: "Arial";
	color: #000000;
	font-size: 12px;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper .article_list > li > p
{
	font-family: "Arial";
	color: #2f2f2f;
	font-size: 10px;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper > .article > .content
{
	font-family: "Arial";
	color: #333333;
	font-size: 12px;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content div.title
{
	background-color: #b1b1b1;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content div.title span,
.qtip.edn_calendarbox_Vision.blue .qtip-content div.title span a
{
	font-family: "Arial";
	color: #ffffff;
	font-weight: bold;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content div.title span a:hover
{
	text-decoration: none;
	color: #000000;
}

.qtip.edn_calendarbox_Vision.blue .qtip-content .wrapper > .article img
{
	border-width: 1px;
	border-style: solid;
	border-color: #ebebeb;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Vision.blue .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.blue .qtip-content .wrapper > .article > a:hover
{
	background-color: #ffffff;
	text-decoration: none;
	color: #027dd3;
}

.qtip.edn_calendarbox_Vision.blue .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_predefined_blue.eds_subCollection_calendar .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_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-year,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-year:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div > a.edn_archive-month:hover
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.opened div > a.edn_archive-year
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active div > a.edn_archive-year,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li.active div > a.edn_archive-month
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year > span,
.eds_news_Vision.eds_style_predefined_blue.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: #027dd3;
	font-size: 11px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list .EDN_module_box .edn_archive_menu_wrapper li div .edn_archive-year:hover > span,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list > .edn_module_title span
{
	font-family: "BenchNine";
	color: #25282A;
	font-size: 28px;
	line-height: 31px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list.events > .edn_module_title .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_calendar .archive_list.events > .edn_module_title .export:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li a
{
	font-family: "Arial";
	color: #2f2f2f;
	line-height: 15px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li a:hover
{
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_tagCloud .tags a .tag-count
{
	border-width: 1px;
	border-style: solid;
	border-color: #dddfe0;
	background-color: #ffffff;
	color: #027dd3;
	font-size: 11px;
	font-weight: normal;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_tagCloud > .edn_module_title
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #20272d;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_search .search_input,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .search_input input[type="text"]
{
	background-color: #f7f7f7;
	font-family: "Arial";
	color: #8f8f8f;
	font-size: 16px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .search_input input[type="text"]:focus
{
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search
{
	border-width: 3px;
	border-style: solid;
	border-color: #e1e1e1;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .search_input .do_search:hover
{
	background-position: 0px -43px;
}

.eds_news_Vision.eds_style_predefined_blue.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.blue
{
	background-color: #ffffff;
	border-color: #ebebeb;
	box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
}

.EDN_search.theme_Vision.blue ul li span a
{
	color: #494949;
}

.EDN_search.theme_Vision.blue ul li span a:hover
{
	color: #126CB3;
}

.EDN_search.theme_Vision.blue .acSelect
{
	border-color: #e1e1e1;
	background-color: #fcfcfc;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch
{
	background-color: #e6e6e6;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiDropDownList > label,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_MultiselectGroup .ms-parent > label
{
	font-family: "Arial";
	color: #8D8D8D;
	font-size: 12px;
	line-height: 1.8;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.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, .24);
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice
{
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, .24);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled
{
	color: #ABABAB;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label::before,
.eds_news_Vision.eds_style_predefined_blue.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: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	font-family: "Arial";
	color: #027dd3;
	font-size: 12px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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, .7);
}

.eds_news_Vision.eds_style_predefined_blue.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, .24);
	font-family: "Arial";
	color: #ffffff;
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.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, .24);
}

.eds_news_Vision.eds_style_predefined_blue.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, .35);
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 21px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover
{
	background-color: #D5D3D3;
}

.eds_news_Vision.eds_style_predefined_blue.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, .35);
	font-family: "BenchNine";
	color: #ffffff;
	font-size: 21px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover
{
	background-color: #D5D3D3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter
{
	color: #878787;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter
{
	color: #565555;
	background-color: #e4e4e4;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter
{
	color: #565555;
	background-color: #e4e4e4;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter
{
	color: #cecece;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_item
{
	border-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item
{
	border-color: #e4e4e4;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item
{
	border-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search span.ednSbl_item
{
	border-color: #eeeeee;
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover .ednSbl_item
{
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count
{
	color: #363636;
	background-color: #ffffff;
	border-color: #eeeeee;
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_count
{
	border-radius: 0px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_module_box > .edn_module_title .rss:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article_rss_wrapper a:hover
{
	background-position: 0px 2px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount
{
	border-width: 1px;
	border-style: solid;
	border-color: #c6c9cb;
	color: #027dd3;
	font-size: 11px;
	font-weight: bold;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .articlecount:hover
{
	color: #3c3c3c;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_article.EDN_eventsBox,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_article.EDN_eventsBox,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_article.EDN_eventsBox > a::before,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .EDN_article.EDN_eventsBox > a::before,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span
{
	background-color: #005d9e;
	text-transform: uppercase;
	font-family: "Arial";
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
	font-weight: normal;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a
{
	background-color: #015e9d;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxTime
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.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-blue.png");
	background-position: 0px 1px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxLocation
{
	background-position: 0px -49px;
}

.eds_news_Vision.eds_style_predefined_blue.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-blue.png");
	background-position: 0px 1px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTime,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventBox .EDN_eventBoxTime
{
	background-position: 0px -49px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate
{
	font-family: "BenchNine";
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a::before
{
	background-color: ;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover::before,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a::before
{
	background-color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishDay,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishDay
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth
{
	text-transform: uppercase;
	color: #027dd3;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishMonth,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishMonth
{
	color: #005d9e;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventsBoxDate .EDN_eventPublishYear,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .EDN_article > a .EDN_eventsBoxDate .EDN_eventPublishYear
{
	color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a
{
	border-color: #ffffff;
	background-color: #a7abae;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover
{
	border-color: #005d9e;
	background-color: #a7abae;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active
{
	border-color: #005d9e;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper .trigger,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .trigger
{
	border-color: #e0e0e0;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper .trigger:hover,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .trigger:hover
{
	background-color: #fbfbfb;
	box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .2);
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer span
{
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBox .edNews_loadMoreTriggerWrapper .trigger > span.loadingOverlay,
.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .edNews_loadMoreTriggerWrapper .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_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision a.edsgg_galleryBackLink
{
	border-color: #e0e0e0;
	background-color: #fcfbf9;
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision a.edsgg_galleryBackLink:hover
{
	background-color: #fbfbfb;
	text-decoration: none;
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #e0e0e0;
	background-color: #ffffff;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover
{
	background-color: #fbfbfb;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText span
{
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText span
{
	color: #bababa;
}

.eds_news_Vision.eds_style_predefined_blue.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_predefined_blue.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_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	font-size: 15px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer > a:hover .edsgg_title
{
	text-decoration: none;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 11px;
}

.eds_news_Vision.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Vision .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #d6d6d6;
	background-color: #ffffff;
}



@charset "UTF-8";
/* Anova Container Set styles */

/* NoTitle
-------------------------------------*/
.DNNContainer_noTitle {
	margin-bottom:25px;	
 }

/* Title_h1 
-------------------------------------*/
.DNNContainer_Title_h1 h1 .TitleH1 {
	display: block;
	color:#000;
	margin-left:10px;
}

.ContentBkg{
	background:#fff;
	padding:10px 10px 10px 10px;
	border-radius:5px;
}

.DNNContainer_Title_h1 {
	margin-bottom: 10px;
}

.DNNContainer_Title_h1 h1 {
	
}

/* Title_lightGray 
-------------------------------------*/
.DNNContainer_Title_h5 h5 .TitleH5 {
	display: block;
	margin-bottom: 15px;
}

.DNNContainer_Title_h5 {
	padding: 25px;
	background-color: #e8e4e3;
}

/* Title_white 
-------------------------------------*/
.DNNContainer_Title_h6 h6 .TitleH6 {
	display: block;
} 

.DNNContainer_Title_h6 {
	padding: 25px;
	background-color: #fff;
	/* CSS3 */
	-moz-box-shadow: 0 0 7px #bbb;
	-webkit-box-shadow: 0 0 7px #bbb;
	box-shadow: 0 0 7px #bbb;
}




	.ToggledContentCont{}
	h2.ToggledContentContTitle{font-family:Helvetica, Arial, sans-serif;font-size:24px;margin:0;padding:10px 15px;line-height:1;
	background: #ececec; /* Old browsers */
	background: -moz-linear-gradient(top, #d9d9d9 0%, #c2c2c2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d9d9d9), color-stop(100%,#c2c2c2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #d9d9d9 0%,#c2c2c2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #d9d9d9 0%,#c2c2c2 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #d9d9d9 0%,#c2c2c2 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#c2c2c2',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #d9d9d9 0%,#c2c2c2 100%); /* W3C */
	-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;
	-webkit-box-shadow: 0px 1px 0px 1px #a8a8a8;
	-moz-box-shadow: 0px 1px 0px 1px #a8a8a8;
	box-shadow: 0px 1px 0px 1px #a8a8a8;}
		h2.ToggledContentContTitle a{text-decoration:none;display:block;}
			h2.ToggledContentContTitle > a{background:url("/Portals/_default/Containers/DarkKnightMobile/images/minus-icn.png") no-repeat right;}
			h2.ToggledContentContTitle > a.collapsed{background:url("/Portals/_default/Containers/DarkKnightMobile/images/plus-icn.png") no-repeat right;}
		h2.ToggledContentContTitle .Head{font-family:Helvetica, Arial, sans-serif;font-size:24px;margin:0;padding:0;line-height:1;color:#4c4c4c;text-shadow:1px 1px 0 #fff;}
	.ToggledContentContBody{clear:both;padding:10px;}

#content {
    margin: 0 !important;
    background: url("/Portals/0/portal.css") !important;
    overflow: visible !important;
}





.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}

@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type=text] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  box-sizing: border-box;
  font-family: Arial;
  color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent > h3 > span,
.eds_modalWrapper .eds_modalContent > h3 > label {
  color: inherit;
  font: inherit;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type=text]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type=text]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type=text]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type=text].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button],
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 48px !important;
  text-shadow: none !important;
  padding: 0 30px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-transform: none !important;
  margin: 0 !important;
  height: auto !important;
  transition: all 100ms linear !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3 !important;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7 !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px !important;
  background: none #e9e9ed !important;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7 !important;
}
.eds_modalWrapper .eds_modalContent input[type=radio] + label,
.eds_modalWrapper .eds_modalContent input[type=checkbox] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > span {
  width: auto;
  white-space: normal;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  line-height: 1.3;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > input,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  vertical-align: top;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "\f00d";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .edNews_tooltipContent {
  border-radius: 5px;
  border: 1px solid #B8D5E0;
  background: #0A445B;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  max-width: 350px;
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  top: auto;
  bottom: 100%;
  z-index: 999;
}
.eds_modalWrapper .edNews_tooltip {
  position: relative;
}
.eds_modalWrapper .edNews_tooltip::after {
  position: absolute;
  top: 0;
  left: auto;
  right: -6px;
  display: block;
  background: none;
  content: "\f059";
  font: 16px/1 "FontAwesome";
  text-align: center;
  padding: 0;
  color: #555;
  transition: color ease-in-out 0.4s;
}
.eds_modalWrapper .edNews_tooltip:hover .edNews_tooltipContent {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper .eds_labelAndInput:first-child .edNews_tooltipContent {
  top: 100%;
  bottom: auto;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages::before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success::before {
  content: "\f058";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "\f05a";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "\f071";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "\f06a";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type=radio] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before, .eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3::before {
  content: "\f0e0";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "\f022";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "\f085";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper.eds_width70 .eds_modalContent {
  width: 70%;
  max-width: 70%;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.eds_modalWrapper .styleDisplayNone {
  display: none !important;
}
.eds_modalWrapper .loading {
  position: relative;
}
.eds_modalWrapper .loading::before, .eds_modalWrapper .loading::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 999;
}
.eds_modalWrapper .loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.eds_modalWrapper .loading::after {
  content: "\f021";
  font: 900 3rem/1 "FontAwesome";
  color: #189fd3;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -1rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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