﻿@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 - Morteza Kermani
	
	== 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: Tahoma, 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 {
    direction:rtl;/*dnnsoftware.ir*/
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Tahoma, 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: 24px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}

/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 19px 0 20px;
    border-right: 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-right: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-right: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 980px;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-right: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-right: 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-right: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-right: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, right top, right 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: right;
        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, right top, right 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, right top, right 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: right;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: left;
    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: right;
    margin-bottom: 0;
}

.dnnPagination {
    float: left;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: right;
        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-right: 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: Tahoma, "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-right: 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-right: 0;
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: right;
        margin-left: 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 0px 0px 3px;
            border-radius: 3px 0px 0px 3px;
        }

        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-right: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-left: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 0 0 3px;
        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;
    right: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    right: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    left: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: right;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: right;
    }

/* 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-right: 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: right;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 5px 0 0;
    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;
    left: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat right 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: right;
    position: relative;
    width: 32.075%;
    padding-left: 20px;
    margin-left: 18px;
    overflow: visible;
    text-align: left;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: left;
}

.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-right: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: right;
}

.dnnFormHelpContent span {
    display: block;
    word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    right: 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: "";
    right: 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: "";
    right: 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;
    right: 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%;
    left: 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;
        right: 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 8px 0 25px;
    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;
    left: 0;
    width: 25px;
    background-color: transparent;
    border-right: 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 5px 0 0;
    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: right;
    padding: 2px 6px 2px 6px;
    margin-left: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: Tahoma, 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: right;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: left;
        position: relative;
        margin: 0 5px 5px 0;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 10px 0 15px;
            margin-left: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: left center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: left center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            left: 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 8px 6px 12px;
    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-left: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-left: 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 4px 0 5px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: right;
    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: right;
}

    .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;
    right: 0;
    width: 200px;
    margin-right: 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-right: 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: right;
        border-right: 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-right: 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: right;
    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: left;
    }

/* 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: right;
    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: right;
    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 0 0 10px;
        text-align: right;
        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: right;
}

    .dnnActions li {
        float: right;
        margin-left: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: right;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: right;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: right;
    padding-right: 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;
    right: 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 .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;
        left: -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: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 1px 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
	        border: none;
	        outline: none;
            border-top-left-radius: 8px;
            border-bottom-left-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: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 0;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-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;
    left: -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 0em 0em 1em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: right;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0em 0.5em 0.4em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: left;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
    cursor:sw-resize;/*dnnsoftware.ir*/
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}

/*-------------------------------------*/
/* 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: right;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-left: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: right;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: right;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: left;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: left;
    }

    .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.rtl.png") repeat-x;/*dnnsoftware.ir*/
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: right;
            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: right;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 20px 0 0;
    background: transparent url("/images/InstallWizardBG.rtl.png") repeat-x;/*dnnsoftware.ir*/
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-right: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 0 0 10px;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 0 0 20px;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.rtl.png") no-repeat;/*dnnsoftware.ir*/
    background-position: 100% -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-left: 1px solid #c9c9c9;
        text-align: right;
        padding-right: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-right: 10px;
        text-align: right;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-left: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 0 5px 5px;
        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-left: 35px;
        float:right;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: right;
    }

    .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-left: 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: right;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl input[type=text] {
        direction:ltr;/*dnnsoftware.ir*/
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 0 0 10px;
        float: right;
    }

    .urlControl .urlControlLinkType {
        float: right;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: right;
            width: auto;
            margin-left: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-left: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: right;
}

.dnnFilePicker {
    display: block;
    float: right;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-left: 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: right;
        width: 40px;
        margin-top: 8px;
        padding-right: 5px;
        text-align: right;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-left: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 0 0 10px;
        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;
    left: 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 0 0 4px;
    width: auto !important;
    display: block !important;
    float: right !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: right;
    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: right;
        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;
            right: 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-left: 10px;
    float: right;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-left: 15px;
    float: right;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: right;
    margin-left: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-left: 10px;
    float: right;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-left: 15px;
    float: right;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: right;
    margin-left: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-left: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-left: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-right: 3px;
        background: url("/images/down-icn.png") no-repeat left 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 left 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat left 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 left 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-right: 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;
    left: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: right;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 3px 0 0;
}

.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;
    right: 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: left;
}

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 30px 0 0;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: right;
}

.right {
    float: left;
}

.dnnLeft {
    float: right;
}

.dnnRight {
    float: left;
}

.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: right;
}

.DNNAlignright {
    text-align: left;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
.DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	right: auto;
	left: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:right;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-right: 1px solid #1f1f1f;
	border-left: 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:right;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:right;
}
.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-right: 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: pointer;
    float: right;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: right;
}

.console.profile .console-none h3 {
    padding: 10px 40px 10px 8px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/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: right;
    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 > label#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;
	left: 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: right;
	margin: 0 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: right;
	margin: 10px 5px 0 0;
}

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 8px 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 8px 0 0;
}
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: right;
    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 12px 0 5px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    left: 0;
    width: auto;
    border-radius: 0;
    text-align: left;
    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: right;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: left;
}

.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-left: 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;
    text-align:left; /*dnnsoftware.ir*/
}

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; /*dnnsoftware.ir*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: 22px; /*dnnsoftware.ir*/
    float:left; /*dnnsoftware.ir*/
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/


/* ===========   dnnsoftware.ir   =========== */

.RadCalendar_Default a.rcPrev {
	background-position: -70px center !important;
}

.RadCalendar_Default a.rcNext {
	background-position: -15px center !important;
}

.jspDrag {
    right: -3px;
}
/*this is a class to style the design table*/

/* Edit View */
.LinksDesignTable
{
}
.MessageSuccees
{
    color: Green;
    font-weight: bold;
}
.MessageFailure
{
    color: Red;
    font-weight: bold;
}

/* Module View */

.link_module
{
}

.linklist
{
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: -1;
}

.linkitem
{
    list-style: none;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
#pp_position
{
    position: relative;
}
ul.linklist.Horizontal
{
}

li.linkitem.Horizontal
{
    display: inline-block;
    line-height: 2;
    float: left;
    margin: 0 15px 0 0;
}

.item_desc
{
    line-height: 1.3;
    margin: 0 0 0 20px;
    white-space: normal;
}

/*popup*/

.popup
{
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
    z-index: 999;
}
#ppwrap
{
    width: 202px;
    background: url("/DesktopModules/Links/img/top.gif") no-repeat top;
    padding: 17px 0 0 0;
}
#ppbottom
{
    width: 202px;
    background: url("/DesktopModules/Links/img/bottom.gif") no-repeat;
    height: 5px;
}
#ppbody
{
    width: 182px;
    padding: 10px;
    min-height: 30px;
    background: url("/DesktopModules/Links/img/body.gif") repeat-y #F8F8F8;
    color: #666;
    font-size: 11px;
    font-family: Arial;
}
#ppbody span
{
    white-space: pre-line;
}

/*friend panel*/
.searchInputContainer {
    display: inline-block !important;
    margin: 0 0 0 -3px !important;
    position: relative !important;
}
    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block !important;
        position: absolute !important;
        left: 10px !important;
        width: 16px !important;
        height: 16px !important;
        background: none !important;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat !important;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    left: 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 !important;
}
    ul.searchSkinObjectPreview > li {
        padding: 6px 22px 6px 12px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: right;
            margin-left: 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 !important;
            position: static !important;
            background: none !important;
            z-index: inherit !important;
            width: auto !important;
            height: auto !important;
            text-indent: inherit !important;
            float: none !important;
        }
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://v3.bootcss.com/customize/?id=0fde141525f0cab20821)
 * Config saved to config.json and https://gist.github.com/0fde141525f0cab20821
 *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url("/Portals/_default/Skins/ArzeSara.com/bootstrap/fonts/glyphicons-halflings-regular.eot");src:url("/Portals/_default/Skins/ArzeSara.com/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/Skins/ArzeSara.com/bootstrap/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/Portals/_default/Skins/ArzeSara.com/bootstrap/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/Portals/_default/Skins/ArzeSara.com/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-right:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-left:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-right:before{content:"\e057"}.glyphicon-indent-left:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-right:before{content:"\e079"}.glyphicon-chevron-left:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-right:before{content:"\e091"}.glyphicon-arrow-left:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-left:before{content:"\e127"}.glyphicon-hand-right:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-left:before{content:"\e131"}.glyphicon-circle-arrow-right:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;width:100% \9;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;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}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-right{text-align:right}.text-left{text-align:left}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none;margin-right:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-right:0}@media (min-width:768px){.dl-horizontal dt{float:right;width:160px;clear:right;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-right:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-right:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-left{padding-left:15px;padding-right:0;border-left:5px solid #eee;border-right:0;text-align:left}.blockquote-reverse footer:before,blockquote.pull-left footer:before,.blockquote-reverse small:before,blockquote.pull-left small:before,.blockquote-reverse .small:before,blockquote.pull-left .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-left footer:after,.blockquote-reverse small:after,blockquote.pull-left small:after,.blockquote-reverse .small:after,blockquote.pull-left .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}.row{margin-right:-15px;margin-left:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:right}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{left:100%}.col-xs-pull-11{left:91.66666667%}.col-xs-pull-10{left:83.33333333%}.col-xs-pull-9{left:75%}.col-xs-pull-8{left:66.66666667%}.col-xs-pull-7{left:58.33333333%}.col-xs-pull-6{left:50%}.col-xs-pull-5{left:41.66666667%}.col-xs-pull-4{left:33.33333333%}.col-xs-pull-3{left:25%}.col-xs-pull-2{left:16.66666667%}.col-xs-pull-1{left:8.33333333%}.col-xs-pull-0{left:auto}.col-xs-push-12{right:100%}.col-xs-push-11{right:91.66666667%}.col-xs-push-10{right:83.33333333%}.col-xs-push-9{right:75%}.col-xs-push-8{right:66.66666667%}.col-xs-push-7{right:58.33333333%}.col-xs-push-6{right:50%}.col-xs-push-5{right:41.66666667%}.col-xs-push-4{right:33.33333333%}.col-xs-push-3{right:25%}.col-xs-push-2{right:16.66666667%}.col-xs-push-1{right:8.33333333%}.col-xs-push-0{right:auto}.col-xs-offset-12{margin-right:100%}.col-xs-offset-11{margin-right:91.66666667%}.col-xs-offset-10{margin-right:83.33333333%}.col-xs-offset-9{margin-right:75%}.col-xs-offset-8{margin-right:66.66666667%}.col-xs-offset-7{margin-right:58.33333333%}.col-xs-offset-6{margin-right:50%}.col-xs-offset-5{margin-right:41.66666667%}.col-xs-offset-4{margin-right:33.33333333%}.col-xs-offset-3{margin-right:25%}.col-xs-offset-2{margin-right:16.66666667%}.col-xs-offset-1{margin-right:8.33333333%}.col-xs-offset-0{margin-right:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:right}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{left:100%}.col-sm-pull-11{left:91.66666667%}.col-sm-pull-10{left:83.33333333%}.col-sm-pull-9{left:75%}.col-sm-pull-8{left:66.66666667%}.col-sm-pull-7{left:58.33333333%}.col-sm-pull-6{left:50%}.col-sm-pull-5{left:41.66666667%}.col-sm-pull-4{left:33.33333333%}.col-sm-pull-3{left:25%}.col-sm-pull-2{left:16.66666667%}.col-sm-pull-1{left:8.33333333%}.col-sm-pull-0{left:auto}.col-sm-push-12{right:100%}.col-sm-push-11{right:91.66666667%}.col-sm-push-10{right:83.33333333%}.col-sm-push-9{right:75%}.col-sm-push-8{right:66.66666667%}.col-sm-push-7{right:58.33333333%}.col-sm-push-6{right:50%}.col-sm-push-5{right:41.66666667%}.col-sm-push-4{right:33.33333333%}.col-sm-push-3{right:25%}.col-sm-push-2{right:16.66666667%}.col-sm-push-1{right:8.33333333%}.col-sm-push-0{right:auto}.col-sm-offset-12{margin-right:100%}.col-sm-offset-11{margin-right:91.66666667%}.col-sm-offset-10{margin-right:83.33333333%}.col-sm-offset-9{margin-right:75%}.col-sm-offset-8{margin-right:66.66666667%}.col-sm-offset-7{margin-right:58.33333333%}.col-sm-offset-6{margin-right:50%}.col-sm-offset-5{margin-right:41.66666667%}.col-sm-offset-4{margin-right:33.33333333%}.col-sm-offset-3{margin-right:25%}.col-sm-offset-2{margin-right:16.66666667%}.col-sm-offset-1{margin-right:8.33333333%}.col-sm-offset-0{margin-right:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:right}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{left:100%}.col-md-pull-11{left:91.66666667%}.col-md-pull-10{left:83.33333333%}.col-md-pull-9{left:75%}.col-md-pull-8{left:66.66666667%}.col-md-pull-7{left:58.33333333%}.col-md-pull-6{left:50%}.col-md-pull-5{left:41.66666667%}.col-md-pull-4{left:33.33333333%}.col-md-pull-3{left:25%}.col-md-pull-2{left:16.66666667%}.col-md-pull-1{left:8.33333333%}.col-md-pull-0{left:auto}.col-md-push-12{right:100%}.col-md-push-11{right:91.66666667%}.col-md-push-10{right:83.33333333%}.col-md-push-9{right:75%}.col-md-push-8{right:66.66666667%}.col-md-push-7{right:58.33333333%}.col-md-push-6{right:50%}.col-md-push-5{right:41.66666667%}.col-md-push-4{right:33.33333333%}.col-md-push-3{right:25%}.col-md-push-2{right:16.66666667%}.col-md-push-1{right:8.33333333%}.col-md-push-0{right:auto}.col-md-offset-12{margin-right:100%}.col-md-offset-11{margin-right:91.66666667%}.col-md-offset-10{margin-right:83.33333333%}.col-md-offset-9{margin-right:75%}.col-md-offset-8{margin-right:66.66666667%}.col-md-offset-7{margin-right:58.33333333%}.col-md-offset-6{margin-right:50%}.col-md-offset-5{margin-right:41.66666667%}.col-md-offset-4{margin-right:33.33333333%}.col-md-offset-3{margin-right:25%}.col-md-offset-2{margin-right:16.66666667%}.col-md-offset-1{margin-right:8.33333333%}.col-md-offset-0{margin-right:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:right}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{left:100%}.col-lg-pull-11{left:91.66666667%}.col-lg-pull-10{left:83.33333333%}.col-lg-pull-9{left:75%}.col-lg-pull-8{left:66.66666667%}.col-lg-pull-7{left:58.33333333%}.col-lg-pull-6{left:50%}.col-lg-pull-5{left:41.66666667%}.col-lg-pull-4{left:33.33333333%}.col-lg-pull-3{left:25%}.col-lg-pull-2{left:16.66666667%}.col-lg-pull-1{left:8.33333333%}.col-lg-pull-0{left:auto}.col-lg-push-12{right:100%}.col-lg-push-11{right:91.66666667%}.col-lg-push-10{right:83.33333333%}.col-lg-push-9{right:75%}.col-lg-push-8{right:66.66666667%}.col-lg-push-7{right:58.33333333%}.col-lg-push-6{right:50%}.col-lg-push-5{right:41.66666667%}.col-lg-push-4{right:33.33333333%}.col-lg-push-3{right:25%}.col-lg-push-2{right:16.66666667%}.col-lg-push-1{right:8.33333333%}.col-lg-push-0{right:auto}.col-lg-offset-12{margin-right:100%}.col-lg-offset-11{margin-right:91.66666667%}.col-lg-offset-10{margin-right:83.33333333%}.col-lg-offset-9{margin-right:75%}.col-lg-offset-8{margin-right:66.66666667%}.col-lg-offset-7{margin-right:58.33333333%}.col-lg-offset-6{margin-right:50%}.col-lg-offset-5{margin-right:41.66666667%}.col-lg-offset-4{margin-right:33.33333333%}.col-lg-offset-3{margin-right:25%}.col-lg-offset-2{margin-right:16.66666667%}.col-lg-offset-1{margin-right:8.33333333%}.col-lg-offset-0{margin-right:0}}table{background-color:transparent}th{text-align:right}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-right:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-left:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px;line-height:1.42857143 \0}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-right:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-right:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-right:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-right:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-left:42.5px}.form-control-feedback{position:absolute;top:25px;left:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-right:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-right:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:left;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{top:0;left:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-right:2px;vertical-align:middle;border-top:4px solid;border-left:4px solid transparent;border-right:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;right:0;z-index:1000;display:none;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:right;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-left{left:0;right:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;right:0;left:0;bottom:0;top:0;z-index:990}.pull-left>.dropdown-menu{left:0;right:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-left .dropdown-menu{right:auto;left:0}.navbar-left .dropdown-menu-right{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:right}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-right:-1px}.btn-toolbar{margin-right:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:right}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-right:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-right:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group{float:right}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-right:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-right:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-right-radius:4px;border-top-left-radius:0;border-top-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{right:auto}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{position:absolute;z-index:-1;opacity:0;filter:alpha(opacity=0)}.nav{margin-bottom:0;padding-right:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:right;margin-bottom:-1px}.nav-tabs>li>a{margin-left:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;right:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-left:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:right}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-right:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-right:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;right:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-left:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:right}}.navbar-collapse{overflow-x:visible;padding-left:15px;padding-right:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-left:0;margin-right:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;left:0;right:0;z-index:1030;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:right;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-right:-15px}}.navbar-toggle{position:relative;float:left;margin-left:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:right;margin:0}.navbar-nav>li{float:right}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-left:last-child{margin-left:-15px}}@media (min-width:768px){.navbar-right{float:right !important}.navbar-left{float:left !important}}.navbar-form{margin-right:-15px;margin-left:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-right:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-right:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-left:last-child{margin-left:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-left-radius:0;border-bottom-right-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:right;margin-right:15px;margin-left:15px}.navbar-text.navbar-left:last-child{margin-left:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.pagination{display:inline-block;padding-right:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:right;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-right:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-right:0;border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pager{padding-right:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:left}.pager .previous>a,.pager .previous>span{float:right}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-right:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-left:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;left:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:right;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{color:#777;min-width:30px;background-color:transparent;background-image:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-right{margin-left:10px}.media>.pull-left{margin-right:10px}.media-list{padding-right:0;list-style:none}.list-group{margin-bottom:20px;padding-right:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.list-group-item>.badge{float:left}.list-group-item>.badge+.badge{margin-left:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-left-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-left-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-right:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-left:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;right:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:left;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;left:0;bottom:0;right:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate3d(0, -25%, 0);transform:translate3d(0, -25%, 0);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:left;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-right:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-right:-1px}.modal-footer .btn-block+.btn-block{margin-right:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.left{margin-right:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.right{margin-right:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;right:50%;margin-right:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 5px 5px 0;border-left-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 0 5px 5px;border-right-color:#000}.tooltip.bottom .tooltip-arrow{top:0;right:50%;margin-right:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;right:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:right;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.left{margin-right:10px}.popover.bottom{margin-top:10px}.popover.right{margin-right:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{right:50%;margin-right:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-right:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;bottom:-10px;border-right-width:0;border-left-color:#fff}.popover.bottom>.arrow{right:50%;margin-right:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-right:-10px;border-top-width:0;border-bottom-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;border-left-width:0;border-right-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out right;-o-transition:.6s ease-in-out right;transition:.6s ease-in-out right}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{right:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{right:100%}.carousel-inner>.prev{right:-100%}.carousel-inner>.next.right,.carousel-inner>.prev.left{right:0}.carousel-inner>.active.right{right:-100%}.carousel-inner>.active.left{right:100%}.carousel-control{position:absolute;top:0;right:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.right{background-image:-webkit-linear-gradient(right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.left{right:auto;left:0;background-image:-webkit-linear-gradient(right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right,.carousel-control .glyphicon-chevron-left{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;right:50%;z-index:15;width:60%;margin-right:-30%;padding-right:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;right:15%;left:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-right,.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev{margin-right:-15px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-next{margin-left:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-left{float:right !important}.pull-right{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}
/* * Bootstrap Documentation * Special styles for presenting Bootstrap's documentation and code examples. * * Table of contents: * * Scaffolding * Main navigation * Footer * Social buttons * Homepage * Page headers * Old docs callout * Ads * Side navigation * Docs sections * Callouts * Grid styles * Examples * Code snippets (highlight) * Responsive tests * Glyphicons * Customizer * Miscellaneous */
/* * Scaffolding * * Update the basics of our documents to prep for docs content. */
body{ }
/* Keep code small in tables on account of limited space */
.table code{font-size: 13px; font-weight: normal;}
/* Outline button for use within the docs */
.btn-outline{color: #563d7c; background-color: #fff; border-color: #e5e5e5;}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active{color: #fff; background-color: #563d7c; border-color: #563d7c;}
/* Inverted outline button (white on dark) */
.btn-outline-inverse{color: #fff; background-color: transparent; border-color: #cdbfe3;}
.btn-outline-inverse:hover,
.btn-outline-inverse:focus,
.btn-outline-inverse:active{color: #563d7c; text-shadow: none; background-color: #fff; border-color: #fff;}
/* * Main navigation * * Turn the `.navbar` at the top of the docs purple. */
.bs-docs-nav{text-shadow: 0 -1px 0 rgba(0,0,0,.15); background-color: #563d7c; border-color: #463265; box-shadow: 0 1px 0 rgba(255,255,255,.1);}
.bs-docs-nav .navbar-collapse{border-color: #463265;}
.bs-docs-nav .navbar-brand{color: #fff;}
.bs-docs-nav .navbar-nav > li > a{color: #cdbfe3;}
.bs-docs-nav .navbar-nav > li > a:hover{color: #fff;}
.bs-docs-nav .navbar-nav > .active > a,
.bs-docs-nav .navbar-nav > .active > a:hover{color: #fff; background-color: #463265;}
.bs-docs-nav .navbar-toggle{border-color: #563d7c;}
.bs-docs-nav .navbar-toggle:hover{background-color: #463265; border-color: #463265;}
/* * Footer * * Separated section of content at the bottom of all pages, save the homepage. */
.bs-footer{padding-top: 40px; padding-bottom: 30px; margin-top: 100px; color: #777; text-align: center; border-top: 1px solid #e5e5e5;}
.footer-links{margin: 10px 0; padding-right: 0;}
.footer-links li{display: inline; padding: 0 2px;}
.footer-links li:first-child{padding-right: 0;}
@media (min-width: 768px){.bs-footer{text-align: right;} .bs-footer p{margin-bottom: 0;}}
/* * Social buttons * * Twitter and GitHub social action buttons (for homepage and footer). */
.bs-social{text-align: center;}
.bs-social-buttons{display: inline-block; margin-bottom: 20px; padding-right: 0; list-style: none;}
.bs-social-buttons li{display: inline-block; line-height: 1; padding: 5px 8px;}
.bs-social-buttons .twitter-follow-button{width: 225px !important;}
.bs-social-buttons .twitter-share-button{width: 98px !important;}
/* Style the GitHub buttons via CSS instead of inline attributes */
.github-btn{border: 0; overflow: hidden;}
@media screen and (min-width: 768px){.bs-social{text-align: right;}}
/* * Topography, yo! * * Apply the map background via base64 and relevant colors where we need 'em. */
.bs-docs-home,
.bs-header{color: #cdbfe3; background-color: #563d7c;}
/* * Homepage * * Tweaks to the custom homepage and the masthead (main jumbotron). */ /* Masthead (headings and download button) */ .bs-masthead{position: relative; padding: 30px 15px; text-align: center; text-shadow: 0 1px 0 rgba(0,0,0,.15);}
.bs-masthead h1{font-size: 50px; line-height: 1; color: #fff;}
.bs-masthead .btn-outline-inverse{margin-top: 20px; margin-bottom: 20px; padding: 18px 24px; font-size: 24px;}
/* Links to project-level content like the repo, Expo, etc */
.bs-masthead-links{margin-bottom: 20px; padding-right: 0; list-style: none; text-align: center;}
.bs-masthead-links li{display: inline-block; padding: 4px 8px;}
.bs-masthead-links a{color: #fff;}
@media screen and (min-width: 768px){.bs-masthead{text-align: right; padding-top: 140px; padding-bottom: 140px;} .bs-masthead h1{font-size: 100px;} .bs-masthead .lead{margin-left: 25%; font-size: 30px;} .bs-masthead-links{padding: 0; text-align: right;}}
/* * Page headers * * Jumbotron-esque headers at the top of every page that's not the homepage. */
/* Page headers */
.bs-header{padding: 30px 15px 40px; /* side padding builds on .container 15px, so 30px */ font-size: 16px; text-align: center; text-shadow: 0 1px 0 rgba(0,0,0,.15);}
.bs-header h1{color: #fff;}
.bs-header p{font-weight: 300; line-height: 1.5;}
.bs-header .container{position: relative;}
@media screen and (min-width: 768px){.bs-header{font-size: 21px; text-align: right;} .bs-header h1{font-size: 60px; line-height: 1;}}
@media screen and (min-width: 992px){.bs-header h1, .bs-header p{margin-left: 380px;}}
/* * Carbon ads * * Single display ad that shows on all pages (except homepage) in page headers. * The hella `!important` is required for any pre-set property. */
.carbonad{width: auto !important; margin: 50px -30px -40px !important; padding: 20px !important; overflow: hidden; /* clearfix */ height: auto !important; font-size: 13px !important; line-height: 16px !important; text-align: right; background: #463265 !important; border: 0 !important; box-shadow: inset 0 3px 5px rgba(0,0,0,.075);}
.carbonad-img{margin: 0 !important;}
.carbonad-text,
.carbonad-tag{float: none !important; display: block !important; width: auto !important; height: auto !important; margin-right: 145px !important; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;}
.carbonad-text{padding-top: 0 !important;}
.carbonad-tag{color: #cdbfe3 !important; text-align: right !important;}
.carbonad-text a,
.carbonad-tag a{color: #fff !important;}
.carbonad #azcarbon > img{display: none; /* hide what I assume are tracking images */}
@media screen and (min-width: 768px){.carbonad{margin: 0 !important; border-radius: 4px; box-shadow: inset 0 3px 5px rgba(0,0,0,.075), 0 1px 0 rgba(255,255,255,.1);}}
@media screen and (min-width: 992px){.carbonad{position: absolute; top: 20px; left: 0; padding: 15px !important; width: 330px !important; min-height: 132px;}}
/* Homepage variations */
.bs-docs-home .carbonad{margin: 0 -15px 40px !important;}
@media screen and (min-width: 480px){.bs-docs-home .carbonad{width: 330px !important; margin: 0 auto 40px !important; border-radius: 4px;}}
@media screen and (min-width: 768px){.bs-docs-home .carbonad{float: right; width: 330px !important; margin: 0 0 30px !important;} .bs-docs-home .bs-social, .bs-docs-home .bs-masthead-links{margin-right: 350px;}}
@media screen and (min-width: 992px){.bs-docs-home .carbonad{position: static;}}
@media screen and (min-width: 1170px){.bs-docs-home .carbonad{margin-top: -25px !important;}}
/* * Callout for 2.3.2 docs * * Only appears below page headers (not on the homepage). The homepage gets its * own link with the masthead links. */
.bs-old-docs{padding: 15px 20px; color: #777; background-color: #fafafa; border-top: 1px solid #fff; border-bottom: 1px solid #e5e5e5;}
.bs-old-docs strong{color: #555;}
/* * Side navigation * * Scrollspy and affixed enhanced navigation to highlight sections and secondary * sections of docs content. */
/* By default it's not affixed in mobile views, so undo that */
.bs-sidebar.affix{position: static;}
/* First level of nav */
.bs-sidenav{margin-top: 30px; margin-bottom: 30px; padding-top: 10px; padding-bottom: 10px; text-shadow: 0 1px 0 #fff; background-color: #f7f5fa; border-radius: 5px;}
/* All levels of nav */
.bs-sidebar .nav > li > a{display: block; color: #716b7a; padding: 5px 20px;}
.bs-sidebar .nav > li > a:hover,
.bs-sidebar .nav > li > a:focus{text-decoration: none; background-color: #e5e3e9; border-left: 1px solid #dbd8e0;}
.bs-sidebar .nav > .active > a,
.bs-sidebar .nav > .active:hover > a,
.bs-sidebar .nav > .active:focus > a{font-weight: bold; color: #563d7c; background-color: transparent; border-left: 1px solid #563d7c;}
/* Nav: second level (shown on .active) */
.bs-sidebar .nav .nav{display: none; /* Hide by default, but at >768px, show it */ margin-bottom: 8px;}
.bs-sidebar .nav .nav > li > a{padding-top: 3px; padding-bottom: 3px; padding-right: 30px; font-size: 90%;}
/* Show and affix the side nav when space allows it */
@media screen and (min-width: 992px){.bs-sidebar .nav > .active > ul{display: block;} /* Widen the fixed sidebar */ .bs-sidebar.affix, .bs-sidebar.affix-bottom{width: 213px;} .bs-sidebar.affix{position: fixed; /* Undo the static from mobile first approach */ top: 80px;} .bs-sidebar.affix-bottom{position: absolute; /* Undo the static from mobile first approach */} .bs-sidebar.affix-bottom .bs-sidenav, .bs-sidebar.affix .bs-sidenav{margin-top: 0; margin-bottom: 0;}}
@media screen and (min-width: 1200px){/* Widen the fixed sidebar again */ .bs-sidebar.affix-bottom, .bs-sidebar.affix{width: 263px;}}
/* * Docs sections * * Content blocks for each component or feature. */
/* Space things out */
.bs-docs-section + .bs-docs-section{padding-top: 40px;}
/* Janky fix for preventing navbar from overlapping */
h1[id]{padding-top: 80px; margin-top: -45px;}
/* * Callouts * * Not quite alerts, but custom and helpful notes for folks reading the docs. * Requires a base and modifier class. */
/* Common styles for all types */
.bs-callout{margin: 20px 0; padding: 15px 15px 15px 30px; border-right: 5px solid #eee;}
.bs-callout h4{margin-top: 0;}
.bs-callout p:last-child{margin-bottom: 0;}
.bs-callout code,
.bs-callout .highlight{background-color: #fff;}
/* Variations */
.bs-callout-danger{background-color: #fcf2f2; border-color: #dFb5b4;}
.bs-callout-warning{background-color: #fefbed; border-color: #f1e7bc;}
.bs-callout-info{background-color: #f0f7fd; border-color: #d0e3f0;}
/* * Grid examples * * Highlight the grid columns within the docs so folks can see their padding, * alignment, sizing, etc. */
.show-grid{margin-bottom: 15px;}
.show-grid [class^="col-"]{padding-top: 10px; padding-bottom: 10px; background-color: #eee; border: 1px solid #ddd; background-color: rgba(86,61,124,.15); border: 1px solid rgba(86,61,124,.2);}
/* * Examples * * Isolated sections of example content for each component or feature. Usually * followed by a code snippet. */
.bs-example{position: relative; padding: 45px 15px 15px; margin: 0 -15px 15px; background-color: #fafafa; box-shadow: inset 0 3px 6px rgba(0,0,0,.05); border-color: #e5e5e5 #eee #eee; border-style: solid; border-width: 1px 0;}
/* Echo out a label for the example */
.bs-example:after{content: "Example"; position: absolute; top: 15px; right: 15px; font-size: 12px; font-weight: bold; color: #bbb; text-transform: uppercase; letter-spacing: 1px;}
/* Tweak display of the code snippets when following an example */
.bs-example + .highlight{margin: -15px -15px 15px; border-radius: 0; border-width: 0 0 1px;}
/* Make the examples and snippets not full-width */
@media screen and (min-width: 768px){.bs-example{margin-right: 0; margin-left: 0; background-color: #fff; border-width: 1px; border-color: #ddd; border-radius: 4px 4px 0 0; box-shadow: none;} .bs-example + .highlight{margin-top: -16px; margin-right: 0; margin-left: 0; border-width: 1px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px;}}
/* Tweak content of examples for optimum awesome */
.bs-example > p:last-child,
.bs-example > ul:last-child,
.bs-example > ol:last-child,
.bs-example > blockquote:last-child,
.bs-example > .form-control:last-child,
.bs-example > .table:last-child,
.bs-example > .navbar:last-child,
.bs-example > .jumbotron:last-child,
.bs-example > .alert:last-child,
.bs-example > .panel:last-child,
.bs-example > .list-group:last-child,
.bs-example > .well:last-child,
.bs-example > .progress:last-child,
.bs-example > .table-responsive:last-child > .table{margin-bottom: 0;}
.bs-example > p > .close{float: none;}
/* Typography */
.bs-example-type .table td:last-child{color: #999; vertical-align: middle;}
.bs-example-type .table td{padding: 15px 0; border-color: #eee;}
.bs-example-type .table tr:first-child td{border-top: 0;}
.bs-example-type h1,
.bs-example-type h2,
.bs-example-type h3,
.bs-example-type h4,
.bs-example-type h5,
.bs-example-type h6{margin: 0;}
/* Images */
.bs-example > .img-circle,
.bs-example > .img-rounded,
.bs-example > .img-thumbnail{margin: 5px;}
/* Buttons */
.bs-example > .btn,
.bs-example > .btn-group{margin-top: 5px; margin-bottom: 5px;}
.bs-example > .btn-toolbar + .btn-toolbar{margin-top: 10px;}
/* Forms */
.bs-example-control-sizing select,
.bs-example-control-sizing input[type="text"] + input[type="text"]{margin-top: 10px;}
.bs-example-form .input-group{margin-bottom: 10px;}
.bs-example > textarea.form-control{resize: vertical;}
/* List groups */
.bs-example > .list-group{max-width: 400px;}
/* Navbars */
.bs-example .navbar:last-child{margin-bottom: 0;}
.bs-navbar-top-example,
.bs-navbar-bottom-example{z-index: 1; padding: 0; overflow: hidden; /* cut the drop shadows off */}
.bs-navbar-top-example .navbar-header,
.bs-navbar-bottom-example .navbar-header{margin-right: 0;}
.bs-navbar-top-example .navbar-fixed-top,
.bs-navbar-bottom-example .navbar-fixed-bottom{position: relative; margin-right: 0; margin-left: 0;}
.bs-navbar-top-example{padding-bottom: 45px;}
.bs-navbar-top-example:after{top: auto; bottom: 15px;}
.bs-navbar-top-example .navbar-fixed-top{top: -1px;}
.bs-navbar-bottom-example{padding-top: 45px;}
.bs-navbar-bottom-example .navbar-fixed-bottom{bottom: -1px;}
.bs-navbar-bottom-example .navbar{margin-bottom: 0;}
@media (min-width: 768px){.bs-navbar-top-example .navbar-fixed-top, .bs-navbar-bottom-example .navbar-fixed-bottom{position: absolute;} .bs-navbar-top-example{border-radius: 0 0 4px 4px;} .bs-navbar-bottom-example{border-radius: 4px 4px 0 0;}}
/* Pagination */
.bs-example .pagination{margin-top: 10px; margin-bottom: 10px;}
/* Pager */
.bs-example > .pager{margin-top: 0;}
/* Example modals */
.bs-example-modal{background-color: #f5f5f5;}
.bs-example-modal .modal{position: relative; top: auto; left: auto; right: auto; bottom: auto; z-index: 1; display: block;}
.bs-example-modal .modal-dialog{right: auto; margin-right: auto; margin-left: auto;}
/* Example dropdowns */
.bs-example > .dropdown > .dropdown-menu{position: static; display: block; margin-bottom: 5px;}
/* Example tabbable tabs */
.bs-example-tabs .nav-tabs{margin-bottom: 15px;}
/* Tooltips */
.bs-example-tooltips{text-align: center;}
.bs-example-tooltips > .btn{margin-top: 5px; margin-bottom: 5px;}
/* Popovers */
.bs-example-popover{padding-bottom: 24px; background-color: #f9f9f9;}
.bs-example-popover .popover{position: relative; display: block; float: right; width: 260px; margin: 20px;}
/* Scrollspy demo on fixed height div */
.scrollspy-example{position: relative; height: 200px; margin-top: 10px; overflow: auto;}
/* * Code snippets * * Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS. */
.highlight{display: none; /* hidden by default, until >480px */ padding: 9px 14px; margin-bottom: 14px; background-color: #f7f7f9; border: 1px solid #e1e1e8; border-radius: 4px;}
.highlight pre{padding: 0; margin-top: 0; margin-bottom: 0; background-color: transparent; border: 0; white-space: nowrap;}
.highlight pre code{font-size: inherit; color: #333; /* Effectively the base text color */}
.highlight pre .lineno{display: inline-block; width: 22px; padding-left: 5px; margin-left: 10px; text-align: left; color: #bebec5;}
/* Show code snippets when we have the space */
@media screen and (min-width: 481px){.highlight{display: block;}}
/* * Responsive tests * * Generate a set of tests to show the responsive utilities in action. */
/* Responsive (scrollable) doc tables */
.table-responsive .highlight pre{white-space: normal;}
/* Utility classes table */
.bs-table th small,
.responsive-utilities th small{display: block; font-weight: normal; color: #999;}
.responsive-utilities tbody th{font-weight: normal;}
.responsive-utilities td{text-align: center;}
.responsive-utilities td.is-visible{color: #468847; background-color: #dff0d8 !important;}
.responsive-utilities td.is-hidden{color: #ccc; background-color: #f9f9f9 !important;}
/* Responsive tests */
.responsive-utilities-test{margin-top: 5px;}
.responsive-utilities-test .col-xs-6{margin-bottom: 10px;}
.responsive-utilities-test span{padding: 15px 10px; font-size: 14px; font-weight: bold; line-height: 1.1; text-align: center; border-radius: 4px;}
.visible-on .col-xs-6 .hidden-xs,
.visible-on .col-xs-6 .hidden-sm,
.visible-on .col-xs-6 .hidden-md,
.visible-on .col-xs-6 .hidden-lg,
.hidden-on .col-xs-6 .visible-xs,
.hidden-on .col-xs-6 .visible-sm,
.hidden-on .col-xs-6 .visible-md,
.hidden-on .col-xs-6 .visible-lg{color: #999; border: 1px solid #ddd;}
.visible-on .col-xs-6 .visible-xs,
.visible-on .col-xs-6 .visible-sm,
.visible-on .col-xs-6 .visible-md,
.visible-on .col-xs-6 .visible-lg,
.hidden-on .col-xs-6 .hidden-xs,
.hidden-on .col-xs-6 .hidden-sm,
.hidden-on .col-xs-6 .hidden-md,
.hidden-on .col-xs-6 .hidden-lg{color: #468847; background-color: #dff0d8; border: 1px solid #d6e9c6;}
/* * Glyphicons * * Special styles for displaying the icons and their classes in the docs. */
.bs-glyphicons{padding-right: 0; padding-bottom: 1px; margin-bottom: 20px; list-style: none; overflow: hidden;}
.bs-glyphicons li{float: right; width: 30%; height: 130px; padding: 10px; margin: 0 -1px -1px 0; font-size: 12px; line-height: 1.4; text-align: center; border: 1px solid #ddd; list-style:none;}
.bs-glyphicons .glyphicon{display: block; margin: 5px auto 10px; font-size: 24px;}
.bs-glyphicons li:hover{background-color: rgba(86,61,124,.1);}
@media (min-width: 768px){.bs-glyphicons li{width: 15.5%;}}
/* * Customizer * * Since this is so form control heavy, we have quite a few styles to customize * the display of inputs, headings, and more. Also included are all the download * buttons and actions. */
.bs-customizer .toggle{float: left; margin-top: 85px; /* On account of ghetto navbar fix */}
/* Headings and form contrls */
.bs-customizer label{margin-top: 10px; font-weight: 500; color: #444;}
.bs-customizer h2{margin-top: 0; margin-bottom: 5px; padding-top: 30px;}
.bs-customizer h4{margin-top: 15px;}
.bs-customizer input[type="text"]{font-family: inherit /*Menlo, Monaco, Consolas, "Courier New", monospace*/; background-color: #fafafa;}
.bs-customizer .help-block{font-size: 12px;}
/* For the variables, use regular weight */
#less-section label{font-weight: normal;}
/* Downloads */
.bs-customize-download .btn-outline{padding: 20px;}
/* Error handling */
.bs-customizer-alert{position: fixed; top: 51px; right: 0; left: 0; z-index: 1030; padding: 15px 0; color: #fff; background-color: #d9534f; box-shadow: inset 0 1px 0 rgba(255,255,255,.25); border-bottom: 1px solid #b94441;}
.bs-customizer-alert .close{margin-top: -4px; font-size: 24px;}
.bs-customizer-alert p{margin-bottom: 0;}
.bs-customizer-alert .glyphicon{margin-left: 5px;}
.bs-customizer-alert pre{margin: 10px 0 0; color: #fff; background-color: #a83c3a; border-color: #973634; box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);}
/* * Miscellaneous * * Odds and ends for optimum docs display. */
/* Examples gallery: space out content better */
.bs-examples h4{margin-bottom: 5px;}
.bs-examples p{margin-bottom: 20px;}
/* Pseudo :focus state for showing how it looks in the docs */
#focusedInput{border-color: rgba(82,168,236,.8); outline: 0; outline: thin dotted \9; /* IE6-9 */ -moz-box-shadow: 0 0 8px rgba(82,168,236,.6); box-shadow: 0 0 8px rgba(82,168,236,.6);}
/* Better spacing on download options in getting started */
.bs-docs-dl-options h4{margin-top: 15px; margin-bottom: 5px;}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2014 By BESTDNNSKINS.COM
 */
 
/*********************************************/
/* All Content Styles */
/*********************************************/

/* START dnnsoftware.ir*/
.radsphere,
.flexslider { direction:ltr;}
.flex-direction-nav { direction:rtl;}
.unoslider_caption { font-family:inherit !important;text-align:right !important;}

/*.flex-direction-nav a { text-indent:999em !Important;}*/
/* END dnnsoftware.ir*/

/*--------- Togglable Tabs Style ----------*/
.nav { margin-bottom: 0; margin:0;}
.nav-tabs { border-bottom:none;}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{border-color: #d9d9d9 #d9d9d9 transparent; color:#555; background:#fff;}
.nav-tabs > li > a { padding-top:12px; color:#555;border-radius:0; -webkit-border-radius:0; -moz-border-radius:0; background:#f2f2f2; border:1px solid #d9d9d9;outline:none; }
.nav-tabs > li > a:hover {border:1px solid #d9d9d9;}
.nav-tabs > li > a, .nav-pills > li > a{ margin-left:10px;}
.tab-content {border:1px solid #d9d9d9; padding:11px 10px 5px 10px;}
.tab-content p{line-height:2em;}

/*--------- Togglable Tabs Top Style ----------*/
.tab_top_style .nav {margin:0;}
.tab_top_style .nav-tabs { border-bottom:none;}
.tab_top_style .nav-tabs > li.active > a,.tab_top_style .nav-tabs > li.active > a:hover,.tab_top_style .nav-tabs > li.active > a:focus{border-color: #d9d9d9 #d9d9d9 transparent; color:#555; background:#fff;}
.tab_top_style .nav-tabs > li > a {padding-top:12px;color:#555;border-radius:0;-webkit-border-radius:0; -moz-border-radius:0;background:#f2f2f2;border:1px solid #d9d9d9;outline:none;}
.tab_top_style .nav-tabs > li > a:hover { color:#58b4e7; border:1px solid #d9d9d9;}
.tab_top_style .nav-tabs > li > a, .nav-pills > li > a{ margin-left:10px; }
.tab_top_style .tab-content { border:1px solid #d9d9d9; padding:20px 10px 5px 10px;}
.tab_top_style .tab-content p { line-height:2em;}

/*--------- Server Tab Style ----------*/
.server_tab ul{ padding:0 5%!important;}
.server_tab .nav-tabs > li.active > a .fa,.server_tab .nav-tabs > li.active > a:hover .fa,.server_tab .nav-tabs > li.active > a:focus .fa{ padding:20px;background:#58b4e7;color:#fff;border:solid 1px #fff;}
.server_tab .nav-tabs > li{ text-align:center; }
.server_tab .nav-tabs > li a img{ padding:5px; border-radius:50%; background:#555; filter: alpha(opacity=70); opacity:0.70;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.server_tab .nav-tabs > li.active > a, .server_tab .nav-tabs > li.active > a:hover, .server_tab .nav-tabs > li.active > a:focus{background:none;color:#5c5e60;border:none;}
.server_tab .nav-tabs > li.active > a img, .server_tab .nav-tabs > li.active > a:hover img, .server_tab .nav-tabs > li.active > a:focus img{ padding:5px; border-radius:50%; filter: alpha(opacity=100); opacity:1;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.server_tab .nav-tabs > li > a, .server_tab .nav-tabs > li > a:hover{border:none;background:none;}
.server_tab .tab-content { border:none; text-align:center;}
.server_tab .tab-content p{font-size:17px; color:#7f7f7f; line-height:1.6em;}

/*--------- carousel 3 items ----------*/
.carousel3 {position:relative;padding:0;}
.carousel3 ul {list-style:none; margin:0;}
.carousel3 ul li {float:left;padding:0 10px;overflow:hidden;min-height:400px; cursor:w-resize;text-align:center}
a.carousel_prev3 .fa{display:none;}
a.carousel_next3 .fa{display:none;}
.carousel3:hover a.carousel_prev3 .fa{display:block;width:50px;height:50px;background:#333;background:rgba(0,0,0,.3);border:none;position:absolute;left:12px;top:70px; text-align:center; line-height:50px;color:#fff;font-size:22px; z-index:99;}
.carousel3:hover a.carousel_next3 .fa{display:block;width:50px;height:50px;background:#333;background:rgba(0,0,0,.3);border:none;position:absolute;right:10px;top:70px; text-align:center; line-height:50px;color:#fff;font-size:22px; z-index:99;}

/*--------- home3 carousel 3 items ----------*/
.home3_carousel3 {position:relative;padding:0 40px 0 20px;}
.home3_carousel3 ul {margin:0;}
.home3_carousel3 ul>li {float:left;padding:0 0 0 20px;overflow:hidden;min-height:430px; cursor:w-resize;text-align:center;list-style:none; }
.home3_carousel3 ul li img{filter: alpha(opacity=100);opacity:1;-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;}
.home3_carousel3 ul li:hover img{filter: alpha(opacity=80);opacity:0.8;-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;}
a.home3_prev3{display:inline-block;width:35px;height:50px;background: url("/Portals/_default/Skins/ArzeSara.com/images/carousel_next.png") no-repeat center center;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:none;position:absolute;right:-10px;top:35%;}
a.home3_next3{display:inline-block;width:35px;height:50px;background: url("/Portals/_default/Skins/ArzeSara.com/images/carousel_prev.png") no-repeat center center;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:none;position:absolute;left:-10px;top:35%;}
.home3_carousel3 h3{color:#313131;font-size:35px;text-align:center;-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;}
.home3_carousel3:hover h3{-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;}
.home3_carousel3 h4{margin:15px 0 10px;color:#212121;font-size:18px;}
.home3_carousel3 p{font-size:15px;color:#737373; line-height:1.6em;}
.home3_carousel3 .carousel_btn a, .home3_carousel3 .carousel_btn a:link , .home3_carousel3 .carousel_btn a:active, .home3_carousel3 .carousel_btn a:visited{ border:solid 1px #a3a3a3;padding:12px 20px; color:#5c5c5c;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.home3_carousel3 .carousel_btn a:hover{color:#fff;border:solid 1px #fff;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s;transition: all 0.3s ease-in 0s;}
.home3_carousel3 .carousel_btn a:hover .fa{color:#fff;border-left:solid 1px;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.home3_carousel3 .carousel_btn .fa{padding-left:10px;border-left:solid 1px #a3a3a3;margin-left:10px; font-size:15px;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}

/*--------- Home4 carousel 3 items ----------*/
.home4_carousel3 {position:relative;padding:0; }
.home4_carousel3 h3{ text-align:center; color:#333; font-size:25px;}
.home4_carousel3 ul {list-style:none; margin:0;}
.home4_carousel3 ul>li {float:left;padding:0 0 0 20px;overflow:hidden;min-height:300px; cursor:w-resize;text-align:center;}
a.home4_prev3{display:inline-block;width:22px;height:22px;background:#f3f3f3;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:none;position:absolute;left:20px;top:10px; text-align:center; line-height:22px;box-shadow: 2px 2px 1px #dddddd;color:#b1b1b1;font-size:18px; border-radius:3px;}
a.home4_next3{display:inline-block;width:22px;height:22px;background:#f3f3f3;-webkit-transition:background-color 0.3s ease-in-out 0s;-moz-transition:background-color 0.3s ease-in-out 0s;transition:background-color 0.3s ease-in-out 0s;border:none;position:absolute;left:50px;top:10px;text-align:center; line-height:22px;color:#b1b1b1;font-size:18px;box-shadow: 1px 2px 2px #dddddd;border-radius:3px;}
a.home4_prev3:hover{color:#fff;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
a.home4_next3:hover{color:#fff;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.home4_carousel3 ul li img{ filter:Alpha(Opacity=100);opacity:1;}
.home4_carousel3 ul li:hover img{ filter:Alpha(Opacity=80);opacity:0.8;}

/*--------- carousel 4 items ----------*/
.carousel4{position:relative;}
.carousel4 ul{list-style:none; margin:0}
.carousel4 ul li{ filter:Alpha(Opacity=100);opacity:1;float:left; list-style:none;position:relative;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;min-height:150px;text-align:right;cursor:w-resize;margin:0 20px 0 0!important;}
.carousel4 ul li img{ filter:Alpha(Opacity=100);opacity:1;}
.carousel4 ul li:hover img{ filter:Alpha(Opacity=80);opacity:0.8;}
a.carousel_prev4{display:inline-block;width:28px;height:28px;background: url("/Portals/_default/Skins/ArzeSara.com/images/carousel_prev4.png") no-repeat center center;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;position:absolute;left:45px;top:-35px;}
a.carousel_next4{display:inline-block;width:28px;height:28px;background: url("/Portals/_default/Skins/ArzeSara.com/images/carousel_next4.png") no-repeat center center;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;position:absolute;left:15px;top:-35px;}
.carousel4 .carousel4_content{padding:20px 10px 10px;}
.carousel4 ul li h3{font-size:13px;margin:0 0 5px;}
.carousel4 ul li span{font-size:15px;color:#464646;}
.carousel4 ul li p{color:#8a8a8a;padding-top:10px;}

/*---------  CarouFredSel Up Style ----------*/
.carousel_up { position:relative; padding:0; margin:0;min-height:170px; }
.carousel_up ul { width:auto; margin:0;}
.carousel_up ul li {height:auto; padding:0;margin:0 0 15px 0!important; list-style:none;}
.carousel_up ul li .fa{ float:right; font-size:16px;margin-top:5px;color:#bcbcbc; display:block;}
.carousel_up ul li p{ margin:0 0 11px 28px; font-size:15px;color:#7d7d7d; line-height:1.6em;}

/*--------- Fancybox Style ----------*/
.fancybox_style { margin:0; padding:0;}
.fancybox_style ul { list-style:none; margin:0; padding:0;}
.fancybox_style ul li { list-style:none; margin:0 0 10px 7px!important; float:right; position:relative; }
.fancybox_style ul li img {filter:Alpha(Opacity=80);opacity:0.8; }
.fancybox_style ul li a{ position:relative; display:block;}
.fancybox_style ul li img:hover{ filter:Alpha(Opacity=100);opacity:1;}

/*--------- Accordion2 Style ----------*/
.accordion2.ui-accordion .ui-accordion-header{border:solid 1px #e5e5e5;cursor:pointer;margin-top:7px;display: block;min-height:0;padding: 13px 45px 13px 10px;position:relative;line-height:20px;}
.accordion2.ui-accordion .ui-state-default,.accordion2.ui-accordion .ui-widget-content .ui-state-default, .accordion2.ui-widget-header .ui-state-default{ background: url("/Portals/_default/Skins/ArzeSara.com/images/accordion-buttons.png") no-repeat 98.8% 13px;font-weight:normal;color:#555;-moz-transition: background-color 0.4s ease 0s; transition: background-color 0.4s ease 0s;-webkit-transition: background-color 0.4s ease 0s;}
.accordion2.ui-accordion .ui-state-active, .accordion2.ui-widget-content .ui-state-active,.accordion2.ui-accordion .ui-widget-header .ui-state-active{  font-weight:normal;-moz-transition: background-color 0.4s ease 0s; transition: background-color 0.4s ease 0s;-webkit-transition: background-color 0.4s ease 0s;border-right:solid 2px;}
.accordion2 .ui-helper-reset {font-size: 100%;list-style: none outside none;margin: 0;outline: 0 none;padding: 0;text-decoration: none;}
.accordion2 > h3{font-size:17px!important;}
.accordion2.ui-accordion .ui-accordion-content {overflow: auto;padding: 12px 18px 15px 7px;background:#fff;border:solid 1px #e5e5e5;border-top:none;}
.accordion2.ui-accordion p{ line-height:1.6em;color:#909090; font-size:15px;}
.accordion2.ui-accordion .ui-state-active .ui-icon{ height:3px; width:15px; float:right;position:absolute;right:17px;top:22px;}

/*--------- Accordion3 Style ----------*/
.accordion3.ui-accordion .ui-accordion-header{border:solid 1px #e5e5e5;cursor: pointer;margin-top:6px; display: block;min-height: 0;padding:9px;position: relative;line-height:26px;}
.accordion3.ui-accordion .ui-state-default,.accordion3.ui-accordion .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{ background: url("/Portals/_default/Skins/ArzeSara.com/images/toggle_icon.rtl.png") no-repeat left 10px;font-weight:normal;color:#555;-moz-transition: background-color 0.4s ease 0s; transition: background-color 0.4s ease 0s;-webkit-transition: background-color 0.4s ease 0s;}
.accordion3.ui-accordion .ui-state-active, .ui-widget-content .ui-state-active,.accordion3.ui-accordion .ui-widget-header .ui-state-active{ background: url("/Portals/_default/Skins/ArzeSara.com/images/toggle_icon.rtl.png") no-repeat left -22px; font-weight:normal;color:#555;-moz-transition: background-color 0.4s ease 0s; transition: background-color 0.4s ease 0s;-webkit-transition: background-color 0.4s ease 0s;}
.accordion3 .ui-helper-reset { font-size: 100%;list-style: none outside none;margin: 0;outline: 0 none;padding: 0;text-decoration: none;}
.accordion3 > h3{font-size:14px!important;}
.accordion3 >h3 .fa{ margin-left:10px; font-size:16px; position:relative; top:2px; color:#444;}
.accordion3.ui-accordion .ui-accordion-content {overflow: auto;padding:8px 18px;background:#fff;border:solid 1px #e5e5e5;border-top:none;}

/*--------- Top Contact Style ----------*/
.top_contact{ color:#fff;}
.top_contact p{margin:10px 0 5px 0;}
.top_contact a{color:#fff!important;}
.top_contact .fa{color:#fff;margin: 0 10px 0 6px; font-size:14px;}

/*--------- Top Contact2 Style ----------*/
.top_contact2{ color:#666666;}
.top_contact2 p{margin:8px 0 5px 0;}
.top_contact2 a{color:#666666!important;}
.top_contact2 .fa{color:#666666;margin: 0 10px 0 6px; font-size:14px;}

/*--------- Site Footer Area ----------*/
/* Footer About */
.footerpane_style *{color:#ffffff;}

/* Footer Contact */
.footer_contact p{font-size:14px; margin:0;line-height:1.8em;}
.footer_contact ul li{ margin:0 0 10px 0!important;}
.footer_contact .fa{ color:#fff;padding:4px 0 10px 15px;float:right; font-size:14px;}
.footer_contact a, .footer_contact a:visited, .footer_contact a:link, .footer_contact a:active{color:#fff;}
.footer_contact a:hover{color:#cecece;}

/*---------Footer Post style ----------*/
.footer_post ul li{ margin:0 0 20px 0!important; font-size:14px; float:right; width:100%;}
.post_content{ margin-right:60px;}
.post_content p{ color:#fff; margin:0;}
.post_content span{ font-style:italic; color:#e4e4e4;font-size:13px;}
.footer_post ul li:hover img{-webkit-transform: scale(1.1,1.1)rotate(2deg); -moz-transform: scale(1.1,1.1)rotate(2deg); transform: scale(1.1,1.1)rotate(2deg);}

/*---------Footer Touch style ----------*/
.footer_touch p{line-height:1.6em; margin:0;font-size:14px; }
.footer_touch input{width:95%; padding: 0 10px;height:35px; float: right; border:solid 1px #e5e5e5; color:#555;outline:none; margin-top:4px;} 
.touch_btn a, .touch_btn a:visited, .touch_btn a:link, .touch_btn a:active{background:#fff;padding:8px 12px;color:#575757; border-radius:3px;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.touch_btn a:hover{ background:#333;color:#fff;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}

/*---------Footer Content style ----------*/
.footer_content p{ color:#f5f5f5;float:right; display:inline-block; font-size:15px; line-height:25px; margin-left:10px;}
.footer_content .Social-Links{margin:0; float:right;}

/*---------- Image view Style------------------ */
.view{ float: right;overflow: hidden; position: relative;}
.view img{-webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear;}
.view:hover img{-webkit-transform: scale(1.1,1.1)rotate(2deg); -moz-transform: scale(1.1,1.1)rotate(2deg); transform: scale(1.1,1.1)rotate(2deg);}

/* Effect 1 */
.icon_hover:hover .icon-effect-1 .fa{-webkit-animation: spinAround 2s linear infinite;-moz-animation: spinAround 2s linear infinite;animation: spinAround 2s linear infinite;color:#fff!important;}
.icon-effect-1{border:solid 1px #e3e3e3;margin: 0 auto;width: 98px;height: 98px;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;padding-top:3px;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;text-align:center}
.icon-effect-1 .fa{display:inline-block;cursor: pointer;margin: 0 auto;width: 90px;height: 90px;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: relative;z-index: 1;border:solid 1px #f5f5f5;-moz-transition:all 0.5s linear; -webkit-transition:all 0.5s linear; transition:all 0.5s linear;}
.icon-effect-1 .fa:hover{background:rgba(255,255,255,1);}
.icon-effect-1 .fa:after{pointer-events: none;position: absolute;width: 100%;height: 100%;border-radius: 50%;content: '';-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing: content-box;}
.icon-effect-1 .fa:before{speak: none;font-size: 40px;line-height: 90px;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;display: block;-webkit-font-smoothing: antialiased;}
.icon-effect-1 .icon-sort:hover:before{-webkit-animation: spinAround 2s linear infinite;-moz-animation: spinAround 2s linear infinite;animation: spinAround 2s linear infinite;}
@-webkit-keyframes spinAround{from{-webkit-transform: rotate(0deg)}to{-webkit-transform: rotate(360deg);}}
@-moz-keyframes spinAround{from{-moz-transform: rotate(0deg)}to{-moz-transform: rotate(360deg);}}
@keyframes spinAround{from{transform: rotate(0deg)}to{transform: rotate(360deg);}}

/* Effect 2 */
.icon-effect-2 .fa{box-shadow: 0 0 0 1px rgba(150,150,150,1);overflow: hidden;-webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;-moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;transition: background 0.3s, color 0.3s, box-shadow 0.3s;color:#444;background:#fff;display:inline-block;cursor: pointer;width: 60px;height: 60px;border-radius: 50%;position: relative;z-index: 1; text-align:center;}
.icon-effect-2 .fa:hover{box-shadow: 0 0 0 8px rgba(255,255,255,0.3);color:#fff;}
.icon-effect-2 .fa:after{pointer-events: none;position: absolute;width: 100%;height: 100%;border-radius: 50%;content: '';-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing:content-box;}
.icon-effect-2 .fa:before{speak: none;font-size: 30px;line-height: 60px;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;display: block;-webkit-font-smoothing: antialiased;}
@-webkit-keyframes toRightFromLeft{49%{-webkit-transform: translate(100%);}50%{opacity: 0;-webkit-transform: translate(-100%);}51%{opacity: 1;}}
@-moz-keyframes toRightFromLeft{49%{-moz-transform: translate(100%);}50%{opacity: 0;-moz-transform: translate(-100%);}51%{opacity: 1;}}
@keyframes toRightFromLeft{49%{transform: translate(100%);}50%{opacity: 0;transform: translate(-100%);}51%{opacity: 1;}}

/* Effect 3 */
.icon-effect-3{background: rgb(255,255,255);border-radius: 100%;cursor: pointer;position: relative;margin: 0 auto;width:80px; height:80px;overflow: hidden;-webkit-transform: translateZ(0); -moz-transform: translateZ(0);-ms-transform: translateZ(0);transform: translateZ(0); text-align:center; }
.icon-effect-3 .fa{ font-size:33px; line-height:82px;color:#fff;z-index:1210;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s; z-index:999; position:relative; }
.icon-effect-3:before, .icon-effect-3:after{border-radius: 100%;content:"";position: absolute;top: 0; right: 0;width: inherit; height: inherit;box-shadow: inset 10em 0 0,inset 0 10em 0 rgba(30, 140, 209, 0.2),inset -10em 0 0 rgba(30, 140, 209, 0.2),inset 0 -10em 0 rgba(30, 140, 209, 0.2);-webkit-transition: box-shadow 0.75s; -moz-transition: box-shadow 0.75s;-ms-transition: box-shadow 0.75s;transition: box-shadow 0.75s;}
.icon-effect-3:after{-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg);transform: rotate(45deg);}
.icon_round:hover .icon-effect-3:before, .icon_round:hover .icon-effect-3:after{box-shadow: inset 0.86em 0 0 rgba(255, 0, 0, 0.5),inset 0 0.86em 0 rgba(252, 150, 0, 0.5),inset -0.86em 0 0 rgba(0, 255, 0, 0.5),inset 0 -0.86em 0 rgba(0, 150, 255, 0.5);}
.icon_round:hover .fa{-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}

/*--------- Rotate Effect Style ----------*/
/* Rotate Effect*/
.rotate_effect{width: 100%;height:100%;overflow: hidden;position: relative;text-align: center;}
.rotate_effect .rotate_back{width:100%;height:100%;position: absolute;overflow: hidden;top: 0;right: 0;}
.rotate_effect h4{color: #fff;position: relative;font-size: 17px;padding: 10px;background: rgba(0, 0, 0, 0.8) transparent;border-bottom: 1px solid rgba(255, 255, 255,.3);margin: 10px 40px 0px 20px;}
.rotate_effect p{font-size: 12px;position: relative;color: #fff!important;padding: 5% 20px 5%;}
.rotate_effect a.info{display: inline-block;padding: 7px 14px;background: #fff;color: #333;}
.rotate_effect .rotate_back{-webkit-transform: scale(0) rotate(-180deg);-moz-transform: scale(0) rotate(-180deg);transform: scale(0) rotate(-180deg);-webkit-transition: all 0.4s ease-in;-moz-transition: all 0.4s ease-in;transition: all 0.4s ease-in;}
.rotate_effect:hover .rotate_back{filter: alpha(opacity=100);opacity: 1;-webkit-transform: scale(1) rotate(0deg);-moz-transform: scale(1) rotate(0deg);transform: scale(1) rotate(0deg);-webkit-transition-delay: 0.2s;-moz-transition-delay: 0.2s;transition-delay: 0.2s;}
.rotate_effect img{-webkit-transition:all 0.4s ease-in-out 0.2s;-moz-transition: all 0.4s ease-in-out 0.2s;transition:all 0.4s ease-in-out 0.2s;filter:alpha(opacity=100);opacity: 1;}
.rotate_effect:hover img{-webkit-transform: scale(0);-moz-transform: scale(0);transform: scale(0);filter: alpha(opacity=0);opacity: 0;-webkit-transition-delay: 0s;-moz-transition-delay: 0s;transition-delay: 0s;}
.rotate_effect h4, .rotate_effect p, .rotate_effect a.info{filter: alpha(opacity=0);opacity:0;-webkit-transition-delay: 0.3s;-moz-transition-delay: 0.3s;transition-delay: 0.3s;}
.rotate_effect:hover h4, .rotate_effect:hover p, .rotate_effect:hover a.info{filter: alpha(opacity=100);opacity: 1;-webkit-transition-delay: 0.3s;-moz-transition-delay: 0.3s;transition-delay: 0.3s;}

/*--------- Scale Effect Style ----------*/
.scale_effect{position: relative;overflow: hidden;-webkit-transition: all 0.3s ease-in 0s;-moz-transition: all 0.3s ease-in 0s;transition: all 0.3s ease-in 0s;}
.scale_effect .scale_title{position:absolute;width:auto;right:15px;left:15px;opacity:0;filter:alpha(opacity=0);text-align: center;z-index:1;bottom:10px;color: #fff;font-size:20px;}
.scale_effect:after{content: '';background: rgba(0,0,0,0.7);position: absolute;width: 100%;height: 100%;top: 0;right: 0;opacity: 0;filter: alpha(opacity=0);-webkit-transition: all 0.3s ease-in 0s;-moz-transition: all 0.3s ease-in 0s;transition: all 0.3s ease-in 0s;}
.scale_effect:hover .scale_title,.scale_effect:hover .scale_icon,.scale_effect:hover .scale_hover, .scale_effect:hover:after{opacity: 1;filter: alpha(opacity=100);}
.scale_icon{position: absolute;z-index: 2;top: 20px;width: 100%;text-align: center;opacity: 0;filter: alpha(opacity=0);-webkit-transition: all 0.2s ease-out 0s;-moz-transition: all 0.2s ease-out 0s;transition: all 0.2s ease-out 0s;}
.scale_effect .fa{position: absolute;width: 60px;height: 60px;line-height: 60px;font-size:22px;background: #ffffff;color: #555;right: 55%;margin-right: -45px;-webkit-transition: all .3s ease-in-out 0s;-moz-transition: all .3s ease-in-out 0s;transition: all .3s ease-in-out 0s;border-radius: 50%;}
.scale_effect:hover .fa{-webkit-transform: scaleX(-1);-moz-transform: scaleX(-1);-ms-transform: scaleX(-1);transform: scaleX(-1);}

/* Figures Style - Home5 Top*/
.figures_style .flip_item{display: inline-block;margin:0;} 
.flip_item{width: 100%;height: 100%;border-radius: 50%;position: relative;box-shadow: 0 1px 2px rgba(0,0,0,0.1);cursor: default;}
.flip_info_wrap{position: absolute;width: 100%;height: 100%;border-radius: 50%;-webkit-perspective: 800px;-moz-perspective: 800px;-o-perspective: 800px;-ms-perspective: 800px;perspective: 800px;-webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;top: 0;right: 0; text-align:center;}
.flip_info{position: absolute;width: 100%;height: 100%;border-radius: 50%;-webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-o-transform-style: preserve-3d;-ms-transform-style: preserve-3d;transform-style: preserve-3d;}
.flip_info > div{display: block;position: absolute;width: 100%;height: 100%;border-radius: 50%;background-position: center center;-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-o-backface-visibility: hidden;-ms-backface-visibility: hidden;backface-visibility: hidden;}
.flip_info .flip_info_back{-webkit-transform: rotate3d(0,1,0,180deg);-moz-transform: rotate3d(0,1,0,180deg);-o-transform: rotate3d(0,1,0,180deg);-ms-transform: rotate3d(0,1,0,180deg);transform: rotate3d(0,1,0,180deg);}
.flip_info_back h4{ margin-top:30%; color:#fff;}
.flip_info .flip_info_back a span.fa{ font-size:50px;  color:#fff; line-height:160px;}
.flip_img_1{background-image: url("/Portals/_default/Skins/ArzeSara.com/images/content/flip_img_1.png");width: 161px;height:160px;}
.flip_img_2{background-image: url("/Portals/_default/Skins/ArzeSara.com/images/content/flip_img_2.png");width: 269px;height: 272px;}
.flip_img_3{background-image: url("/Portals/_default/Skins/ArzeSara.com/images/content/flip_img_3.png");width: 163px;height: 163px;}
.flip_img_4{background-image: url("/Portals/_default/Skins/ArzeSara.com/images/content/flip_img_4.png");width: 257px;height: 257px;}
.flip_info h3{color: #fff;text-transform: uppercase;letter-spacing: 2px;font-size: 14px;margin: 0 15px;padding: 40px 0 0 0;height: 90px;text-shadow:0 0 1px #fff,0 1px 2px rgba(0,0,0,0.3);}
.flip_info p{color: #fff;padding: 10px 5px;font-style: italic;margin: 0 30px;font-size: 12px;border-top: 1px solid rgba(255,255,255,0.5);}
.flip_info p a{display: block;color:#fff;color:rgba(255,255,255,0.7);font-style: normal;font-weight:700;font-size: 12px;letter-spacing: 1px;padding-top: 8px;}
.flip_info p a:hover{color: #eee;}
.flip_item:hover .flip_info_wrap{box-shadow:0 0 0 0 rgba(255,255,255,0.8),inset 0 0 3px rgba(115,114, 23, 0.8);}
.flip_item:hover .flip_info{-webkit-transform: rotate3d(0,1,0,-180deg);-moz-transform: rotate3d(0,1,0,-180deg);-o-transform: rotate3d(0,1,0,-180deg);-ms-transform: rotate3d(0,1,0,-180deg);transform: rotate3d(0,1,0,-180deg);}

/*State Wrapper Style - Home5 Bottom*/
.state-wrapper{position:relative;overflow:hidden;}
.state-wrapper img{min-width:230px;}
.state-info{width:100%; height: 100%;text-align: right; padding:0; min-height: 35px; position: absolute; bottom: 0; right: 0; z-index: 10; filter: alpha(opacity=0); opacity: 0;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;text-align:center; }
.state-info:hover{ filter: alpha(opacity=80); opacity:0.80;}
.state-info:hover .state-circle{transform: scale(1.6) rotate(180deg);-webkit-transform: scale(1.6) rotate(180deg);-o-transform: scale(1.6) rotate(180deg); -moz-transform: scale(1.6) state(180deg);-ms-transform: scale(1.6) state(180deg); -webkit-transition: all 0.4s ease-in 0s; -moz-transition: all 0.4s ease-in 0s;transition: all 0.4s ease-in 0s;}
.state-circle{width:40px;height:40px;background:#000;position: absolute; top:35%; right: 42%;-webkit-border-radius:30px; -moz-border-radius: 30px; border-radius: 30px;filter: alpha(opacity=70); opacity: 0.7; z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;text-align:center;}
.state-circle .fa{font-size:13px;color:#fff;line-height:40px;}

/*--------- Scaling Border Style ----------*/
.scaling_border{ background:#e6e6e6; height:1px; width:60%; margin:15px auto;}
.scaling_color{ height:1px; width:15%; margin:15px auto;-webkit-transition: all 0.6s; -moz-transition: all 0.6s; transition: all 0.6s;}

/*--------- Top Icon ----------*/
.top_icon .fa{ position:relative;font-size:26px;text-align:center;line-height:90px;height:90px;width:90px;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;overflow:hidden;background-image:none;-webkit-box-shadow:0 0 0 1px #2f2f2f inset;-moz-box-shadow:0 0 0 1px #2f2f2f inset;box-shadow: 0 0 0 1px #2f2f2f inset;z-index:15;}
.top_icon .fa:before{display:block;position:absolute;top:0;right:0;height:0;width:100%;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;z-index:12;}
.top_icon:hover .fa:before{height:100%; color:#fff;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}

/* Button style*/
.btn_effect{position: relative;z-index: 1; float:right;}
.btn_sliding{border: solid 1px #e5e5e5;background: none;cursor: pointer;padding: 10px 20px;outline: none;color:#666;position: relative;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.btn_sliding:after{content: '';position: absolute;z-index: -1;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.btn_method:after{width: 0%;height: 100%;top: 0;right: 0;}
.btn_method:hover, .btn_method:active{color: #fff;}
.btn_method:hover:after, .btn_method:active:after{width: 100%;}

/*--------- Home Page Main Top Style ----------*/
.main_top{text-align:center;}
.main_top h3{font-size:16px;color:#6a6a6a;}
.main_top .fa{ border:solid 1px #e5e5e5;}
.main_top:hover h3{-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;}
.main_top p{ line-height:1.7em; font-size:13px;}
.readmore a, .readmore a:link, .readmore a:visited{background:#f3f3f3; border:solid 1px #e5e5e5;font-size:13px;padding:7px 13px;color:#8d8d8d;-moz-transition:all 0.3s linear; -webkit-transition:all 0.3s linear; transition:all 0.3s linear;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;}
.readmore a:hover{color:#fff!important;}
.main_top .col-sm-3:hover .scaling_color{ width:100%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}

/*--------- Amazing Blog Style ----------*/
.amazing_blog{ text-align:center;}
.amazing_blog:hover .scaling_color{ width:100%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.amazing_blog h3{ font-size:27px;color:#3d3d3d;}
.amazing_blog p{color:#8d8d8d;}
.blog_around{width:86px;height:86px;padding:2px 2px 0 0;border:solid 1px #e5e5e5;border-radius:50%;-webki-border-radius:50%;-moz-border-radius:50%;float:right;}
.blog_body{border:solid 1px #e5e5e5; padding:25px 10px;}
.blog_date{text-align:center;border:solid 1px #e5e5e5;border-radius:50%;-webki-border-radius:50%;-moz-border-radius:50%;width:80px; height:80px;padding:20px 0 0 0;}
.blog_date p{font-size:18px;margin:0;color:#858585; padding:0;}
.blog_content{margin-right:92px;text-align:right;}
.blog_content h4{margin:0 0 5px 0;font-size:15px;color:#6a6a6a;}

/*--------- Image Magnify Style ----------*/
.img_magnify {overflow-x: hidden;overflow-y: hidden;position: relative;width: 100%;}
.img_large{width:175px;height:175px;position:absolute;border-radius:100%;box-shadow:0 0 0 7px rgba(255,255,255,0.85),0 0 7px 7px rgba(0,0,0,0.25),inset 0 0 40px 2px rgba(0,0,0,0.25);display:none;}

/*--------- Feature Intro Style ----------*/
.feature_intro .scaling_border{ background:#e6e6e6; height:1px; width:100%; margin:15px 0;}
.feature_intro .scaling_color{height:1px; width:10%; margin:15px 0;-webkit-transition: all 0.6s; -moz-transition: all 0.6s; transition: all 0.6s;}
.feature_intro:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.feature_intro p{color:#9b9b9b;font-size:13px; line-height:1.6em;padding:10px 0;}
.feature_intro ul li{color:#9b9b9b;font-size:13px; padding:3px 0;}
.feature_intro .fa{margin-left:15px;}

/* Scroll Style */
.scroll_style .digital_count>.digital_show>ul{position: absolute; margin: 0; padding: 0; list-style: none; }
.scroll_style .digital_count>.digital_show{position: relative;float: right; right:20%;overflow: hidden; width:25px; height: 40px;color:#fff; bottom:-8px;}
.scroll_style .digital_count{color: #fff; font-size:40px; line-height:1;}
.scroll_style .digital_wrapper h3{color:#fff; text-align:center; font-size:15px;}
.scroll_style h3 .fa{margin:5px 0 0 10px; font-size:18px;}

/*--------- Home Bottom ----------*/
.home_bottom{text-align:center;}
.home_bottom h3{font-size:27px; color:#3d3d3d;}
.home_bottom p{font-size:14px; color:#8d8d8d;}
.home_bottom:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s; }

/*--------- radsphere effect ----------*/
.radsphere_wrapper{ text-align:center;min-height:520px; position:relative;}
.radsphere_wrapper .fa{font-size:28px;color:#fff; line-height:90px;}
.radsphere{position: absolute;top:300px;display: flex;align-items: center;justify-content: center;width: 100%;min-height:250px;z-index:99; }
.radsphere .fa{ font-size:48px;}
.radsphere > a{top: calc(40% - 60px);right: calc(50% - 60px);font-size:32px;}
.radsphere > a.show{display: flex !important;}
.radsphere li{-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);transition: all 1s ease; text-align:center;}
.radsphere a{position: absolute;width: 120px;height: 120px;text-align: center;align-items: center;justify-content: center;border-radius: 120px;display: none;text-decoration: none;color: #fff!important;transition: all 1s ease;}
.radsphere .selected{background: rgba(51, 51, 51, 0.9);display: flex;top: calc(40% - 60px);right: calc(50% - 60px);color: #f1f1f1;}
.radsphere .selected + ul > li:nth-child(1){-webkit-transform: rotate(144deg) translateX(140px) translateY(102px);transform: rotate(144deg) translateX(180px) translateY(0);-moz-transform: rotate(144deg) translateX(180px) translateY(0);}
.radsphere .selected + ul > li:nth-child(1) > a{-webkit-transform: rotate(-144deg);transform: rotate(-144deg) translateY(-102px);-moz-transform: rotate(-144deg) translateY(-102px); background:#714dd6;}
.radsphere .selected + ul > li:nth-child(2){-moz-transform: rotate(216deg) translateX(140px);-webkit-transform: rotate(216deg) translateX(150px);transform: rotate(216deg) translateX(140px);}
.radsphere .selected + ul > li:nth-child(2) > a{-moz-transform: rotate(-216deg);-webkit-transform: rotate(-216deg);transform: rotate(-216deg);background:#17c734;}
.radsphere .selected + ul > li:nth-child(3){-moz-transform: rotate(208deg) translateX(-40px) translateY(0px);-webkit-transform: rotate(209deg) translateX(85px) translateY(235px);transform: rotate(208deg) translateX(-40px) translateY(0px);}
.radsphere .selected + ul > li:nth-child(3) > a{-moz-transform: rotate(-208deg);-webkit-transform: rotate(-208deg);transform: rotate(-209deg) translateY(-260px);background:#ff891b;}
.radsphere .selected + ul > li:nth-child(4){-moz-transform: rotate(296deg) translateX(160px) translateY(10px);-webkit-transform: rotate(293deg) translateX(170px) translateY(40px);transform: rotate(296deg) translateX(160px) translateY(10px);}
.radsphere .selected + ul > li:nth-child(4) > a{-moz-transform: rotate(-296deg);-webkit-transform: rotate(-293deg);transform: rotate(-296deg); background:#7ac9fe;}
.radsphere .selected + ul > li:nth-child(5){-moz-transform: rotate(348deg) translateX(180px);-webkit-transform: rotate(348deg) translateX(210px) translateY(-15px);transform: rotate(348deg) translateX(180px) translateY(-15px);}
.radsphere .selected + ul > li:nth-child(5) > a{-moz-transform: rotate(-348deg);-webkit-transform: rotate(-348deg);transform: rotate(-348deg);background:#7ac9fe; background:#e27979;}
.radsphere .selected + ul > li > a{display: flex;}
.radsphere .radsphere_color{ width:150px; height:150px;background:#aac303;}

/*--------- Main Bottom ----------*/
.main_bottom{ position:relative;z-index:999;}
.main_bottom h3{font-size:16px;}
.main_bottom p{color:#8d8d8d;font-size:13px;}
.main_bottom a, .main_bottom a:link , .main_bottom a:active, .main_bottom a:visited {display:block;float:left;margin-top:30px;padding:7px 15px; border-radius:3px;color:#fff;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.main_bottom .bottom_text{ float:right;}
.main_bottom a:hover{ background:#333!important;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}

/*------------------ Home Version 2 -------------------*/
/*---------Home2 Top---------------*/
.home2_top{position:relative; text-align:center;}
.home2_top h3{color:#373737; font-size:27px; margin-bottom:10px;}
.home2_top > p{font-size:15px; color:#747474; line-height:1.7em; padding:0 10%;}
.home2_top h4{color:#333;font-size:18px;}
.home2_top .icon-effect-2{ float:right;}
.home2_content{margin-right:80px; text-align:right;}
.home2_top .icon_hover:hover .icon-effect-2 .fa{color: #fff;box-shadow: 0 0 0 8px rgba(255,255,255,0.3);}
.home2_top .icon_hover:hover .icon-effect-2 .fa:before{-webkit-animation: toRightFromLeft 0.3s forwards;-moz-animation: toRightFromLeft 0.3s forwards;animation: toRightFromLeft 0.3s forwards;}

/*---------Rising Style---------------*/
.rising_style{ position:relative; margin-top:50px;}
.rising01_position{ text-align:center; z-index:99;position:relative;}
.rising02_position{ position:absolute; top:-30px;left:100px; z-index:100; }
.rising03_position{ position:absolute; top:-20px;right:80px; z-index:101;}
.rising04_position{ position:absolute; bottom:130px;left:10px; z-index:101;}
.rising05_position{ position:absolute; bottom:70px;right:-20px;z-index:101;}

/*--------- home2 who we are ---------------*/
.home2_we h3{ font-size:27px; color:#373737;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home2_we:hover h3{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home2_we p{ color:#595959; font-size:15px; line-height:1.7em;}
.home2_we ul li{ float:right;width:15%; margin-left:1.5%!important;}
.home2_we ul li img{filter: alpha(opacity=100); opacity:1;}
.home2_we ul li:hover img{ filter: alpha(opacity=85); opacity:0.85;}

/*--------Move Number---------------*/
.move_numb{text-align:center;}
.move_numb .col-sm-3:last-child{border-left:solid 1px #e6e6e6;}
.move_numb .col-sm-3{ border:none;border-right:solid 1px #dcdee0;}
.move_numb h3{ font-size:15px;color:#5d5d5d; }
.move_field{position: relative;width: 100%;height: 80px;line-height: 80px; font-size:80px;overflow: hidden;}
.move_field span{display: block;/*position: absolute;right: 0px;top: 0px;*/}
.move_color1{color:#e52721;}
.move_color2{color:#e5ab21;}
.move_color3{color:#abe521;}
.move_color4{color:#2182e5;}

/*--------Article Style---------------*/
.article_style{ text-align:center;} 
.article_style h3{ font-size:27px;color:#000;}
.article_style >h3 span{ font-weight:normal;}
.article_style p{ font-size:17px;color:#878787;}
.article_style .btn_effect{margin:0; float:right; background:#333;margin: 0 36% 0 20px;}
.article_style .btn_sliding{color:#fff;float:right;}

.article_btn{float:right; margin-top:12px;}
.article_btn a, .article_btn a:link, .article_btn a:active, .article_btn a:visited {padding:11px 25px;color:#fff;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease; }
.article_btn a:hover{ background:#333!important;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}

/*--------- picture show ----------*/
.pic_show .scale_effect .scale_title{bottom:20px;}
.pic_show .scale_icon{top: 30px;}

/*------------------ Home Version 3 -------------------*/
.home3_top { text-align:center;}
.home3_top .fa{ font-size:40px;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home3_top h3{ font-size:22px;color:#303030;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home3_top p{font-size:15px;color:#888888; line-height:1.6em;}
.home3_top .col-sm-4:hover h3{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home3_top .col-sm-4:hover .fa{-webkit-animation: swing ease-in-out 1 normal 1000ms;-moz-animation: swing ease-in-out 1 normal 1000ms;-ms-animation: swing ease-in-out 1 normal 1000ms;animation: swing ease-in-out 1 normal 1000ms;}

/*Design Style*/
.design_style { text-align:center;background:url("/Portals/_default/Skins/ArzeSara.com/images/gray_bottom.png") center bottom no-repeat;}
.design_style h3{ font-size:39px;color:#313131;}
.design_style p{font-size:15px;color:#807f7f; line-height:1.6em;}

/*Advance Bar*/
.advance_bar h3{color:#2e2e2e; font-size:25px; margin-top:0;}
.advance_bar p{color:#787878;font-size:15px;}.
.advance_text{margin-bottom:10px; font-size:13px;}
.advance_bar .progress{height:15px;margin-bottom:20px;}
.advance_bar .progress .progress-bar{line-height:12px;padding:0 10px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;}

/*------------------ Home Version 4-------------------*/
/*--------- Home4 Top ----------*/
.home4_top{ text-align:center;}
.home4_top .icon_round{padding-top:4px;border:solid 1px #dcd9d9; border-radius:50%;width:90px; height:90px; margin:0 auto;}
.home4_border{ background:#e6e6e6; height:1px; width:30%; margin:0 auto 5px;}
.home4_top h3{color:#555; margin:25px 0 10px 0;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.home4_top .col-sm-3:hover h3{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.home4_top a{font-size:13px;}
.home4_top .col-sm-3:hover .icon-effect-3:before, .home4_top .col-sm-3:hover .icon-effect-3:after{box-shadow: inset 0.86em 0 0 rgba(255, 0, 0, 0.5),inset 0 0.86em 0 rgba(252, 150, 0, 0.5),inset -0.86em 0 0 rgba(0, 255, 0, 0.5),inset 0 -0.86em 0 rgba(0, 150, 255, 0.5);}
.home4_top .col-sm-3:hover .fa{-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}

/*--------- Caption Style ----------*/
.caption_style{ text-align:center; overflow:hidden;}
.caption_style h3{ color:#fff; font-size:53px; margin-bottom:25px;}
.caption_style p{color:#fff; font-size:25px; font-style:italic;}

/*--------- Home4 Middle Style ----------*/
.home4_middle{text-align:right;}
.home4_middle img{ text-align:center;}
.home4_middle h3{color:#333; font-size:24px;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home4_middle:hover h3{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.home4_middle .scaling_border{ background:#e6e6e6; height:1px; width:100%; margin:15px 0;}
.home4_middle .scaling_color{height:1px; width:10%; margin:15px 0;-webkit-transition: all 0.6s; -moz-transition: all 0.6s; transition: all 0.6s;}
.home4_middle:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.home4_middle ul li{ margin-bottom:10px;}
.home4_middle ul li .fa{ font-size:17px;padding:8px; display:block;float:right; border-radius:50%;margin:0px 0 0 15px;color:#fff;}
.home4_middle ul li h4{ font-size:19px; color:#333;}
.home4_middle ul li p{ font-size:17px; color:#868686; margin-top:10px;}
.btn_orange a, .btn_orange a:link , .btn_orange a:active, .btn_orange a:visited{ background:#fe9500;padding:8px 20px;border-radius:30px; color:#fff;}
.btn_orange a:hover{ background:#333;}

/*------------------ Home Version 5 -------------------*/
/*--------- Figures Style----------*/
.figures_style{padding:0 10px;}
.figures_style .figures_text h3{ color:#393939; font-size:25px;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.figures_style .figures_text p{ color:#a1a0a0; font-size:15px; line-height:1.6em;}
.figures_style .figures_bg{background:url("/Portals/_default/Skins/ArzeSara.com/images/content/figures_bg.rtl.png") no-repeat center center; min-height:380px; text-align:center; }
.figures_style .skin_width .figures_content01{ position:relative; top:100px;padding:5px;border:solid 1px #dbd8d8;width: 171px;height:170px;border-radius: 50%;}
.figures_style .skin_width .figures_content02{ position:relative; top:50px;padding:5px;border:solid 1px #dbd8d8;width: 279px;height:282px;border-radius: 50%;}
.figures_style .skin_width .figures_content03{ position:relative; right:40px;top:160px;padding:5px;border:solid 1px #dbd8d8;width: 173px;height:173px;border-radius: 50%;}
.figures_style .skin_width .figures_content04{ position:relative; right:-10px;top:160px;padding:5px;border:solid 1px #dbd8d8;width: 267px;height:267px;border-radius: 50%;}

/*---------Feature Style----------*/
.feature_wrapper{ text-align:center;}
.feature_list1{ text-align:left;}
.feature_list1 .feature_icon{float:left;}
.feature_list1 .feature_text{margin-left:70px;}
.feature_list2{ text-align:right;}
.feature_list2 .feature_icon{float:right;}
.feature_list2 .feature_text{margin-right:70px;}
.feature_wrapper ul li{ float:right; margin-bottom:20px!important;}
.feature_icon{width:60px;height:60px; border:solid 1px #000; border-radius:50%; text-align:center;padding-top:13px;}
.feature_icon .fa{font-size:28px;color:#333;}
.feature_text h3{margin:0 0 20px 0;color:#333;font-size:15px;}
.feature_text p{color:#a1a0a0; font-size:15px;}
.feature_wrapper .col-sm-4 ul li:hover .fa, .feature_wrapper .col-sm-5 ul li:hover .fa{-webkit-animation: swing ease-in-out 1 normal 1000ms;-moz-animation: swing ease-in-out 1 normal 1000ms;-ms-animation: swing ease-in-out 1 normal 1000ms;animation: swing ease-in-out 1 normal 1000ms;}
.feature_wrapper .col-sm-4 ul li:hover .feature_icon, .feature_wrapper .col-sm-5 ul li:hover .feature_icon{border:solid 1px;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.feature_wrapper .col-sm-4 ul li:hover h3, .feature_wrapper .col-sm-5 ul li:hover h3{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}

/*Portfolio Wrapper Style*/
.portfolio_wrapper{text-align:center;}
.portfolio_wrapper h3{color:#555; font-size:25px; }
.portfolio_wrapper p{font-size:14px;}
.state_wrapper{position:relative;overflow:hidden;}
.state_wrapper img{min-width:220px;}
.state_info{width:100%; height: 100%;text-align: right; padding:0; min-height: 35px; position: absolute; top: 0; right: 0; z-index: 10;filter: alpha(opacity=0); opacity: 0;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;text-align:center; }
.state_info:hover{ filter: alpha(opacity=80); opacity:0.80;}
.state_info:hover .state_circle{transform: scale(1.6) rotate(180deg);-webkit-transform: scale(1.6) rotate(180deg);-o-transform: scale(1.6) rotate(180deg); -moz-transform: scale(1.6) state(180deg);-ms-transform: scale(1.6) state(180deg); -webkit-transition: all 0.4s ease-in 0s; -moz-transition: all 0.4s ease-in 0s;transition: all 0.4s ease-in 0s;}
.state_circle{width:40px;height:40px;background:#000;position: absolute; top:35%; right: 42%;-webkit-border-radius:30px; -moz-border-radius: 30px; border-radius: 30px;filter: alpha(opacity=70); opacity: 0.7; z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;text-align:center;}
.portfolio_wrapper #options a{border:solid 1px;color:#333;background:#fff;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease; margin-bottom:1px;}
.portfolio_wrapper #options ul li .selected{color:#fff;}
.portfolio_wrapper #options a:hover{color:#fff;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.state_circle .fa{font-size:13px;color:#fff;line-height:40px;}
.portfolio_wrapper #container .four_columns{ min-height:410px; }
.portfolio_item{padding:10px 10px 0; text-align:center; border:solid 1px #7d7d7d;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.portfolio_item h4{ font-size:15px;color:#444;}
.portfolio_item .scaling_color{background:#444;}
.portfolio_item:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.portfolio_wrapper #container li:hover .portfolio_item{ border:solid 1px;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.portfolio_item p{margin-bottom:20px; font-style:italic;}
.portfolio_icon { margin-bottom:-20px;}
.portfolio_icon .fa{color:#444; font-size:18px;padding:5px 25px; border:solid 1px #444; background:#fff;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.portfolio_wrapper #container li:hover .portfolio_icon .fa{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.portfolio_wrapper #container li:hover .portfolio_item h4{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}

/*------------------ About Top Page -------------------*/
.about_top{text-align:center;}
.about_top .fa{padding:18px; background:#464646;border-radius:5px;color:#fff; font-size:30px;-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.about_top .col-sm-3:hover h3{-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.about_top h3{ font-size:18px;color:#333;}
.about_top p{color:#464646; line-height:1.6em;}
.about_top .col-sm-3:hover .fa-flask{-webkit-animation: swing ease-in-out 1 normal 1000ms;-moz-animation: swing ease-in-out 1 normal 1000ms;-ms-animation: swing ease-in-out 1 normal 1000ms;animation: swing ease-in-out 1 normal 1000ms;}
.about_top .col-sm-3:hover .fa-rss{-webkit-animation: tada ease-in-out 1 normal 1000ms;-moz-animation: tada ease-in-out 1 normal 1000ms;-ms-animation: tada ease-in-out 1 normal 1000ms;animation: tada ease-in-out 1 normal 1000ms;}
.about_top .col-sm-3:hover .fa-anchor{-webkit-animation: shake ease-in-out 1 normal 1000ms;-moz-animation: shake ease-in-out 1 normal 1000ms;-ms-animation: shake ease-in-out 1 normal 1000ms;animation: shake ease-in-out 1 normal 1000ms;}
.about_top .col-sm-3:hover .fa-btc{-webkit-animation: bounce ease-in-out 1 normal 1000ms;-moz-animation: bounce ease-in-out 1 normal 1000ms;-ms-animation: bounce ease-in-out 1 normal 1000ms;animation: bounce ease-in-out 1 normal 1000ms;}
/*About Story Style*/
.about_story h3{margin:0; font-size:25px; color:#333;}
.about_story p{ font-size:14px;color:#787878; line-height:1.6em;padding:0 0; }
.story_text{margin-bottom:5px; font-size:13px;}
.about_story .progress{height:12px;margin-bottom:5px;}
.about_story .progress .progress-bar{line-height:12px;padding:0 10px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;}
/*About Number Style*/
.about_numb{ text-align:center;}
.about_numb .fa{font-size:30px;margin-bottom:20px;}
.about_numb h3{ font-size:13px;color:#888;}
/* About Team Page */
.about_team{text-align:center;}
.about_team h2{color:#333;font-size:30px;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s; margin-bottom:15px;}
.about_team > p{color:#8d8d8d; font-size:14px;}
.about_team:hover h2{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.about_team h3{color:#fff;}
.team_content{text-align:right;padding:10px;}
.team_content p span{color:#888;}
.team_content h4{color:#333;margin-bottom:3px; font-size:18px;}
.team_content p{line-height:1.6em; font-size:14px; color:#666;}
.team_icon{padding:15px 0 5px 10px;}
.team_icon .Social-Links{float:right;}
.team_link{float:left;line-height:20px;}
.team_link a, .team_link a:link, .team_link a:active, .team_link a:visited{color:#333;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.team_link a:hover{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.about_team:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}

/*------------------ Services Top Page -------------------*/
.services_top img{filter: alpha(opacity=100); opacity:1;}
.services_top .col-sm-4:hover img{filter: alpha(opacity=85); opacity:0.85;}
.services_top p{ font-size:14px;color:#8c8c8c; line-height:1.6em;}

/*--------- Services List----------*/
.services_list { text-align:center;}
.services_list h3{color:#424242; font-size:27px;}
.services_list:hover .scaling_color{ width:40%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.services_list > p{ font-size:14px;color:#8c8c8c; line-height:1.6em;}
.services_icon {margin:20px 0;}
.services_icon .fa{position:relative;font-size:26px;height:70px;width:70px; line-height:70px;overflow:hidden;color:#2f2f2f;z-index:15;}
.services_icon:hover .fa:before{height:100%; color:#fff;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s; }
.services_text p{ font-size:18px;color:#2f2f2f;margin-top:15px;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.services_list .col-sm-3:hover .services_text p{-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}

/*--------- Features List ----------*/
.features_list .row{margin:0 0 20px 0;}
.features_icon{float:right;}
.features_icon .fa{font-size:28px;padding-top:5px;}
.features_item{margin-right:50px;}
.features_item h3{margin:0 0 10px 0;color:#333;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s; font-size:18px;}
.features_item:hover h3{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.features_list .col-sm-4:hover .fa-cloud-download, .features_list .col-sm-4:hover .fa-random{-webkit-animation: shake ease-in-out 1 normal 1000ms;-moz-animation: shake ease-in-out 1 normal 1000ms;-ms-animation: shake ease-in-out 1 normal 1000ms;animation: shake ease-in-out 1 normal 1000ms;}
.features_list .col-sm-4:hover .fa-gears, .features_list .col-sm-4:hover .fa-sign-out{-webkit-animation: bounce ease-in-out 1 normal 1000ms;-moz-animation: bounce ease-in-out 1 normal 1000ms;-ms-animation: bounce ease-in-out 1 normal 1000ms;animation: bounce ease-in-out 1 normal 1000ms;}
.features_list .col-sm-4:hover .fa-inbox, .features_list .col-sm-4:hover .fa-signal{-webkit-animation: swing ease-in-out 1 normal 1000ms;-moz-animation: swing ease-in-out 1 normal 1000ms;-ms-animation: swing ease-in-out 1 normal 1000ms;animation: swing ease-in-out 1 normal 1000ms;}

/*---------Product List ----------*/
.product_list h3{ font-size:27px; color:#2f2f2f; }
.product_list p{ font-size:13px; color:#8c8c8c; margin-top:15px;}
.product_list:hover h3{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}

/*--------- Time style ----------*/
.time_style{ padding-bottom:100px;}
.time_border{width:40px;min-height:1400px; overflow:hidden;position:absolute;right:49%;top:100px; }
.time_border:before{content: ' '; background:#e9e9e9; position: absolute; top:15px; right: 15px; width: 1px;height:1400px; z-index:0;}
.time_border .dot_style { position:absolute; width:10px; height:10px;border-radius:100%;top:155px; right:10px;}
.time_border .dot_style:before{ content: ' '; border:3px solid; position: absolute; top:-8px; right:-8px; width:26px;height:26px;border-radius:100%; z-index:100; }
.time_border .dot_top_style { position:absolute; width:10px; height:10px;border-radius:100%; background:#e9e9e9; top:5px; right:10px;}
.time_border .dot_bottom_style { position:absolute; width:10px; height:10px;border-radius:100%; background:#e9e9e9; bottom:0; right:10px;}
.time_border .dot01_style {top:140px;}
.time_border .dot02_style {top:300px;}
.time_border .dot03_style {top:575px;}
.time_border .dot04_style {top:725px;}
.time_border .dot05_style {top:980px;}
.time_border .dot06_style {top:1210px;}
.time_style ul{ padding-bottom:30px;}
.time_style h3{ text-align:center; color:#222; font-size:30px; padding-bottom:50px; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.time_style:hover h3{-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.time_style img{filter:Alpha(Opacity=80);opacity:0.8;}
.time_style img:hover{filter:Alpha(Opacity=100);opacity:1;}
.time_style .time_text{border:solid 1px #e5e5e5; padding:10px; color:#5f5f5f;-webkit-border-radius:3px;-moz-border-radius:3px; border-radius:3px; margin:0 30px 0 30px; width:70%; position:relative;}
.time_style .time_text_odd:after{content:" "; position:absolute;top:50px;right:-20px;border-top:solid 18px transparent;border-bottom:solid 18px transparent;border-left:solid 20px #e5e5e5;width:0;height:0;}
.time_style .time_text_odd:before{content:" "; position:absolute;top:52px;right:-18px;border-top:solid 16px transparent;border-bottom:solid 16px transparent;border-left:solid 18px #fff;width:0;height:0; z-index:9;}
.time_style .time_text_even:after{content:" "; position:absolute;top:230px;left:-20px;border-top:solid 18px transparent;border-bottom:solid 18px transparent;border-right:solid 20px #e5e5e5;width:0;height:0;}
.time_style .time_text_even:before{content:" "; position:absolute;top:232px;left:-18px;border-top:solid 16px transparent;border-bottom:solid 16px transparent;border-right:solid 18px #fff;width:0;height:0; z-index:9;}
.time_style .time_text h4{font-size:20px;}
.time_text_even{ float:left;}
.time_text_odd{ float:right;}

/*------------------ Price Table Page -------------------*/
/*--------- Prices Table Style----------*/
.prices_table{ text-align:center; margin:20px 0; }
.prices_table .prices_table_top{ text-align:center; padding-bottom:30px;}
.prices_table .prices_table_top h3{ font-size:30px; color:#2d2d2d;-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.prices_table:hover .prices_table_top h3{-webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}
.prices_table .prices_list{ border:1px solid #e9e9e9;}
.prices_table .prices_list .prices_title{ padding:30px 15px 0; border-top:3px solid;}
.prices_table .prices_list .prices_title h3{margin:0; color:#222; font-size:20px;}
.prices_table .prices_list .prices_title p{margin:0;}
.prices_table .prices_list .the_price{ padding:10px 15px; color:#333; }
.prices_table .prices_list .the_price h4{margin:0 auto;color:#fff; font-size:30px; display:inline-block;border-radius:50%; width:100px;height:100px; line-height:100px;}
.prices_table .col-sm-3:hover .scaling_color, .prices_table .col-sm-4:hover .scaling_color{ width:60%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.prices_table .prices_list .the_price p{ line-height:1.6em;margin-top:15px;font-size:15px;color:#888888;}
.prices_table .prices_list li:first-child{ border-bottom:none;}
.prices_table .prices_list li{ padding:18px 15px; border-bottom:solid 1px #e9e9e9;}
.prices_table .prices_list .gray_bg{ background:#efefef;}
.prices_table .prices_list .sing_up{ padding:32px 15px;}
.prices_table .prices_list .sing_up a span{ padding:12px 30px;color:#fff; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s; border-radius:3px;}
.prices_table .prices_list .sing_up a:hover span{background:#555!important; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; transition: all 0.4s;}

/*--------- Faq Top ----------*/
.faq_top{ text-align:center;}
.faq_top .col-sm-4{ border:solid 1px #e5e5e5; padding:20px 30px; margin:0 1%;width:31%;}
.faq_top .icon-effect-3{width:120px; height:120px;}
.faq_top .fa{ font-size:50px;line-height:120px;}
.faq_top h3{color:#242424; margin:25px 0;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s; font-size:20px;}
.faq_top p{color:#8a8a8a; font-size:15px;}
.faq_top .col-sm-4:hover h3{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.faq_top .icon-effect-3:before, .faq_top .icon-effect-3:after{box-shadow: inset 10em 0 0 #242424,inset 0 10em 0 rgba(30, 140, 209, 0.2),inset -10em 0 0 rgba(30, 140, 209, 0.2),inset 0 -10em 0 rgba(30, 140, 209, 0.2);-webkit-transition: box-shadow 0.75s; -moz-transition: box-shadow 0.75s;-ms-transition: box-shadow 0.75s;transition: box-shadow 0.75s;}
.faq_top .col-sm-4:hover .fa{-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.faq_top .col-sm-4:hover .icon-effect-3:before, .faq_top .col-sm-4:hover .icon-effect-3:after{box-shadow: inset 0.86em 0 0 rgba(255, 0, 0, 0.5),inset 0 0.86em 0 rgba(252, 150, 0, 0.5),inset -0.86em 0 0 rgba(0, 255, 0, 0.5),inset 0 -0.86em 0 rgba(0, 150, 255, 0.5);}

/*---------Error Style ----------*/
.error_style .col-sm-6:first-child{border-left:solid 1px #d9d9d9;}
.error_style h3{ font-size:200px;text-align:center;}
.error_style p{ font-size:20px;color:#3d3d3d;text-align:center;}
.error_style h4{ font-size:20px;color:#3d3d3d;}
.error_style .error_text p{color:#989898; font-size:17px;text-align:right;}
.error_text{padding:20% 10% 0 0;}
.error_style input[type="text"] { background:url("/Portals/_default/Skins/ArzeSara.com/images/icon_search.png") no-repeat 6px center #f3f3f3 ; border: 1px solid #e5e5e5; font-size:14px; color: #333333; width: 80%; padding: 7px 8px 7px 30px;outline: none; margin-top:20px;}
.contact_text h4{ font-size:20px;color:#3d3d3d;}
.contact_text p{ font-size:15px;color:#797979;}
.contact_text a, .contact_text a:link, .contact_text a:active, .contact_text a:visited{color:#3d3d3d;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}

/*------------------ Contact Us Style -------------------*/
.contact_style h3{font-size:20px;color:#3b3b3b; margin-top:8px;}
.contact_style:hover h3{-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.contact_style p{font-size:15px;color:#797979; line-height:1.6em;}
.input_style{padding:10px 0;width:49%;margin-left:1%;float:right;}
.input_style input{background:#fff; border:solid 1px #bbb; width:98%;}
.input_style input[type="text"]{ padding:10px;outline:none;}
.textarea_style textarea{background:#fff;  width:98%;border:solid 1px #bbb;margin-top:5px;}
.textarea_style textarea[type="text"]{ padding:10px; min-height:150px;outline:none;}
.input_button { margin-top:30px;}
.input_button a, .input_button a:link, .input_button a:active, .input_button a:visited{padding:15px 25px; text-decoration:none; color:#fff; font-size:15px; -webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; border-radius:5px;}
.input_button a:hover{transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s;background:#333!important;}

/*------------------ Testimonials Style -------------------*/
.testimonial_list h3{text-align:center; font-size:27px; color:#424242;}
.testimonial_list:hover .scaling_color{ width:100%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}
.testimonial_text { border:solid 1px #e5e5e5; padding:15px 20px 10px; position:relative;margin-bottom:15px;}
.testimonial_text p{ line-height:1.6em;color:#a0a0a0; }
.testimonial_text:after{ content:" "; position:absolute;bottom:-20px;right:30px;border-right:solid 13px transparent;border-left:solid 18px transparent;border-top:solid 20px #e5e5e5;width:0;height:0;}
.testimonial_text:before{ content:" "; position:absolute;bottom:-18px;right:32px;border-right:solid 11px transparent;border-left:solid 16px transparent;border-top:solid 18px #fff;width:0;height:0; z-index:8;}
.testimonial_figure img { float:right;}
.testimonial_figure p{ color:#424242; margin-right:78px; line-height:50px;}
.testimonial_content{ border:solid 1px #e5e5e5; padding:15px 15px 80px 15px;}
.testimonial_content > p{ line-height:1.6em;color:#a0a0a0; }

/*------------------left Sidebar Top-------------------*/
/*Inner Top Style*/
.inner_top{ text-align:center;}
.inner_top h3{ font-size:37px;color:#2b2b2b;}
.inner_top p { font-size:17px;color:#666666; line-height:1.6em; padding:0 10%;}
.inner_top:hover .scaling_color{ width:100%;transition: width 1s ease 0s; -webkit-transition: width 1s ease 0s; -moz-transition: width 1s ease 0s;}

/*Side Category Style*/
.side_category ul li{padding:10px 0; border-bottom:solid 1px #ededde; position:relative; line-height:25px;}
.side_category ul li span{font-size:14px; float:left;width:25px;height:25px; background:#ebebeb; display:block; border-radius:50%; text-align:center}
.side_category ul li:hover span{color:#fff!important;}
.side_category ul li a{font-size:14px;color:#555;}
/*Side Ltems Style*/
.news_list img{float:right;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
.news_list ul li:hover img{-webkit-animation: swing ease-in-out 1 normal 1000ms;-moz-animation: swing ease-in-out 1 normal 1000ms;-ms-animation: swing ease-in-out 1 normal 1000ms;animation: swing ease-in-out 1 normal 1000ms;}
.news_list ul li{padding-bottom:10px;float:right;width:100%;}
.news_list ul li:hover h3{ color:#58b4e7;transition: all 0.4s ease 0s;  -webkit-transition:all 0.4s ease 0s;-moz-transition:all 0.4s ease 0s;}
.news_text h3{color:#7a7a7a;font-size:13px;margin:0 0 5px;}
.news_text p{color:#706f6f;font-size:13px; font-style:italic;}
.news_text{margin-right:70px;}
/*Sidebar Content Style*/
.sidebar_content p{ line-height:1.6em; color:#8a8989; font-size:15px;}
.sidebar_text { padding:25px 20px;border-right:solid 3px; background:#f9f9f9;}
.sidebar_text p{ font-style:italic;}
.sidebar_show img {padding:5px; border:solid 1px #e5e5e5; float:right;}
.sidebar_show p{ margin-right:245px;}
/*Side Tag*/
.side_tag a{display:block;padding:8px 13px;float:right;margin:0 0 13px 6px;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px; border:solid 1px #e5e5e5;}
.side_tag a, .side_tag a:link, .side_tag a:active, .side_tag a:visited{color:#7a7a7a;}
.side_tag a:hover{background:#333;color:#fff;-moz-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;}
/*Quote Content*/
.quote_content p{ line-height:1.6em; color:#8a8989; font-size:15px;}
.quote_text { padding:25px 20px;border-right:solid 3px; margin:0 5%;}
.quote_text p{ font-style:italic;}

/*---------- Sortable Portfolio Style -------------- */
.pg-img-wrapper{position:relative;overflow:hidden;margin:0 10px;}
.pg-img-wrapper .icon-circle { text-align:center;}
.pg-img-wrapper .fa{color:#fff; line-height:50px;}
.pg-img-wrapper p{padding:10px 5px 0;font-size:13px;}
.pg-img-wrapper figure{width:100%;margin:0;}
.pg-info{width:100%; height: 100%;text-align: right; padding:0; min-height: 35px; position: absolute; bottom: 0; right: 0; z-index: 10;filter: alpha(opacity=0); opacity: 0; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.5s ease;}
.pg-info:hover{ filter: alpha(opacity=85); opacity:0.85;}
.pg-info:hover .pg-details{bottom: 25%; bottom:calc(33% - 10px);}
.pg-details{text-align:center;padding:0;width:100%;position:absolute;bottom:10%;color:#fff;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;transition:all 0.3s ease;}
.pg-details h2{color:#fff!important;font-size:16px;font-weight: bold;text-align:center;}
.pg-categories{width: 100%; display: block;font-size: 10px; text-transform: uppercase; margin:0; color: #fff; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}
.icon-circle{width:50px;height:50px;background:#000;position: absolute; top: 10%; right: 40%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px;filter: alpha(opacity=70); opacity: 0.7;z-index: 100;background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.pg-info:hover .icon-circle{filter: alpha(opacity=80); opacity: 0.8; -webkit-transform: scale(1); -moz-transform: scale(1);transform: scale(1); top: 37%; top: calc(30% - 20px);}
.icon-one{width: 22px; height: 20px; background:url("/Portals/_default/Skins/ArzeSara.com/images/px_sprites_w.png") no-repeat -40px 0;display:inline-block; position:relative;top:15px;right:14px; }
.icon-two{width: 22px; height: 20px; background:url("/Portals/_default/Skins/ArzeSara.com/images/px_sprites_w.png") no-repeat -285px 0;display:inline-block; position:relative;top:15px;right:14px; }
.icon-three{width: 22px; height: 20px; background:url("/Portals/_default/Skins/ArzeSara.com/images/px_sprites_w.png") no-repeat -80px 0;display:inline-block; position:relative;top:15px;right:14px; }
.icon-four{width: 22px; height: 20px; background:url("/Portals/_default/Skins/ArzeSara.com/images/px_sprites_w.png") no-repeat -368px 0;display:inline-block; position:relative;top:15px;right:14px; }
.icon-five{width: 22px; height: 20px; background:url("/Portals/_default/Skins/ArzeSara.com/images/px_sprites_w.png") no-repeat -408px 0;display:inline-block; position:relative;top:15px;right:14px; }
.icon-circle2{width:50px;height:50px;background:#000;position: absolute; top: 30%; right: 45%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px;  filter: alpha(opacity=70); opacity: 0.7; z-index: 100;background: rgba(0, 0, 0, 0.7);padding: 0;-webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.pg-details2{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 40%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.pg-details2 h2{color:#fff!important;font-size:25px;font-weight: bold;text-align:center;}
.pg-categories2{width: 100%; display:block;font-size: 18px; text-transform: uppercase; margin:0; color: #fff; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}
.project_skills{width:100%;}
.icon-circle3{width:50px;height:50px;background:#000;position: absolute; top:30%; right: 42%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px;  filter: alpha(opacity=70); opacity: 0.7;z-index: 100;background: rgba(0, 0, 0, 0.7);padding: 0;-webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease; }
.pg-details3{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 30%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details3 h2{color:#fff!important;font-size:20px;font-weight: bold;text-align:center;}
.pg-categories2{width: 100%; display: block; font-size:15px;text-transform: uppercase; margin:0; color: #fff; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}
.pg-info4{width:100%;height:100%;text-align:right;padding:0;min-height:35px;position: absolute;bottom: 0;right:0;z-index:10;filter: alpha(opacity=0);opacity:0;}
.pg-info4:hover{ filter: alpha(opacity=85); opacity:0.85;}
.pg-info4:hover .pg-details4{bottom: 25%; bottom: calc(33% - 10px);}
.pg-info4:hover .icon-circle4{filter: alpha(opacity=80); opacity: 0.8;-webkit-transform: scale(1); -moz-transform: scale(1);transform: scale(1); top: 30%; top: calc(20% - 10px);}
.icon-circle4{width:50px;height:50px;background:#000;position: absolute; top:25%; right: 40%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px;filter: alpha(opacity=70);opacity: 0.7;z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0; -webkit-transition: all 00.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.pg-details4{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 28%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease;}
.pg-details4 h2{color:#fff!important;font-size:16px;font-weight: bold;text-align:center;}
.pg-categories4{width: 100%; display: block; font-size:14px; text-transform: uppercase;margin:0; color: #fff; color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}

.icon-circle5{width:50px;height:50px;background:#000;position: absolute; top:30%; right: 42%;  -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px;  filter: alpha(opacity=70); opacity: 0.7;z-index: 100; background: rgba(0, 0, 0, 0.7);padding: 0;-webkit-transition:all 00.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease; }
.pg-details5{text-align: center; padding: 0; width: 100%; position: absolute; bottom: 30%; color: #ffffff; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.pg-details5 h2{color:#fff!important;font-size:17px;font-weight: bold;text-align:center;}
.pg-categories5{width: 100%; display: block;font-size: 13px; text-transform: uppercase;margin:0;color: #fff;color: rgba(255, 255, 255, 0.77); letter-spacing: 1px;margin-top:-10px;}

/*---------- Project List -------------- */	
.project_page{height:auto;overflow:hidden;padding:0;width:100%;}
.project_contain{margin:20px 0;float:right;}
.project_pic{display:block;float:right;width:60%;-webkit-transition: all 0.3s ease-in 0s; -moz-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;}
.project_pic:hover img{filter:Alpha(Opacity=80);opacity:0.8;}
.project_list { padding:0 15px 0 0!important;float:right;width:35%;}
.project_page h3{font-size:25px;-webkit-transition: all 0.8s ease-in 0s;-moz-transition: all 0.8s ease-in 0s;transition: all 0.8s ease-in 0s;color:#000;}
.project_page h3:hover{color:#d35a50;}
.project_list .categories {margin-bottom:20px;}
.project_list .categories a{ color:#999;}
.project_list .intro { font-size:12px; margin-bottom:20px; margin-top:35px;}
.project_list a.read-more { font-size:13px; height:30px;line-height:30px;display:block;text-align:center; background:#bbb; color:#fff;  transition: all 0.5s ease-in 0s; -webkit-transition: all 0.5s ease-in 0s; -moz-transition: all 0.5s ease-in 0s;}
.standard_content p{ font-size:14px; line-height:1.6em;}

/*------------------ Gallery Page -------------------*/
.gallery_page{width:100%;}
.gallery_box_outer{  min-height:160px; margin-bottom:5px;width:24%;float:right;padding:1% 1%;}
.gallery_page .pg-img-wrapper{position:relative;overflow:hidden;margin:10px 0;}

/*------------------Bootstrap Reset -------------------*/
.page_number_style{ text-align:center;}
.page_number_style .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{color:#fff!important;}

/* Isotope Example Options */
#options ul li{padding:0!important;}
#options ul li a{padding:10px 20px!important;}
#options ul li a:hover{color:#fff!important;}

/*--------- Animation----------*/
.animation_style img{ float:right;margin-left:20px;}
.animation_style p{ font-size:13px; line-height:1.7em;}
.animation_style{ margin:40px 0; border-bottom:1px solid #e5e5e5; padding-bottom:40px; overflow:hidden;}

/*--------- CSS Reset for Tablet ----------*/
@media handheld, only screen and (max-width: 1140px){
/* Footer About */
.footer_about .Social-Links a{margin:0;}

/* Footer Contact */
.footer_contact .fa{padding:4px 0 10px 0;}
.footer_contact p{margin:0 20px 10px 0;}
.footer_input input{width:60%;} 
.footer_input button{padding:0 5px;width:40%; } 

/* Footer Tag */
.footer_tag a, .footer_tag a:link, .footer_tag a:active, .footer_tag a:visited{padding:5px 10px;margin:0 0 7px 2px;}

/* carousel 4 items */
.carousel4 ul li span{font-size:13px;color:#464646;}

/* carousel 3 items */
a.carousel_prev3{top:25%;}
a.carousel_next3{top:25%;}

/* Togglable Tabs */
.nav-tabs > li {float:none!important;}

/*--------- Rotate Effect ----------*/
.rotate_effect h2{ font-size:14px;}
.rotate_effect p{display:none;}
.rotate_effect a.info{margin-top:20px;}

/*--------- Main Top ----------*/
.main_top h3, .main_top p{font-size:12px;}

/*--------- Amazing Blog Style ----------*/
.blog_content h4{font-size:13px;}

/*--------- Main Bottom ----------*/
.main_bottom a, .main_bottom a:link , .main_bottom a:active, .main_bottom a:visited {float:right;margin:20px 0;}

/*---------Rising Style---------------*/
.rising02_position{ top:-30px; right:0;}
.rising03_position{top:-30px; left:0; }
.rising04_position{bottom:30px; right:0;}
.rising05_position{bottom:0; left:0;}
.scale_effect .scale_title{ display:none;}

/* Footer Contact */
.footer_contact .fa{ color:#fff;padding:4px 0 10px 5px;float:right; font-size:13px;}
.footer_contact p{margin:0;}

/*---------Footer Post style ----------*/
.footer_post ul li{font-size:13px; }

/*------------------ Home Version 3 -------------------*/
.home3_top .fa{ font-size:28px;}
.home3_top h3{ font-size:18px;}

/*--------- carousel 3 items ----------*/
a.carousel_prev3{right:-15px;top:28%;}
a.carousel_next3{left:-15px;top:28%;}
.carousel3 h3{font-size:28px;}
.carousel3 h4{font-size:16px;}
.carousel3 p{font-size:14px;line-height:1.5em;}

/*--------- Caption Style ----------*/
.caption_style h3{ font-size:33px;}
.caption_style p{ font-size:18px;}

/*------------------ Home Version 5 -------------------*/
/*--------- Figures Style----------*/
.flip_info_back h4{ margin-top:20px;}
.figures_style .figures_text h3{font-size:18px;}
.figures_style .figures_text p{font-size:14px; }
.figures_style .figures_bg{min-height:250px; background-image:none;}
.figures_style .skin_width .figures_content01, .figures_style .skin_width .figures_content02, .figures_style .skin_width .figures_content03, .figures_style .skin_width .figures_content04{top:40px;padding:5px;width: 150px;height:150px; right:0; border:none;}
.flip_img_1, .flip_img_2, .flip_img_3, .flip_img_4{width: 150px;height:150px;}

/*---------Error Style ----------*/
.error_style h3{ font-size:100px;}

/*--------- Picture show ----------*/
.pic_show .scale_icon{top: 10px;}

}

/*--------- CSS Reset for Mobile ----------*/
@media handheld, only screen and (max-width: 767px) {
.top_contact{display:none;}
/* Footer About */
.footer_about .Social-Links a{margin:5px;}

/* Footer Tag */
.footer_tag a, .footer_tag a:link, .footer_tag a:active, .footer_tag a:visited{padding:5px 20px;margin:0 0 7px 8px;}

/* Togglable Tabs Style */
.nav-tabs li { float:none; width:100%;}
.nav-tabs li a { border:1px solid #CECECE; margin-left:0;}

.carousel4 h3{font-size:18px;}

/*--------- Home Page Top Styles ----------*/
.main_top .col-sm-3{width:46%;float:right;margin:1% 2% 3%;}

/*--------- Amazing Blog Style ----------*/
.amazing_blog .col-sm-4{width:48%;float:right;margin:1%;}
.blog_content p{display:none;}

/*------------------ Revolve Content Page -------------------*/
.revolve_item2{margin-left:50px;}
.revolve_item3{margin-right:50px;}
.revolve_item5{margin:0 86px;}
.revolve_bias1, .revolve_bias2, .revolve_bias3, .revolve_bias4, .revolve_bias5{display:none;}

/*------------------ Rising Position Page -------------------*/
.rising02_position, rising03_position, rising04_position, rising05_position{display:none;}

/*------------------ Home2 Top Page -------------------*/
.services_icon .col-sm-4{float:right;}

/*--------Move Number---------------*/
.move_numb{text-align:center;}
.move_numb .col-sm-3{width:46%;margin:2%;float:right;}

/*--------Article Style---------------*/
.article_style h3{ font-size:20px;}
.article_style .btn_effect{margin:0 25px 0 20%;}
.context_black{margin:0 28px 0 20%;}

/*--------- Fancybox Style ----------*/
.fancybox_style ul li {margin:0 0 5px 5px!important;}

/*--------- Radsphere Style ----------*/
.radsphere{top:200px;}
.radsphere .fa{ font-size:28px;}
.radsphere_wrapper{ text-align:center;min-height:400px; position:relative;}
.radsphere li{-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);transition: all 1s ease; text-align:center;}
.radsphere a{width: 80px;height: 80px;}
.radsphere .selected + ul > li:nth-child(1){-webkit-transform: rotate(144deg) translateX(20px) translateY(102px);transform: rotate(144deg) translateX(140px) translateY(0);-moz-transform: rotate(144deg) translateX(140px) translateY(0);}
.radsphere .selected + ul > li:nth-child(1) > a{-webkit-transform: rotate(-144deg);transform: rotate(-144deg) translateY(-102px);-moz-transform: rotate(-144deg) translateY(-102px);}
.radsphere .selected + ul > li:nth-child(2){-moz-transform: rotate(216deg) translateX(140px);-webkit-transform: rotate(210deg) translateX(110px) translateY(70px);transform: rotate(223deg) translateX(140px);}
.radsphere .selected + ul > li:nth-child(2) > a{-moz-transform: rotate(-223deg);-webkit-transform: rotate(-210deg);transform: rotate(-223deg);}
.radsphere .selected + ul > li:nth-child(3){-moz-transform: rotate(210deg) translateX(-80px) translateY(-100px);-webkit-transform: rotate(208deg) translateX(85px) translateY(195px);transform: rotate(210deg) translateX(-30px) translateY(-50px);}
.radsphere .selected + ul > li:nth-child(3) > a{-moz-transform: rotate(-208deg);-webkit-transform: rotate(-208deg);transform: rotate(-208deg) translateY(-260px);}
.radsphere .selected + ul > li:nth-child(4){-moz-transform: rotate(290deg) translateX(120px) translateY(0);-webkit-transform: rotate(330deg) translateX(100px) translateY(-150px);transform: rotate(285deg) translateX(130px) translateY(0);}
.radsphere .selected + ul > li:nth-child(4) > a{-moz-transform: rotate(-290deg);-webkit-transform: rotate(-330deg);transform: rotate(-285deg);}
.radsphere .selected + ul > li:nth-child(5){-moz-transform: rotate(348deg) translateX(140px);-webkit-transform: rotate(325deg) translateX(90px) translateY(-40px);transform: rotate(335deg) translateX(100px)}
.radsphere .selected + ul > li:nth-child(5) > a{-moz-transform: rotate(-348deg);-webkit-transform: rotate(-325deg);transform: rotate(-335deg);}
.radsphere .radsphere_color{ width:100px; height:100px;}

/*--------- Figures Style----------*/
.figures_style .figures_bg{min-height:350px;}

/*---------Future Style----------*/
.feature_list1{ text-align:right;}

/*------------------ Home Version 5 -------------------*/
/*--------- Figures Style----------*/
.figures_style{ padding:0 5%;}
.figures_style .skin_width .figures_content01{ top:100px;width:150px;height:150px;border:none;}
.figures_style .skin_width .figures_content02{top:-50px;right:200px;width:150px;height:150px; border:none;}
.figures_style .skin_width .figures_content03{ top:30px;right:0;width: 150px;height:150px; border:none;}
.figures_style .skin_width .figures_content04{top:-120px;right:200px;width: 150px;height:150px; border:none;}
.flip_img_1, .flip_img_2, .flip_img_3, .flip_img_4{width: 150px;height:150px;}

/*--------- Time style ----------*/
.time_style{ padding-bottom:100px;}
.time_style .time_text {width:100%; text-align:center; margin:0;}
.time_border, .time_style .time_text_odd:after, .time_style .time_text_odd:before, .time_style .time_text_even:after, .time_style .time_text_even:before{display:none;}

/*--------- Scale Back items Page 4----------*/
.pic_show .scale_icon{top: 30px;}
.pic_show .col-sm-4{width:46%;margin:2%;float:right;}

/*------------------ Services Top Page -------------------*/
.services_top{ text-align:center;}
.services_top .col-sm-4{ margin-bottom:20px;}

/*--------- Faq Top----------*/
.faq_top .col-sm-4{ width:31%; margin:1%; float:right;}
.faq_top .icon-effect-3{width:60px; height:60px;}
.faq_top .fa{ font-size:30px;line-height:60px;}

/*--------- Testimonial Text----------*/
.testimonial_figure { margin-bottom:40px;}

/*--------- Prices Style----------*/
.prices_table .col-sm-4, .prices_table .col-sm-3{margin-bottom:25px;}
}

@media handheld, only screen and (max-width: 560px) {
/*--------- Amazing Blog Style ----------*/
.amazing_blog .col-sm-4{width:70%;float:right;margin:2%;}
.blog_content{padding:10px 0 15px;}
.rotate_effect a.info{display:none;}
.context_black{margin:0 10px 10px 20px;}
.scale_hover{ display:none;}

/*------------------ Revolve Content Page -------------------*/
.revolve_item5{background:#aac303;display:inline-block; margin:0 10px;width:90px;height:90px;}
.revolve_item5 .fa{line-height:90px; font-size:28px; }
.revolve_item5 h4{right:10px;}
.revolve_list2{margin:30px 0 50px;}
}

/*--------- Social Icon Group 1 ----------*/
.socialicons  { margin:10px 0 ;}
.iconFacebook{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat 0 0;display:inline-block; padding:0;margin:0 1px;}
.iconPinterest{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -29px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTwitter{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -58px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGoogle{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -87px 0;display:inline-block; padding:0;margin:0 1px;}
.iconRSS{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -116px 0;display:inline-block; padding:0;margin:0 1px;}
.iconVimeo{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -145px 0;display:inline-block; padding:0;margin:0 1px;}
.iconEvernote{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -174px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDribbble{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -203px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTumblr{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -232px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBehance{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -261px 0;display:inline-block; padding:0;margin:0 1px;}
.iconStumbleUpon{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -290px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDropbox{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -319px 0;display:inline-block; padding:0;margin:0 1px;}
.iconSoundCloud{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -348px 0;display:inline-block; padding:0;margin:0 1px;}
.iconPicasa{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -377px 0;display:inline-block; padding:0;margin:0 1px;}
.iconLastfm{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -406px 0;display:inline-block; padding:0;margin:0 1px;}
.iconForrst{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -435px 0;display:inline-block; padding:0;margin:0 1px;}
.iconFlicr{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -464px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDeviantArt{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -493px 0;display:inline-block; padding:0;margin:0 1px;}
.iconLinkedIn{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -522px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBlogger{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -551px 0;display:inline-block; padding:0;margin:0 1px;}
.iconInstagram{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -580px 0;display:inline-block; padding:0;margin:0 1px;}
.iconYahoo{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -609px 0;display:inline-block; padding:0;margin:0 1px;}
.iconYouTube{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -638px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGrooveshark{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -667px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDigg{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -696px 0;display:inline-block; padding:0;margin:0 1px;}
.iconSkype{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -725px 0;display:inline-block; padding:0;margin:0 1px;}
.iconShareThis{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -754px 0;display:inline-block; padding:0;margin:0 1px;}
.iconWordPress{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -783px 0;display:inline-block; padding:0;margin:0 1px;}
.iconKickstarter{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -812px 0;display:inline-block; padding:0;margin:0 1px;}
.iconBebo{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -841px 0;display:inline-block; padding:0;margin:0 1px;}
.iconZerply{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -870px 0;display:inline-block; padding:0;margin:0 1px;}
.iconAmazon{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -899px 0;display:inline-block; padding:0;margin:0 1px;}
.iconMyspace{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -928px 0;display:inline-block; padding:0;margin:0 1px;}
.iconWikipedia{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -957px 0;display:inline-block; padding:0;margin:0 1px;}
.iconTechnorati{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -986px 0;display:inline-block; padding:0;margin:0 1px;}
.iconAddThis{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -1015px 0;display:inline-block; padding:0;margin:0 1px;}
.iconDelicious{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -1044px 0;display:inline-block; padding:0;margin:0 1px;}
.iconXing{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -1073px 0;display:inline-block; padding:0;margin:0 1px;}
.iconQuora{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -1102px 0;display:inline-block; padding:0;margin:0 1px;}
.iconGitHub{width:28px;height:28px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons.png") no-repeat -1131px 0;display:inline-block; padding:0;margin:0 1px;}

/*---------  Social Icon Group 1 Hover ---------*/
a.iconFacebook:hover{ background-color:#5d82d1;background-position: 0 -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconPinterest:hover{background-color:#e13138;background-position: -29px -28px;-webkit-transition:all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTwitter:hover{ background-color:#40bff5;background-position: -58px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGoogle:hover{ background-color:#eb5e4c;background-position: -87px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconRss:hover{ background-color:#faa33d;background-position: -116px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconVimeo:hover{ background-color:#35c6ea;background-position: -145px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconEvernote:hover{background-color:#9acf4f;background-position:-174px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDribbble:hover{background-color:#f7659c;background-position:-203px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTumblr:hover{ background-color:#426d9b;background-position:-232px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBehance:hover{ background-color:#1879fd;background-position:-261px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconStumbleUpon:hover{background-color:#ff5c30;background-position: -290px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDropbox:hover{background-color:#17a3eb;background-position: -319px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconSoundCloud:hover{background-color:#ff7e30;background-position:-348px -28px;-webkit-transition:all 0.2s ease 0s; -moz-transition:all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconPicasa:hover{ background-color:#9eb5b6;background-position: -377px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconLastfm:hover{ background-color:#f34320;background-position: -406px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconForrst:hover{ background-color:#45ad76;background-position: -435px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconFlicr:hover{ background-color:#ff48a3;background-position: -464px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDeviantArt:hover{background-color:#6a8a7b;background-position:-493px -28px;-webkit-transition:all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconLinkedIn:hover{background-color:#238cc8;background-position: -522px -28px;-webkit-transition: all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBlogger:hover{ background-color:#ff9233;background-position:-551px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconInstagram:hover{background-color:#548bb6;background-position:-580px -28px;-webkit-transition: all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconYahoo:hover{ background-color:#ab47ac;background-position: -609px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconYouTube:hover{background-color:#ef4e41;background-position:-638px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGrooveshark:hover{background-color:#ffb21d;background-position:-667px -28px;-webkit-transition:all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s;transition: all 0.2s ease 0s;}
a.iconDigg:hover{ background-color:#75788d;background-position: -696px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconSkype:hover{ background-color:#13c1f3;background-position: -725px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconShareThis:hover{background-color:#25a774;background-position:-754px -28px;-webkit-transition:all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconWordPress:hover{background-color:#2592c3;background-position:-783px -28px;-webkit-transition:all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconKickstarter:hover{background-color:#8cd049;background-position:-812px -28px;-webkit-transition:all 0.2s ease 0s;-moz-transition:all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconBebo:hover{ background-color:#ee3849;background-position: -841px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconZerply:hover{ background-color:#ff5c30;background-position: -870px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconAmazon:hover{ background-color:#ff5c30;background-position: -899px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconMyspace:hover{ background-color:#ff5c30;background-position:-928px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconWikipedia:hover{background-color:#ff5c30;background-position:-957px -28px;-webkit-transition:all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconTechnorati:hover{background-color:#ff5c30;background-position:-986px -28px;-webkit-transition: all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s;transition: all 0.2s ease 0s;}
a.iconAddThis:hover{background-color:#ff5c30;background-position:-1015px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconDelicious:hover{background-color:#ff5c30;background-position: -1044px -28px;-webkit-transition:all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s;transition: all 0.2s ease 0s;}
a.iconXing:hover{ background-color:#ff5c30;background-position: -1073px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconQuora:hover{ background-color:#ff5c30;background-position: -1102px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}
a.iconGitHub:hover{background-color:#ff5c30;background-position:-1131px -28px;-webkit-transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; transition: all 0.2s ease 0s;}

/*---------  Social Icon Group 2 ----------*/
.socialicons2{  padding-top:20px;}
.socialicons2 a{margin:5px 0 0 8px;padding:0;}

.iconSkype2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicon2.png") no-repeat -10px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconLast_fm2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconFacebook2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconWordpress2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconVimeo_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRSS2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRevision2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -10px;display:inline-block;padding:0;margin:0 3px;}
.iconRdio2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -10px;display:inline-block;padding:0;margin:0 3px;}

.iconEvernote2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconEmber2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconDropbox2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconAim2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -43px;display:inline-block;padding:0;margin:0 3px;}
.icon500px_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -43px;display:inline-block;padding:0;margin:0 3px;}
.icon500px2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconWikipedia2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -43px;display:inline-block;padding:0;margin:0 3px;}
.iconVkontakte2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -43px;display:inline-block;padding:0;margin:0 3px;}

.iconTechnorati2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconStumbleupon2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSquarespace2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSpotify2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSoundcloud2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconSkype_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconPinterest2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -76px;display:inline-block;padding:0;margin:0 3px;}
.iconPicasa2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -76px;display:inline-block;padding:0;margin:0 3px;}

.iconMail_ru2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconMail2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconLinkedin_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconLinkedin2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGowalla2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle_alt_22{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -109px;display:inline-block;padding:0;margin:0 3px;}
.iconGoogle2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -109px;display:inline-block;padding:0;margin:0 3px;}

.iconFormspring2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconFlickr2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDribbble2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDigg2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDeviantart_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDeviantart2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDesignmoo2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -142px;display:inline-block;padding:0;margin:0 3px;}
.iconDelicious2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -142px;display:inline-block;padding:0;margin:0 3px;}

.iconYoutube2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconYahoo2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconWordpress_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconGrooveshark2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconTumblr2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconMyspace2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconForrst2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -175px;display:inline-block;padding:0;margin:0 3px;}
.iconAsk_fm2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -175px;display:inline-block;padding:0;margin:0 3px;}

.iconInstagram_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconInstagram2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconVimeo2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -76px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconTwitter2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -109px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconMyspace_alt2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -142px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconPaypal2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -175px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconGmail2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -208px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconFoursquare2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -241px -208px;display:inline-block;padding:0;margin:0 3px;}
.iconBlogger2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -10px -241px;display:inline-block;padding:0;margin:0 3px;}
.iconBehance2{width:30px;height:30px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons2.png") no-repeat -43px -241px;display:inline-block;padding:0;margin:0 3px;}

/*---------  Social Icon Group 3 ----------*/
.socialicons3 {  padding-top:15px;}
.socialicons3 a{margin:0;padding:5px 0 0 8px;}

.iconFacebook3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -4px;display:inline-block; padding:0;margin:0;}
.iconPinterest3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -4px;display:inline-block; padding:0;margin:0;}
.iconTwitter3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -4px;display:inline-block; padding:0;margin:0;}
.iconGoogle3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -4px;display:inline-block; padding:0;margin:0;}
.iconRss3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -4px;display:inline-block; padding:0;margin:0;}

.iconVimeo3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -45px;display:inline-block;padding:0;margin:0;}
.iconEvernote3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -45px;display:inline-block;padding:0;margin:0;}
.iconDribbble3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -45px;display:inline-block;padding:0;margin:0;}
.iconTumblr3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -45px;display:inline-block;padding:0;margin:0;}
.iconBehance3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -45px;display:inline-block;padding:0;margin:0;}
 
.iconStumbleUpon3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -86px;display:inline-block;padding:0;margin:0;}
.iconDropbox3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -86px;display:inline-block;padding:0;margin:0;}
.iconSoundCloud3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -86px;display:inline-block;padding:0;margin:0;}
.iconPicasa3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -86px;display:inline-block;padding:0;margin:0;}
.iconLastfm3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -86px;display:inline-block;padding:0;margin:0;}

.iconForrst3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -128px;display:inline-block; padding:0;margin:0;}
.iconFlicr3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -128px;display:inline-block; padding:0;margin:0;}
.iconDeviantArt3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -128px;display:inline-block; padding:0;margin:0;}
.iconLinkedIn3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -128px;display:inline-block; padding:0;margin:0;}
.iconBlogger3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -128px;display:inline-block; padding:0;margin:0;}

.iconInstagram3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -169px;display:inline-block;padding:0;margin:0;}
.iconYahoo3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -169px;display:inline-block;padding:0;margin:0;}
.iconYouTube3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -169px;display:inline-block;padding:0;margin:0;}
.iconGrooveshark3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -169px;display:inline-block;padding:0;margin:0;}
.iconDigg3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -169px;display:inline-block;padding:0;margin:0;}

.iconSkype3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -211px;display:inline-block;padding:0;margin:0;}
.iconShareThis3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -211px;display:inline-block;padding:0;margin:0;}
.iconWordPress3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -211px;display:inline-block;padding:0;margin:0;}
.iconKickstarter3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -211px;display:inline-block;padding:0;margin:0;}
.iconBebo3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -211px;display:inline-block;padding:0;margin:0;}

.iconZerply3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -252px;display:inline-block; padding:0;margin:0;}
.iconAmazon3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -252px;display:inline-block; padding:0;margin:0;}
.iconMyspace3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -252px;display:inline-block; padding:0;margin:0;}
.iconWikipedia3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -252px;display:inline-block; padding:0;margin:0;}
.iconTechnorati3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -252px;display:inline-block; padding:0;margin:0;}

.iconAddThis3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -5px -293px;display:inline-block;padding:0;margin:0;}
.iconDelicious3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -46px -293px;display:inline-block;padding:0;margin:0;}
.iconXing3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -87px -293px;display:inline-block;padding:0;margin:0;}
.iconQuora3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -128px -293px;display:inline-block;padding:0;margin:0;}
.iconGitHub3{width:28px;height:29px;background:url("/Portals/_default/Skins/ArzeSara.com/images/socialicons3.png") no-repeat -169px -293px;display:inline-block;padding:0;margin:0;}

/*--------- Animation----------*/
.animated.fadeInLeft1{-webkit-animation:fadeInRightBig 300ms .1s ease both;-moz-animation:fadeInRightBig 300ms .1s ease both;animation:fadeInRightBig 300ms .1s ease both;}
.animated.fadeInLeft2{-webkit-animation:fadeInRightBig 600ms .1s ease both;-moz-animation:fadeInRightBig 600ms .1s ease both;animation:fadeInRightBig 600ms .1s ease both;}
.animated.fadeInLeft3{-webkit-animation:fadeInRightBig 900ms .1s ease both;-moz-animation:fadeInRightBig 900ms .1s ease both;animation:fadeInRightBig 900ms .1s ease both;}
.animated.fadeInLeft4{-webkit-animation:fadeInRightBig 1200ms .1s ease both;-moz-animation:fadeInRightBig 1200ms .1s ease both;animation:fadeInRightBig 1200ms .1s ease both;}
@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-1000px)}
100%{opacity:1;-webkit-transform:translateX(0)}}
@-moz-keyframes fadeInLeft{0%{opacity:0;-moz-transform:translateX(-1000px)}
100%{opacity:1;-moz-transform:translateX(0)}}	
.visible{opacity:1;}

.animation.bounceIn{opacity:1;}
.animated.scaleUp1{-webkit-animation:scaleUp 1s .1s ease both;-moz-animation:scaleUp 1s .1s ease both;animation:scaleUp 1s .1s ease both;}
.animated.scaleUp2{-webkit-animation:scaleUp 1s 400ms ease both;-moz-animation:scaleUp 1s 400ms ease both;animation:scaleUp 1s 400ms ease both;}
.animated.scaleUp3{-webkit-animation:scaleUp 1s 700ms ease both;-moz-animation:scaleUp 1s 700ms ease both;animation:scaleUp 1s 700ms ease both;}
.animated.scaleUp4{-webkit-animation:scaleUp 1s 1s ease both;-moz-animation:scaleUp 1s 700ms ease both;animation:scaleUp 1s 700ms ease both;}
@keyframes scaleUp{0%{opacity:0;transform:scale(.8);}
100%{opacity:1;transform:scale(1);}}@-moz-keyframes scaleUp{0%{opacity:0;-moz-transform:scale(.8);}
100%{opacity:1;-moz-transform:scale(1);}}@-webkit-keyframes scaleUp{0%{opacity:0;-webkit-transform:scale(.8);}
100%{opacity:1;-webkit-transform:scale(1);}}@-ms-keyframes scaleUp{0%{opacity:0;-ms-transform:scale(.8);}
100%{opacity:1;-ms-transform:scale(1);}}@-o-keyframes scaleUp{0%{opacity:0;-o-transform:scale(.8);}
100%{opacity:1;-o-transform:scale(1);}}.animated.scaleUp{-webkit-animation-name:scaleUp;-moz-animation-name:scaleUp;-o-animation-name:scaleUp;animation-name:scaleUp;}

.animation.periodic{opacity:1;}
.animated.periodic1{-webkit-animation: fadeInUp 300ms linear 100ms both;-moz-animation:fadeInUp 300ms linear 100ms both;animation:fadeInUp 300ms linear 100ms both;}
.animated.periodic2{-webkit-animation: fadeInUp 300ms linear 400ms both;-moz-animation:fadeInUp 300ms linear 400ms both;animation:fadeInUp 300ms linear 400ms both;}
.animated.periodic3{-webkit-animation: fadeInUp 300ms linear 800ms both;-moz-animation:fadeInUp 300ms linear 800ms both;animation:fadeInUp 300ms linear 800ms both;}
.animated.periodic4{-webkit-animation: fadeInUp 300ms linear 1200ms both;-moz-animation:fadeInUp 300ms linear 1200ms both;animation:fadeInUp 300ms linear 1200ms both;}
.animated.periodic5{-webkit-animation: fadeInUp 300ms linear 1600ms both;-moz-animation:fadeInUp 300ms linear 1600ms both;animation:fadeInUp 300ms linear 1600ms both;}
.animated.periodic6{-webkit-animation: fadeInUp 300ms linear 2000ms both;-moz-animation:fadeInUp 300ms linear 2000ms both;animation:fadeInUp 300ms linear 2000ms both;}
.animated.periodic7{-webkit-animation: fadeInUp 300ms linear 2400ms both;-moz-animation:fadeInUp 300ms linear 2400ms both;animation:fadeInUp 300ms linear 2400ms both;}
.animated.periodic8{-webkit-animation: fadeInUp 300ms linear 2800ms both;-moz-animation:fadeInUp 300ms linear 2800ms both;animation:fadeInUp 300ms linear 2800ms both;}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/images/fancybox_sprite.png");
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url("/Portals/_default/Skins/ArzeSara.com/images/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url("/Portals/_default/Skins/ArzeSara.com/images/blank.gif"); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url("/Portals/_default/Skins/ArzeSara.com/images/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url("/Portals/_default/Skins/ArzeSara.com/images/retina/fancybox_sprite@2x.png");
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url("/Portals/_default/Skins/ArzeSara.com/images/retina/fancybox_loading@2x.gif");
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}
/**** Isotope styles ****/
.element {
  float: left;
  overflow: hidden;
  position: relative;
  color: #222;
}

.two_columns{
  width:49.9%; padding:2%; min-height:447px;
}
 
.three_columns{
 width:33.3%; padding:1%; min-height:324px;
}

.four_columns{
 width:24.9%; padding:1%; min-height:234px;
}


.isotope_img img {
	position: relative;
	height: auto;
    width: 100%;
	opacity: 0.88;
	
}
.isotope_img img:hover {
	opacity:1;
}
.strip {
    display: block;
	background: none repeat scroll 0 0 #FF6812;
    height: 3px;
    width: 50px;
}
/**** Example Options ****/

#options ul {
    padding-top:15px;
    list-style: none outside none;
    margin: 0 auto 30px;
    max-width: 100% !important;
    position: relative;
    text-align: center;
}

#options ul li {
    display: inline-block;
	padding:8px 20px;
	margin:3px 2px;
	-moz-transition:background 1s ease;
	-webkit-transition:background 1s ease;
	transition:background 1s ease;
}
#options ul li:hover {
	background:#555;
}

#options ul li:last-child {border-right:none;}

#options ul li a {
    border-bottom: medium none !important;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#options ul li a { text-decoration:none;}

#options a {
    display: block;
    font-size: 12px;
    line-height: 22px;
    padding: 0 5px;
    text-transform: uppercase;
}


@media handheld, only screen and (max-width: 1140px) {
.element{ width:265px;}
.two_columns{ width:auto; min-height:234px;}
.three_columns{ width:auto; min-height:234px;}
.four_columns{ width:auto; min-height:234px;}

}
/* Unoslide container */

.unoslider { list-style: none; position: relative; max-width:1600px; height:450px; margin: 0 auto; padding: 0; }
.unoslider li { display: none; position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
/* Timebar */
.unoslider_timer {width: 0%; height: 3px; position: absolute; left: 0; bottom: 0; opacity: 0.7; z-index: 6!important; }
/* Progress bar preloader container */
.unoslider_preloader { background: rgba(255, 255, 255, 0.5); }
/* progress bar preloader */
.unoslider_preloader .unoslider_progress { width: 30%; height: 5px; margin: 0 auto; border-top: 1px solid #7c7c7c; border-bottom: 1px solid #f1f1f1; border-left: 1px solid #949494; border-right: 1px solid #949494; background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9a9a9a), color-stop(100%, #b3b3b3)); background: -webkit-linear-gradient(#9a9a9a, #b3b3b3); background: -moz-linear-gradient(#9a9a9a, #b3b3b3); background: -o-linear-gradient(#9a9a9a, #b3b3b3); background: -ms-linear-gradient(#9a9a9a, #b3b3b3); background: linear-gradient(#9a9a9a, #b3b3b3); }
/* progress bar fill */
.unoslider_preloader .unoslider_progress span { display: block; height: 100%; background: #66cccc; }
/* Spinner preloader */
.unoslider_spinner { background: url("/Portals/_default/Skins/ArzeSara.com/images/spinner.gif") white center center no-repeat; }
/* Hand cursor over navigation elements */
.unoslider_navigation { cursor: pointer; }
/* Tooltip panel */
.unoslider_caption {position: absolute; left:20px; bottom:20px; width:350px; padding:15px; background: #f5f5f5; background: rgba(255,255,255,.7); border: none; font-size: 17px;font-family: "Noto Sans", Helvetica, Verdana, sans-serif; color: #222; color: rgba(0,0,0,.9); text-align: left; line-height:1.5em; -moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px;}
.unoslider_caption h2 { text-align: center; margin: 0; padding: 0; font-size: 22px; }
.unoslider_caption h3 { text-align: center; margin: 0; padding: 0; font-size: 17px; color: #333333; }
/* play, pause, previous and next elements */
.unoslider_pause, .unoslider_play, .unoslider_left, .unoslider_right { text-indent: 110%; white-space: nowrap; overflow: hidden; position: absolute; display: block; background: url("/Portals/_default/Skins/ArzeSara.com/images/ribbon.png") no-repeat; }
/* play and pause elements */
.unoslider_pause, .unoslider_play { height: 31px; width: 28px; margin-top: -26px; margin-left: -14px; top: 50%; left: 50%; }
/* previous and next elements */
.unoslider_left, .unoslider_right { width: 33px; height: 50px; margin-top: -36px; top: 50%; }
/* previous */
.unoslider_left { background: url("/Portals/_default/Skins/ArzeSara.com/images/ribbon.png") no-repeat rgba(255,255,255,.5); background-position: 0px -7px; left: 0; }
/* next */
.unoslider_right { background: url("/Portals/_default/Skins/ArzeSara.com/images/ribbon.png") no-repeat rgba(255,255,255,.5); background-position: 0px -79px; right: 0; }
/* pause */
.unoslider_pause { background-position: 0px -195px; }
/* play */
.unoslider_play { background-position: 0px -150px; }
/* bullet indicator */
.unoslider_indicator { position: absolute; bottom: 20px; right: 10px; text-align: center; padding: 5px 10px; _width: 50%;  *width: 50%;
font-size: 0px; }
.unoslider_indicator a { text-indent: 110%; white-space: nowrap; overflow: hidden; display: -moz-inline-box; -moz-box-orient: vertical; display: inline-block; vertical-align: middle;  *vertical-align: auto;cursor: pointer; background: #ffffff; background: rgba(255,255,255,.8); margin-right: 6px; width: 15px; height: 15px; border: none; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }
.unoslider_indicator a {  *display: inline;}

@media handheld, only screen and (max-width: 767px){
.unoslider_caption {left:10px;bottom: 10px;width:320px;padding:6px; font-size: 12px; line-height:1.2em;}
.unoslider_caption h2 { font-size:18px; }
.unoslider_caption h3 { font-size:15px; }
}

@media handheld, only screen and (max-width: 460px){
.unoslider_caption {left:0;bottom:5px;width:66%;padding:6px; font-size: 11px; line-height:1.2em; -moz-border-radius:0; -webkit-border-radius:0;border-radius:0;}
.unoslider_caption h2 { font-size:14px; }
.unoslider_caption h3 { font-size:12px; }
}
/* Translucent - Responsive Banner Rotator / Slider | v1.4.1 | (c) 2011-12 Ramesh Kumar | http://codecanyon.net/user/VF */

.TB_Wrapper {
	position: relative;	
	background: #EEEEEE url("/Portals/_default/Skins/ArzeSara.com/images/TB-preloader.gif") center center no-repeat;	
	max-width: 1600px;
	height: 450px;
	cursor:e-resize;
	margin: 0 auto;
}

.TB_Wrapper .icon {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/images/TB-icons.png");
	background-repeat: no-repeat;
}

.TB_Wrapper .timer_sprite {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/images/TB-timer-sprite.png");
}

.TB_Wrapper .Slides {
	z-index: 1;
	position: absolute;
	overflow: hidden;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
	
.TB_Wrapper .Slide {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: #EEEEEE url("/Portals/_default/Skins/ArzeSara.com/images/TB-preloader.gif") center center no-repeat;
}

.TB_Wrapper .Slide img {	
	z-index: 1;
	left: 0px;
	top: 0px;
	border: 0px;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}
	
/* Global Description Style */	
.TB_Wrapper .Slide div {
	z-index:4;
	position:absolute;
	font-weight:100;	
	font-size:16px;	
	color:#FFF;
}

.TB_Wrapper .Slide .txtCont span {
    margin: 0 auto;
	max-width:1140px;
	font-size:16px;
}
	
/*Hyperlink Styles*/
.TB_Wrapper a:link{		
	color:#FFF;
	text-decoration:none;
}
	
.TB_Wrapper a:visited{		
	color:#FFF;
}
	
.TB_Wrapper a:hover{		
	color:#FFF;
	text-decoration:underline;
}
	
.TB_Wrapper a:active{		
	color:#FFF;
}

.TB_Wrapper .noSelect {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.TB_Wrapper .buttonText {
	font-weight: bold;
	color: #000;
}

.TB_Wrapper .buttonTextSizeNormal {
	font-size: 12px;
}

.TB_Wrapper .buttonTextSizeTouch {
	font-size: 16px;
}


.TB_Wrapper .txtCont {
	z-index:4;
	overflow: hidden;
	position:absolute;	
	left: 0px;
	top: 0px;
}

.TB_Wrapper .captionCanvas {
	position: absolute;
	left: 0px;
	top: 0px;
}

.TB_Wrapper .navHolder {
	position: absolute; 
	-webkit-touch-callout: none; 
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.TB_Wrapper .rounded{ 
	-moz-border-radius: 2px; 
	-webkit-border-radius: 2px; 	
	-khtml-border-radius: 2px;
	border-radius: 2px;
}


/* For IE8 and older versions */
.TB_Wrapper .buttonShadow {
	z-index: 1;
	position: absolute;
	background-color: #000000;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=10);
}

.TB_Wrapper .buttonAlpha {
	z-index: 2;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=35);
}

.TB_Wrapper .buttonTopBot {
	z-index: 3;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 0px;
	height: 100%;
	filter: alpha(opacity=100);
}

.TB_Wrapper .buttonCent {
	z-index: 4;
	position: absolute;
	left: 0px;
	top: 1px;
	width: 100%;
	filter: alpha(opacity=100);
}
@media handheld, only screen and (max-width: 767px) {
.TB_Wrapper .Slide div {	
	font-size:12px;
	font-weight:normal;
}
}
/* * jQuery FlexSlider v1.8 * http://www.woothemes.com/flexslider/ * * Copyright 2012 WooThemes * Free to use under the MIT license. * http://www.opensource.org/licenses/mit-license.php*/
/* Browser Resets*/
.flex-container a,
.flexslider a,
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus{outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav{margin: 0;padding: 0;list-style: none;}
.flexslider ul, .flexslider li, flexslider ul li{list-style-type:none!important;padding:0;margin:0;}

/* FlexSlider Necessary Styles */
.flexslider{margin: 0;padding: 0;}
.flexslider .slides > li{display: none;-webkit-backface-visibility: hidden;}
.flexslider .slides img{max-width: 100%;display: block;margin:0 auto;}
.flex-pauseplay span{text-transform: capitalize;}
/* Clearfix for the .slides element*/
.slides:after{content: ".";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;}
html[xmlns] .slides{display: block;}
* html .slides{height: 1%;}
/* No JavaScript Fallback*/
.no-js .slides > li:first-child{display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider{background:none;position: relative;zoom: 1;}
.flexslider .slides{zoom: 1;}
.flexslider .slides > li{position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish*/
.flex-container{zoom: 1;position: relative;}
/* Caption style*/
.flex-caption{width:auto;max-width:40%;overflow:hidden;margin: 0;position: absolute;left:50px;top:50px;background: none;color:#fff;font-size: 14px;font-family:'Open Sans', Arial, Tahoma, Helvetica, Verdana, sans-serif;font-weight:normal;}
.flex-caption p, .flex-caption h1, .flex-caption h2, .flex-caption h3, .flex-caption h4, .flex-caption h5, .flex-caption h6, .flex-caption span{color:#fff;}
.flex-caption p{line-height:1.5em;}
/* Read More Button */
.readmore_box_banner{padding-top:15%;min-height:50px;-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing: content-box;}
.readmore_box_banner span{margin:0 7px;}
.readmore_box_banner .readmore_banner01{padding:8px 14px;border:2px solid #fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;opacity:0.8;}
.readmore_box_banner .readmore_banner01:hover{color:#fff;opacity:1;}
.readmore_box_banner .readmore_banner02{padding:8px 14px;border:2px solid #fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;opacity:0.8;}
.readmore_box_banner .readmore_banner02:hover{color:#fff;opacity:1;}

/* Direction Nav*/
.flex-direction-nav{height: 0;}
.flex-direction-nav li{list-style:none;}
.flex-direction-nav a{width:40px;height:40px;margin:0;display: block;background:url("/Portals/_default/Skins/ArzeSara.com/images/bg_direction_nav.png") no-repeat;position: absolute;top: 42%;cursor: pointer;text-indent: -999em;opacity:0;filter: alpha(opacity=0);}
.flex-direction-nav .flex-next{background-position: -150px 0;right:5px;}
.flex-direction-nav .flex-next:hover{background-position: -150px -75px;right:5px;}
.flex-direction-nav .flex-prev{left:5px;}
.flex-direction-nav .flex-prev:hover{background-position: 0 -75px;}
.flexslider:hover .flex-next{opacity: 1;filter: alpha(opacity=100);right:5px;}
.flexslider:hover .flex-prev{opacity: 1;filter: alpha(opacity=100);left:5px;}
.flex-direction-nav .flex-disabled,
.flex-direction-nav .disabled{opacity: .3!important;filter:alpha(opacity=30);cursor: default;}

/* Control Nav*/
.flex-control-nav{display:none;}


/** FlexSlider2 **/
/* Browser Resets*/
.flexslider2 a, .flexslider2 a:active, .flexslider2 a:focus{outline: none;}
.flexslider2 ul, .flexslider2 li, flexslider ul li{list-style:none;padding:0;margin:0;}

/* FlexSlider Necessary Styles */
.flexslider2{margin: 0;padding: 0;}
.flexslider2 .slides > li{display: none;-webkit-backface-visibility: hidden;}
.flexslider2 .slides img{max-width: 100%;display: block;}

/* FlexSlider Default Theme*/
.flexslider2{background:none;position: relative;zoom: 1;}
.flexslider2 .slides{zoom: 1;}
.flexslider2 .slides > li{position: relative;}

/* Caption style*/
.flex-caption2{width:auto;max-width:40%;overflow:hidden;margin: 0;position: absolute;right:50px;top:50px;background: none;color:#fff;font-size: 14px;font-family:'Open Sans', Arial, Tahoma, Helvetica, Verdana, sans-serif;font-weight:normal;}
.flex-caption2 p, .flex-caption2 h1, .flex-caption2 h2, .flex-caption2 h3, .flex-caption2 h4, .flex-caption2 h5, .flex-caption2 h6, .flex-caption2 span{color:#fff;}
.flex-caption2 p{line-height:1.5em;}

/* Direction Nav*/
.flexslider2:hover .flex-next{opacity: 1;filter: alpha(opacity=100);right:5px;}
.flexslider2:hover .flex-prev{opacity: 1;filter: alpha(opacity=100);left:5px;}

.flexslider_bg{ background:#24A1AF;}


/** flexslider3 **/
/* Browser Resets*/
.flexslider3 a, .flexslider3 a:active, .flexslider3 a:focus{outline: none;}
.flexslider3 ul, .flexslider3 li, flexslider3 ul li{list-style:none;padding:0;margin:0;}

/* FlexSlider Necessary Styles */
.flexslider3{margin: 0;padding: 0;}
.flexslider3 .slides > li{display: none;-webkit-backface-visibility: hidden;}
.flexslider3 .slides img{max-width: 100%;display: block;}

/* FlexSlider Default Theme*/
.flexslider3{background:none;position: relative;zoom: 1;}
.flexslider3 .slides{zoom: 1;}
.flexslider3 .slides > li{position: relative;}

/* Caption style*/
.flex-caption3{width:auto;max-width:40%;overflow:hidden;margin: 0;position: absolute;right:50px;top:50px;background: none;color:#fff;font-size: 14px;font-family:'Open Sans', Arial, Tahoma, Helvetica, Verdana, sans-serif;font-weight:normal;}
.flex-caption3 p, .flex-caption2 h1, .flex-caption2 h2, .flex-caption2 h3, .flex-caption2 h4, .flex-caption2 h5, .flex-caption2 h6, .flex-caption2 span{color:#fff;}
.flex-caption3 p{line-height:1.5em;}

/* Direction Nav*/
.flexslider3:hover .flex-next{opacity: 1;filter: alpha(opacity=100);right:5px;}
.flexslider3:hover .flex-prev{opacity: 1;filter: alpha(opacity=100);left:5px;}

.flexslider_bg{ background:#24A1AF;}

/* Direction Nav*/
.flexslider3 .flex-direction-nav{height: 0;}
.flexslider3 .flex-direction-nav li{list-style:none;}
.flexslider3 .flex-direction-nav a{width:40px;height:40px;margin:0;display: block;background:url("/Portals/_default/Skins/ArzeSara.com/images/bg_direction_nav.png") no-repeat;position: absolute;top: 50%;cursor: pointer;text-indent: -999em;opacity:0;filter: alpha(opacity=0);border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;}
.flexslider3 .flex-direction-nav .flex-next{background-position: -150px 0;right:5%;}
.flexslider3 .flex-direction-nav .flex-next:hover{background-position: -150px -75px;}
.flexslider3 .flex-direction-nav .flex-prev{left:5%;}
.flexslider3 .flex-direction-nav .flex-prev:hover{background-position: 0 -75px;}
.flexslider3 .flexslider:hover .flex-next{opacity: 1;filter: alpha(opacity=100);right:5px;}
.flexslider3 .flexslider:hover .flex-prev{opacity: 1;filter: alpha(opacity=100);left:5px;}
.flexslider3 .flex-direction-nav .flex-disabled,
.flexslider3 .flex-direction-nav .disabled{opacity:0.3!important;filter:alpha(opacity=30);cursor: default;}

@media handheld, only screen and (max-width: 1140px) {
.flex-caption { font-size: 12px; font-weight:normal; left:50px; top:20px;}
.flex-caption h1 { font-size:24px;}
.flex-caption h2 { font-size:20px;}
.flex-caption h3 { font-size:16px;}
.flex-caption .mobile_hidden { display:none; }

.flex-caption2 { font-size: 12px; font-weight:normal; right:50px; top:20px;}
.flex-caption2 h1 { font-size:24px;}
.flex-caption2 h2 { font-size:20px;}
.flex-caption2 h3 { font-size:16px;}
.flex-caption2 .mobile_hidden { display:none; }
}

@media handheld, only screen and (max-width: 767px) {
.flex-caption { left:10px; top:40px; }
.flex-caption h1 { font-size:16px;}
.flex-caption h2 { font-size:15px;}
.flex-caption h3 { font-size:14px;}
.flex-caption p { font-size: 11px; }
.flex-caption .mobile_hidden { display:none; }
.readmore_box_banner span{ margin:0 5px ;}

.flex-caption2 { right:10px; top:40px; }
.flex-caption2 h1 { font-size:16px;}
.flex-caption2 h2 { font-size:15px;}
.flex-caption2 h3 { font-size:14px;}
.flex-caption2 p { font-size: 11px; }
.flex-caption2 .mobile_hidden { display:none; }
.flex-caption2 { font-size:12px;}
}
@media handheld, only screen and (max-width: 535px) {
.flex-caption {  top:20px; }
.flex-caption2 { top:20px; }

.readmore_box_banner .readmore_banner02{ display:none;}
}

@media handheld, only screen and (max-width: 479px) {
.flex-caption { left:5px; top:5px; }
.flex-caption h1 { font-size:12px;}
.flex-caption h2 { font-size:12px;}
.flex-caption h3 { font-size:12px;}

.flex-caption2 { right:5px; top:5px; }
.flex-caption2 h1 { font-size:12px;}
.flex-caption2 h2 { font-size:12px;}
.flex-caption2 h3 { font-size:12px;}
}
@media handheld, only screen and (max-width: 420px) {
.flex-caption p { display:none; }
.flex-caption2 p { display:none; }
}
@charset "UTF-8";
/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license
Copyright (c) 2013 Daniel Eden
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated{-webkit-animation-duration: 1s; -moz-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s;-webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; -o-animation-fill-mode: both; animation-fill-mode: both;}
.animated.hinge{-webkit-animation-duration: 2s; -moz-animation-duration: 2s; -o-animation-duration: 2s; animation-duration: 2s;}
@-webkit-keyframes flash{0%, 50%, 100%{opacity: 1;}25%, 75%{opacity: 0;}}
@-moz-keyframes flash{0%, 50%, 100%{opacity: 1;}25%, 75%{opacity: 0;}}
@-o-keyframes flash{0%, 50%, 100%{opacity: 1;}25%, 75%{opacity: 0;}}
@keyframes flash{0%, 50%, 100%{opacity: 1;}25%, 75%{opacity: 0;}}
.animated.flash{-webkit-animation-name: flash;-moz-animation-name: flash;-o-animation-name: flash;animation-name: flash;}
@-webkit-keyframes shake{0%, 100%{-webkit-transform: translateX(0);}10%, 30%, 50%, 70%, 90%{-webkit-transform: translateX(-10px);}20%, 40%, 60%, 80%{-webkit-transform: translateX(10px);}}
@-moz-keyframes shake{0%, 100%{-moz-transform: translateX(0);}10%, 30%, 50%, 70%, 90%{-moz-transform: translateX(-10px);}20%, 40%, 60%, 80%{-moz-transform: translateX(10px);}}
@-o-keyframes shake{0%, 100%{-o-transform: translateX(0);}10%, 30%, 50%, 70%, 90%{-o-transform: translateX(-10px);}20%, 40%, 60%, 80%{-o-transform: translateX(10px);}}
@keyframes shake{0%, 100%{transform: translateX(0);}10%, 30%, 50%, 70%, 90%{transform: translateX(-10px);}20%, 40%, 60%, 80%{transform: translateX(10px);}}
.animated.shake{-webkit-animation-name: shake;-moz-animation-name: shake;-o-animation-name: shake;animation-name: shake;}
@-webkit-keyframes bounce{0%, 20%, 50%, 80%, 100%{-webkit-transform: translateY(0);}40%{-webkit-transform: translateY(-30px);}60%{-webkit-transform: translateY(-15px);}}
@-moz-keyframes bounce{0%, 20%, 50%, 80%, 100%{-moz-transform: translateY(0);}40%{-moz-transform: translateY(-30px);}60%{-moz-transform: translateY(-15px);}}
@-o-keyframes bounce{0%, 20%, 50%, 80%, 100%{-o-transform: translateY(0);}40%{-o-transform: translateY(-30px);}60%{-o-transform: translateY(-15px);}}
@keyframes bounce{0%, 20%, 50%, 80%, 100%{transform: translateY(0);}40%{transform: translateY(-30px);}60%{transform: translateY(-15px);}}
.animated.bounce{-webkit-animation-name: bounce;-moz-animation-name: bounce;-o-animation-name: bounce;animation-name: bounce;}
@-webkit-keyframes tada{0%{-webkit-transform: scale(1);}10%, 20%{-webkit-transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90%{-webkit-transform: scale(1.1) rotate(3deg);}40%, 60%, 80%{-webkit-transform: scale(1.1) rotate(-3deg);}100%{-webkit-transform: scale(1) rotate(0);}}
@-moz-keyframes tada{0%{-moz-transform: scale(1);}10%, 20%{-moz-transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90%{-moz-transform: scale(1.1) rotate(3deg);}40%, 60%, 80%{-moz-transform: scale(1.1) rotate(-3deg);}100%{-moz-transform: scale(1) rotate(0);}}
@-o-keyframes tada{0%{-o-transform: scale(1);}10%, 20%{-o-transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90%{-o-transform: scale(1.1) rotate(3deg);}40%, 60%, 80%{-o-transform: scale(1.1) rotate(-3deg);}100%{-o-transform: scale(1) rotate(0);}}
@keyframes tada{0%{transform: scale(1);}10%, 20%{transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90%{transform: scale(1.1) rotate(3deg);}40%, 60%, 80%{transform: scale(1.1) rotate(-3deg);}100%{transform: scale(1) rotate(0);}}
.animated.tada{-webkit-animation-name: tada;-moz-animation-name: tada;-o-animation-name: tada;animation-name: tada;}
@-webkit-keyframes swing{20%, 40%, 60%, 80%, 100%{-webkit-transform-origin: top center;}20%{-webkit-transform: rotate(15deg);}40%{-webkit-transform: rotate(-10deg);}60%{-webkit-transform: rotate(5deg);}80%{-webkit-transform: rotate(-5deg);}100%{-webkit-transform: rotate(0deg);}}
@-moz-keyframes swing{20%{-moz-transform: rotate(15deg);}40%{-moz-transform: rotate(-10deg);}60%{-moz-transform: rotate(5deg);}80%{-moz-transform: rotate(-5deg);}100%{-moz-transform: rotate(0deg);}}
@-o-keyframes swing{20%{-o-transform: rotate(15deg);}40%{-o-transform: rotate(-10deg);}60%{-o-transform: rotate(5deg);}80%{-o-transform: rotate(-5deg);}100%{-o-transform: rotate(0deg);}}
@keyframes swing{20%{transform: rotate(15deg);}40%{transform: rotate(-10deg);}60%{transform: rotate(5deg);}80%{transform: rotate(-5deg);}100%{transform: rotate(0deg);}}
.animated.swing{-webkit-transform-origin: top center;-moz-transform-origin: top center;-o-transform-origin: top center;transform-origin: top center;-webkit-animation-name: swing;-moz-animation-name: swing;-o-animation-name: swing;animation-name: swing;}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble{0%{-webkit-transform: translateX(0%);} 15%{-webkit-transform: translateX(-25%) rotate(-5deg);} 30%{-webkit-transform: translateX(20%) rotate(3deg);} 45%{-webkit-transform: translateX(-15%) rotate(-3deg);} 60%{-webkit-transform: translateX(10%) rotate(2deg);} 75%{-webkit-transform: translateX(-5%) rotate(-1deg);} 100%{-webkit-transform: translateX(0%);}}
@-moz-keyframes wobble{0%{-moz-transform: translateX(0%);} 15%{-moz-transform: translateX(-25%) rotate(-5deg);} 30%{-moz-transform: translateX(20%) rotate(3deg);} 45%{-moz-transform: translateX(-15%) rotate(-3deg);} 60%{-moz-transform: translateX(10%) rotate(2deg);} 75%{-moz-transform: translateX(-5%) rotate(-1deg);} 100%{-moz-transform: translateX(0%);}}
@-o-keyframes wobble{0%{-o-transform: translateX(0%);} 15%{-o-transform: translateX(-25%) rotate(-5deg);} 30%{-o-transform: translateX(20%) rotate(3deg);} 45%{-o-transform: translateX(-15%) rotate(-3deg);} 60%{-o-transform: translateX(10%) rotate(2deg);} 75%{-o-transform: translateX(-5%) rotate(-1deg);} 100%{-o-transform: translateX(0%);}}
@keyframes wobble{0%{transform: translateX(0%);} 15%{transform: translateX(-25%) rotate(-5deg);} 30%{transform: translateX(20%) rotate(3deg);} 45%{transform: translateX(-15%) rotate(-3deg);} 60%{transform: translateX(10%) rotate(2deg);} 75%{transform: translateX(-5%) rotate(-1deg);} 100%{transform: translateX(0%);}}
.animated.wobble{-webkit-animation-name: wobble;-moz-animation-name: wobble;-o-animation-name: wobble;animation-name: wobble;}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse{0%{-webkit-transform: scale(1);}50%{-webkit-transform: scale(1.1);} 100%{-webkit-transform: scale(1);}}
@-moz-keyframes pulse{0%{-moz-transform: scale(1);}50%{-moz-transform: scale(1.1);} 100%{-moz-transform: scale(1);}}
@-o-keyframes pulse{0%{-o-transform: scale(1);}50%{-o-transform: scale(1.1);} 100%{-o-transform: scale(1);}}
@keyframes pulse{0%{transform: scale(1);}50%{transform: scale(1.1);} 100%{transform: scale(1);}}
.animated.pulse{-webkit-animation-name: pulse;-moz-animation-name: pulse;-o-animation-name: pulse;animation-name: pulse;}
@-webkit-keyframes flip{0%{-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function: ease-out;}40%{-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function: ease-out;}50%{-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function: ease-in;}80%{-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function: ease-in;}100%{-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function: ease-in;}}
@-moz-keyframes flip{0%{-moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-moz-animation-timing-function: ease-out;}40%{-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-moz-animation-timing-function: ease-out;}50%{-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-moz-animation-timing-function: ease-in;}80%{-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-moz-animation-timing-function: ease-in;}100%{-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-moz-animation-timing-function: ease-in;}}
@-o-keyframes flip{0%{-o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-o-animation-timing-function: ease-out;}40%{-o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-o-animation-timing-function: ease-out;}50%{-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-o-animation-timing-function: ease-in;}80%{-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-o-animation-timing-function: ease-in;}100%{-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-o-animation-timing-function: ease-in;}}
@keyframes flip{0%{transform: perspective(400px) translateZ(0) rotateY(0) scale(1);animation-timing-function: ease-out;}40%{transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);animation-timing-function: ease-out;}50%{transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);animation-timing-function: ease-in;}80%{transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);animation-timing-function: ease-in;}100%{transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);animation-timing-function: ease-in;}}
.animated.flip{-webkit-backface-visibility: visible !important;-webkit-animation-name: flip;-moz-backface-visibility: visible !important;-moz-animation-name: flip;-o-backface-visibility: visible !important;-o-animation-name: flip;backface-visibility: visible !important;animation-name: flip;}
@-webkit-keyframes flipInX{0%{-webkit-transform: perspective(400px) rotateX(90deg); opacity: 0;} 40%{-webkit-transform: perspective(400px) rotateX(-10deg);} 70%{-webkit-transform: perspective(400px) rotateX(10deg);} 100%{-webkit-transform: perspective(400px) rotateX(0deg); opacity: 1;}}
@-moz-keyframes flipInX{0%{-moz-transform: perspective(400px) rotateX(90deg); opacity: 0;} 40%{-moz-transform: perspective(400px) rotateX(-10deg);} 70%{-moz-transform: perspective(400px) rotateX(10deg);} 100%{-moz-transform: perspective(400px) rotateX(0deg); opacity: 1;}}
@-o-keyframes flipInX{0%{-o-transform: perspective(400px) rotateX(90deg); opacity: 0;} 40%{-o-transform: perspective(400px) rotateX(-10deg);} 70%{-o-transform: perspective(400px) rotateX(10deg);} 100%{-o-transform: perspective(400px) rotateX(0deg); opacity: 1;}}
@keyframes flipInX{0%{transform: perspective(400px) rotateX(90deg); opacity: 0;} 40%{transform: perspective(400px) rotateX(-10deg);} 70%{transform: perspective(400px) rotateX(10deg);} 100%{transform: perspective(400px) rotateX(0deg); opacity: 1;}}
.animated.flipInX{-webkit-backface-visibility: visible !important;-webkit-animation-name: flipInX;-moz-backface-visibility: visible !important;-moz-animation-name: flipInX;-o-backface-visibility: visible !important;-o-animation-name: flipInX;backface-visibility: visible !important;animation-name: flipInX;}
@-webkit-keyframes flipOutX{0%{-webkit-transform: perspective(400px) rotateX(0deg); opacity: 1;}100%{-webkit-transform: perspective(400px) rotateX(90deg); opacity: 0;}}
@-moz-keyframes flipOutX{0%{-moz-transform: perspective(400px) rotateX(0deg); opacity: 1;}100%{-moz-transform: perspective(400px) rotateX(90deg); opacity: 0;}}
@-o-keyframes flipOutX{0%{-o-transform: perspective(400px) rotateX(0deg); opacity: 1;}100%{-o-transform: perspective(400px) rotateX(90deg); opacity: 0;}}
@keyframes flipOutX{0%{transform: perspective(400px) rotateX(0deg); opacity: 1;}100%{transform: perspective(400px) rotateX(90deg); opacity: 0;}}
.animated.flipOutX{-webkit-animation-name: flipOutX;-webkit-backface-visibility: visible !important;-moz-animation-name: flipOutX;-moz-backface-visibility: visible !important;-o-animation-name: flipOutX;-o-backface-visibility: visible !important;animation-name: flipOutX;backface-visibility: visible !important;}
@-webkit-keyframes flipInY{0%{-webkit-transform: perspective(400px) rotateY(90deg); opacity: 0;} 40%{-webkit-transform: perspective(400px) rotateY(-10deg);} 70%{-webkit-transform: perspective(400px) rotateY(10deg);} 100%{-webkit-transform: perspective(400px) rotateY(0deg); opacity: 1;}}
@-moz-keyframes flipInY{0%{-moz-transform: perspective(400px) rotateY(90deg); opacity: 0;} 40%{-moz-transform: perspective(400px) rotateY(-10deg);} 70%{-moz-transform: perspective(400px) rotateY(10deg);} 100%{-moz-transform: perspective(400px) rotateY(0deg); opacity: 1;}}
@-o-keyframes flipInY{0%{-o-transform: perspective(400px) rotateY(90deg); opacity: 0;} 40%{-o-transform: perspective(400px) rotateY(-10deg);} 70%{-o-transform: perspective(400px) rotateY(10deg);} 100%{-o-transform: perspective(400px) rotateY(0deg); opacity: 1;}}
@keyframes flipInY{0%{transform: perspective(400px) rotateY(90deg); opacity: 0;} 40%{transform: perspective(400px) rotateY(-10deg);} 70%{transform: perspective(400px) rotateY(10deg);} 100%{transform: perspective(400px) rotateY(0deg); opacity: 1;}}
.animated.flipInY{-webkit-backface-visibility: visible !important;-webkit-animation-name: flipInY;-moz-backface-visibility: visible !important;-moz-animation-name: flipInY;-o-backface-visibility: visible !important;-o-animation-name: flipInY;backface-visibility: visible !important;animation-name: flipInY;}
@-webkit-keyframes flipOutY{0%{-webkit-transform: perspective(400px) rotateY(0deg); opacity: 1;}100%{-webkit-transform: perspective(400px) rotateY(90deg); opacity: 0;}}
@-moz-keyframes flipOutY{0%{-moz-transform: perspective(400px) rotateY(0deg); opacity: 1;}100%{-moz-transform: perspective(400px) rotateY(90deg); opacity: 0;}}
@-o-keyframes flipOutY{0%{-o-transform: perspective(400px) rotateY(0deg); opacity: 1;}100%{-o-transform: perspective(400px) rotateY(90deg); opacity: 0;}}
@keyframes flipOutY{0%{transform: perspective(400px) rotateY(0deg); opacity: 1;}100%{transform: perspective(400px) rotateY(90deg); opacity: 0;}}
.animated.flipOutY{-webkit-backface-visibility: visible !important;-webkit-animation-name: flipOutY;-moz-backface-visibility: visible !important;-moz-animation-name: flipOutY;-o-backface-visibility: visible !important;-o-animation-name: flipOutY;backface-visibility: visible !important;animation-name: flipOutY;}
@-webkit-keyframes fadeIn{0%{opacity: 0;}100%{opacity: 1;}}
@-moz-keyframes fadeIn{0%{opacity: 0;}100%{opacity: 1;}}
@-o-keyframes fadeIn{0%{opacity: 0;}100%{opacity: 1;}}
@keyframes fadeIn{0%{opacity: 0;}100%{opacity: 1;}}
.animated.fadeIn{-webkit-animation-name: fadeIn;-moz-animation-name: fadeIn;-o-animation-name: fadeIn;animation-name: fadeIn;}
@-webkit-keyframes fadeInUp{0%{opacity: 0;-webkit-transform: translateY(20px);}100%{opacity: 1;-webkit-transform: translateY(0);}}
@-moz-keyframes fadeInUp{0%{opacity: 0;-moz-transform: translateY(20px);}100%{opacity: 1;-moz-transform: translateY(0);}}
@-o-keyframes fadeInUp{0%{opacity: 0;-o-transform: translateY(20px);}100%{opacity: 1;-o-transform: translateY(0);}}
@keyframes fadeInUp{0%{opacity: 0;transform: translateY(20px);}100%{opacity: 1;transform: translateY(0);}}
.animated.fadeInUp{-webkit-animation-name: fadeInUp;-moz-animation-name: fadeInUp;-o-animation-name: fadeInUp;animation-name: fadeInUp;}
@-webkit-keyframes fadeInDown{0%{opacity: 0;-webkit-transform: translateY(-20px);}100%{opacity: 1;-webkit-transform: translateY(0);}}
@-moz-keyframes fadeInDown{0%{opacity: 0;-moz-transform: translateY(-20px);}100%{opacity: 1;-moz-transform: translateY(0);}}
@-o-keyframes fadeInDown{0%{opacity: 0;-o-transform: translateY(-20px);}100%{opacity: 1;-o-transform: translateY(0);}}
@keyframes fadeInDown{0%{opacity: 0;transform: translateY(-20px);}100%{opacity: 1;transform: translateY(0);}}
.animated.fadeInDown{-webkit-animation-name: fadeInDown;-moz-animation-name: fadeInDown;-o-animation-name: fadeInDown;animation-name: fadeInDown;}

@-webkit-keyframes fadeInLeft{0%{opacity: 0;-webkit-transform: translateX(-20px);}100%{opacity: 1;-webkit-transform: translateX(0);}}
@-moz-keyframes fadeInLeft{0%{opacity: 0;-moz-transform: translateX(-20px);}100%{opacity: 1;-moz-transform: translateX(0);}}
@-o-keyframes fadeInLeft{0%{opacity: 0;-o-transform: translateX(-20px);}100%{opacity: 1;-o-transform: translateX(0);}}
@keyframes fadeInLeft{0%{opacity: 0;transform: translateX(-20px);}100%{opacity: 1;transform: translateX(0);}}
.animated.fadeInLeft{-webkit-animation-name: fadeInLeft;-moz-animation-name: fadeInLeft;-o-animation-name: fadeInLeft;animation-name: fadeInLeft;}

@-webkit-keyframes fadeInRight{0%{opacity: 0;-webkit-transform: translateX(20px);}100%{opacity: 1;-webkit-transform: translateX(0);}}
@-moz-keyframes fadeInRight{0%{opacity: 0;-moz-transform: translateX(20px);}100%{opacity: 1;-moz-transform: translateX(0);}}
@-o-keyframes fadeInRight{0%{opacity: 0;-o-transform: translateX(20px);}100%{opacity: 1;-o-transform: translateX(0);}}
@keyframes fadeInRight{0%{opacity: 0;transform: translateX(20px);}100%{opacity: 1;transform: translateX(0);}}
.animated.fadeInRight{-webkit-animation-name: fadeInRight;-moz-animation-name: fadeInRight;-o-animation-name: fadeInRight;animation-name: fadeInRight;}
@-webkit-keyframes fadeInUpBig{0%{opacity: 0;-webkit-transform: translateY(2000px);}100%{opacity: 1;-webkit-transform: translateY(0);}}
@-moz-keyframes fadeInUpBig{0%{opacity: 0;-moz-transform: translateY(2000px);}100%{opacity: 1;-moz-transform: translateY(0);}}
@-o-keyframes fadeInUpBig{0%{opacity: 0;-o-transform: translateY(2000px);}100%{opacity: 1;-o-transform: translateY(0);}}
@keyframes fadeInUpBig{0%{opacity: 0;transform: translateY(2000px);}100%{opacity: 1;transform: translateY(0);}}
.animated.fadeInUpBig{-webkit-animation-name: fadeInUpBig;-moz-animation-name: fadeInUpBig;-o-animation-name: fadeInUpBig;animation-name: fadeInUpBig;}
@-webkit-keyframes fadeInDownBig{0%{opacity: 0;-webkit-transform: translateY(-2000px);}100%{opacity: 1;-webkit-transform: translateY(0);}}
@-moz-keyframes fadeInDownBig{0%{opacity: 0;-moz-transform: translateY(-2000px);}100%{opacity: 1;-moz-transform: translateY(0);}}
@-o-keyframes fadeInDownBig{0%{opacity: 0;-o-transform: translateY(-2000px);}100%{opacity: 1;-o-transform: translateY(0);}}
@keyframes fadeInDownBig{0%{opacity: 0;transform: translateY(-2000px);}100%{opacity: 1;transform: translateY(0);}}
.animated.fadeInDownBig{-webkit-animation-name: fadeInDownBig;-moz-animation-name: fadeInDownBig;-o-animation-name: fadeInDownBig;animation-name: fadeInDownBig;}
@-webkit-keyframes fadeInLeftBig{0%{opacity: 0;-webkit-transform: translateX(-2000px);}100%{opacity: 1;-webkit-transform: translateX(0);}}
@-moz-keyframes fadeInLeftBig{0%{opacity: 0;-moz-transform: translateX(-2000px);}100%{opacity: 1;-moz-transform: translateX(0);}}
@-o-keyframes fadeInLeftBig{0%{opacity: 0;-o-transform: translateX(-2000px);}100%{opacity: 1;-o-transform: translateX(0);}}
@keyframes fadeInLeftBig{0%{opacity: 0;transform: translateX(-2000px);}100%{opacity: 1;transform: translateX(0);}}
.animated.fadeInLeftBig{-webkit-animation-name: fadeInLeftBig;-moz-animation-name: fadeInLeftBig;-o-animation-name: fadeInLeftBig;animation-name: fadeInLeftBig;}
@-webkit-keyframes fadeInRightBig{0%{opacity: 0;-webkit-transform: translateX(2000px);}100%{opacity: 1;-webkit-transform: translateX(0);}}
@-moz-keyframes fadeInRightBig{0%{opacity: 0;-moz-transform: translateX(2000px);}100%{opacity: 1;-moz-transform: translateX(0);}}
@-o-keyframes fadeInRightBig{0%{opacity: 0;-o-transform: translateX(2000px);}100%{opacity: 1;-o-transform: translateX(0);}}
@keyframes fadeInRightBig{0%{opacity: 0;transform: translateX(2000px);}100%{opacity: 1;transform: translateX(0);}}
.animated.fadeInRightBig{-webkit-animation-name: fadeInRightBig;-moz-animation-name: fadeInRightBig;-o-animation-name: fadeInRightBig;animation-name: fadeInRightBig;}
@-webkit-keyframes fadeOut{0%{opacity: 1;}100%{opacity: 0;}}
@-moz-keyframes fadeOut{0%{opacity: 1;}100%{opacity: 0;}}
@-o-keyframes fadeOut{0%{opacity: 1;}100%{opacity: 0;}}
@keyframes fadeOut{0%{opacity: 1;}100%{opacity: 0;}}
.animated.fadeOut{-webkit-animation-name: fadeOut;-moz-animation-name: fadeOut;-o-animation-name: fadeOut;animation-name: fadeOut;}
@-webkit-keyframes fadeOutUp{0%{opacity: 1;-webkit-transform: translateY(0);}100%{opacity: 0;-webkit-transform: translateY(-20px);}}
@-moz-keyframes fadeOutUp{0%{opacity: 1;-moz-transform: translateY(0);}100%{opacity: 0;-moz-transform: translateY(-20px);}}
@-o-keyframes fadeOutUp{0%{opacity: 1;-o-transform: translateY(0);}100%{opacity: 0;-o-transform: translateY(-20px);}}
@keyframes fadeOutUp{0%{opacity: 1;transform: translateY(0);}100%{opacity: 0;transform: translateY(-20px);}}
.animated.fadeOutUp{-webkit-animation-name: fadeOutUp;-moz-animation-name: fadeOutUp;-o-animation-name: fadeOutUp;animation-name: fadeOutUp;}
@-webkit-keyframes fadeOutDown{0%{opacity: 1;-webkit-transform: translateY(0);}100%{opacity: 0;-webkit-transform: translateY(20px);}}
@-moz-keyframes fadeOutDown{0%{opacity: 1;-moz-transform: translateY(0);}100%{opacity: 0;-moz-transform: translateY(20px);}}
@-o-keyframes fadeOutDown{0%{opacity: 1;-o-transform: translateY(0);}100%{opacity: 0;-o-transform: translateY(20px);}}
@keyframes fadeOutDown{0%{opacity: 1;transform: translateY(0);}100%{opacity: 0;transform: translateY(20px);}}
.animated.fadeOutDown{-webkit-animation-name: fadeOutDown;-moz-animation-name: fadeOutDown;-o-animation-name: fadeOutDown;animation-name: fadeOutDown;}
@-webkit-keyframes fadeOutLeft{0%{opacity: 1;-webkit-transform: translateX(0);}100%{opacity: 0;-webkit-transform: translateX(-20px);}}
@-moz-keyframes fadeOutLeft{0%{opacity: 1;-moz-transform: translateX(0);}100%{opacity: 0;-moz-transform: translateX(-20px);}}
@-o-keyframes fadeOutLeft{0%{opacity: 1;-o-transform: translateX(0);}100%{opacity: 0;-o-transform: translateX(-20px);}}
@keyframes fadeOutLeft{0%{opacity: 1;transform: translateX(0);}100%{opacity: 0;transform: translateX(-20px);}}
.animated.fadeOutLeft{-webkit-animation-name: fadeOutLeft;-moz-animation-name: fadeOutLeft;-o-animation-name: fadeOutLeft;animation-name: fadeOutLeft;}
@-webkit-keyframes fadeOutRight{0%{opacity: 1;-webkit-transform: translateX(0);}100%{opacity: 0;-webkit-transform: translateX(20px);}}
@-moz-keyframes fadeOutRight{0%{opacity: 1;-moz-transform: translateX(0);}100%{opacity: 0;-moz-transform: translateX(20px);}}
@-o-keyframes fadeOutRight{0%{opacity: 1;-o-transform: translateX(0);}100%{opacity: 0;-o-transform: translateX(20px);}}
@keyframes fadeOutRight{0%{opacity: 1;transform: translateX(0);}100%{opacity: 0;transform: translateX(20px);}}
.animated.fadeOutRight{-webkit-animation-name: fadeOutRight;-moz-animation-name: fadeOutRight;-o-animation-name: fadeOutRight;animation-name: fadeOutRight;}
@-webkit-keyframes fadeOutUpBig{0%{opacity: 1;-webkit-transform: translateY(0);}100%{opacity: 0;-webkit-transform: translateY(-2000px);}}
@-moz-keyframes fadeOutUpBig{0%{opacity: 1;-moz-transform: translateY(0);}100%{opacity: 0;-moz-transform: translateY(-2000px);}}
@-o-keyframes fadeOutUpBig{0%{opacity: 1;-o-transform: translateY(0);}100%{opacity: 0;-o-transform: translateY(-2000px);}}
@keyframes fadeOutUpBig{0%{opacity: 1;transform: translateY(0);}100%{opacity: 0;transform: translateY(-2000px);}}
.animated.fadeOutUpBig{-webkit-animation-name: fadeOutUpBig;-moz-animation-name: fadeOutUpBig;-o-animation-name: fadeOutUpBig;animation-name: fadeOutUpBig;}
@-webkit-keyframes fadeOutDownBig{0%{opacity: 1;-webkit-transform: translateY(0);}100%{opacity: 0;-webkit-transform: translateY(2000px);}}
@-moz-keyframes fadeOutDownBig{0%{opacity: 1;-moz-transform: translateY(0);}100%{opacity: 0;-moz-transform: translateY(2000px);}}
@-o-keyframes fadeOutDownBig{0%{opacity: 1;-o-transform: translateY(0);}100%{opacity: 0;-o-transform: translateY(2000px);}}
@keyframes fadeOutDownBig{0%{opacity: 1;transform: translateY(0);}100%{opacity: 0;transform: translateY(2000px);}}
.animated.fadeOutDownBig{-webkit-animation-name: fadeOutDownBig;-moz-animation-name: fadeOutDownBig;-o-animation-name: fadeOutDownBig;animation-name: fadeOutDownBig;}
@-webkit-keyframes fadeOutLeftBig{0%{opacity: 1;-webkit-transform: translateX(0);}100%{opacity: 0;-webkit-transform: translateX(-2000px);}}
@-moz-keyframes fadeOutLeftBig{0%{opacity: 1;-moz-transform: translateX(0);}100%{opacity: 0;-moz-transform: translateX(-2000px);}}
@-o-keyframes fadeOutLeftBig{0%{opacity: 1;-o-transform: translateX(0);}100%{opacity: 0;-o-transform: translateX(-2000px);}}
@keyframes fadeOutLeftBig{0%{opacity: 1;transform: translateX(0);}100%{opacity: 0;transform: translateX(-2000px);}}
.animated.fadeOutLeftBig{-webkit-animation-name: fadeOutLeftBig;-moz-animation-name: fadeOutLeftBig;-o-animation-name: fadeOutLeftBig;animation-name: fadeOutLeftBig;}
@-webkit-keyframes fadeOutRightBig{0%{opacity: 1;-webkit-transform: translateX(0);}100%{opacity: 0;-webkit-transform: translateX(2000px);}}
@-moz-keyframes fadeOutRightBig{0%{opacity: 1;-moz-transform: translateX(0);}100%{opacity: 0;-moz-transform: translateX(2000px);}}
@-o-keyframes fadeOutRightBig{0%{opacity: 1;-o-transform: translateX(0);}100%{opacity: 0;-o-transform: translateX(2000px);}}
@keyframes fadeOutRightBig{0%{opacity: 1;transform: translateX(0);}100%{opacity: 0;transform: translateX(2000px);}}
.animated.fadeOutRightBig{-webkit-animation-name: fadeOutRightBig;-moz-animation-name: fadeOutRightBig;-o-animation-name: fadeOutRightBig;animation-name: fadeOutRightBig;}
@-webkit-keyframes bounceIn{0%{opacity: 0;-webkit-transform: scale(.3);}50%{opacity: 1;-webkit-transform: scale(1.05);}70%{-webkit-transform: scale(.9);}100%{-webkit-transform: scale(1);}}
@-moz-keyframes bounceIn{0%{opacity: 0;-moz-transform: scale(.3);}50%{opacity: 1;-moz-transform: scale(1.05);}70%{-moz-transform: scale(.9);}100%{-moz-transform: scale(1);}}
@-o-keyframes bounceIn{0%{opacity: 0;-o-transform: scale(.3);}50%{opacity: 1;-o-transform: scale(1.05);}70%{-o-transform: scale(.9);}100%{-o-transform: scale(1);}}
@keyframes bounceIn{0%{opacity: 0;transform: scale(.3);}50%{opacity: 1;transform: scale(1.05);}70%{transform: scale(.9);}100%{transform: scale(1);}}
.animated.bounceIn{-webkit-animation-name: bounceIn;-moz-animation-name: bounceIn;-o-animation-name: bounceIn;animation-name: bounceIn;}
@-webkit-keyframes bounceInUp{0%{opacity: 0;-webkit-transform: translateY(2000px);}60%{opacity: 1;-webkit-transform: translateY(-30px);}80%{-webkit-transform: translateY(10px);}100%{-webkit-transform: translateY(0);}}
@-moz-keyframes bounceInUp{0%{opacity: 0;-moz-transform: translateY(2000px);}60%{opacity: 1;-moz-transform: translateY(-30px);}80%{-moz-transform: translateY(10px);}100%{-moz-transform: translateY(0);}}
@-o-keyframes bounceInUp{0%{opacity: 0;-o-transform: translateY(2000px);}60%{opacity: 1;-o-transform: translateY(-30px);}80%{-o-transform: translateY(10px);}100%{-o-transform: translateY(0);}}
@keyframes bounceInUp{0%{opacity: 0;transform: translateY(2000px);}60%{opacity: 1;transform: translateY(-30px);}80%{transform: translateY(10px);}100%{transform: translateY(0);}}
.animated.bounceInUp{-webkit-animation-name: bounceInUp;-moz-animation-name: bounceInUp;-o-animation-name: bounceInUp;animation-name: bounceInUp;}
@-webkit-keyframes bounceInDown{0%{opacity: 0;-webkit-transform: translateY(-2000px);}60%{opacity: 1;-webkit-transform: translateY(30px);}80%{-webkit-transform: translateY(-10px);}100%{-webkit-transform: translateY(0);}}
@-moz-keyframes bounceInDown{0%{opacity: 0;-moz-transform: translateY(-2000px);}60%{opacity: 1;-moz-transform: translateY(30px);}80%{-moz-transform: translateY(-10px);}100%{-moz-transform: translateY(0);}}
@-o-keyframes bounceInDown{0%{opacity: 0;-o-transform: translateY(-2000px);}60%{opacity: 1;-o-transform: translateY(30px);}80%{-o-transform: translateY(-10px);}100%{-o-transform: translateY(0);}}
@keyframes bounceInDown{0%{opacity: 0;transform: translateY(-2000px);}60%{opacity: 1;transform: translateY(30px);}80%{transform: translateY(-10px);}100%{transform: translateY(0);}}
.animated.bounceInDown{-webkit-animation-name: bounceInDown;-moz-animation-name: bounceInDown;-o-animation-name: bounceInDown;animation-name: bounceInDown;}
@-webkit-keyframes bounceInLeft{0%{opacity: 0;-webkit-transform: translateX(-2000px);}60%{opacity: 1;-webkit-transform: translateX(30px);}80%{-webkit-transform: translateX(-10px);}100%{-webkit-transform: translateX(0);}}
@-moz-keyframes bounceInLeft{0%{opacity: 0;-moz-transform: translateX(-2000px);}60%{opacity: 1;-moz-transform: translateX(30px);}80%{-moz-transform: translateX(-10px);}100%{-moz-transform: translateX(0);}}
@-o-keyframes bounceInLeft{0%{opacity: 0;-o-transform: translateX(-2000px);}60%{opacity: 1;-o-transform: translateX(30px);}80%{-o-transform: translateX(-10px);}100%{-o-transform: translateX(0);}}
@keyframes bounceInLeft{0%{opacity: 0;transform: translateX(-2000px);}60%{opacity: 1;transform: translateX(30px);}80%{transform: translateX(-10px);}100%{transform: translateX(0);}}
.animated.bounceInLeft{-webkit-animation-name: bounceInLeft;-moz-animation-name: bounceInLeft;-o-animation-name: bounceInLeft;animation-name: bounceInLeft;}
@-webkit-keyframes bounceInRight{0%{opacity: 0;-webkit-transform: translateX(2000px);}60%{opacity: 1;-webkit-transform: translateX(-30px);}80%{-webkit-transform: translateX(10px);}100%{-webkit-transform: translateX(0);}}
@-moz-keyframes bounceInRight{0%{opacity: 0;-moz-transform: translateX(2000px);}60%{opacity: 1;-moz-transform: translateX(-30px);}80%{-moz-transform: translateX(10px);}100%{-moz-transform: translateX(0);}}
@-o-keyframes bounceInRight{0%{opacity: 0;-o-transform: translateX(2000px);}60%{opacity: 1;-o-transform: translateX(-30px);}80%{-o-transform: translateX(10px);}100%{-o-transform: translateX(0);}}
@keyframes bounceInRight{0%{opacity: 0;transform: translateX(2000px);}60%{opacity: 1;transform: translateX(-30px);}80%{transform: translateX(10px);}100%{transform: translateX(0);}}
.animated.bounceInRight{-webkit-animation-name: bounceInRight;-moz-animation-name: bounceInRight;-o-animation-name: bounceInRight;animation-name: bounceInRight;}
@-webkit-keyframes bounceOut{0%{-webkit-transform: scale(1);}25%{-webkit-transform: scale(.95);}50%{opacity: 1;-webkit-transform: scale(1.1);}100%{opacity: 0;-webkit-transform: scale(.3);}}
@-moz-keyframes bounceOut{0%{-moz-transform: scale(1);}25%{-moz-transform: scale(.95);}50%{opacity: 1;-moz-transform: scale(1.1);}100%{opacity: 0;-moz-transform: scale(.3);}}
@-o-keyframes bounceOut{0%{-o-transform: scale(1);}25%{-o-transform: scale(.95);}50%{opacity: 1;-o-transform: scale(1.1);}100%{opacity: 0;-o-transform: scale(.3);}}
@keyframes bounceOut{0%{transform: scale(1);}25%{transform: scale(.95);}50%{opacity: 1;transform: scale(1.1);}100%{opacity: 0;transform: scale(.3);}}
.animated.bounceOut{-webkit-animation-name: bounceOut;-moz-animation-name: bounceOut;-o-animation-name: bounceOut;animation-name: bounceOut;}
@-webkit-keyframes bounceOutUp{0%{-webkit-transform: translateY(0);}20%{opacity: 1;-webkit-transform: translateY(20px);}100%{opacity: 0;-webkit-transform: translateY(-2000px);}}
@-moz-keyframes bounceOutUp{0%{-moz-transform: translateY(0);}20%{opacity: 1;-moz-transform: translateY(20px);}100%{opacity: 0;-moz-transform: translateY(-2000px);}}
@-o-keyframes bounceOutUp{0%{-o-transform: translateY(0);}20%{opacity: 1;-o-transform: translateY(20px);}100%{opacity: 0;-o-transform: translateY(-2000px);}}

@keyframes bounceOutUp{0%{transform: translateY(0);}20%{opacity: 1;transform: translateY(20px);}100%{opacity: 0;transform: translateY(-2000px);}}
.animated.bounceOutUp{-webkit-animation-name: bounceOutUp;-moz-animation-name: bounceOutUp;-o-animation-name: bounceOutUp;animation-name: bounceOutUp;}
@-webkit-keyframes bounceOutDown{0%{-webkit-transform: translateY(0);}20%{opacity: 1;-webkit-transform: translateY(-20px);}100%{opacity: 0;-webkit-transform: translateY(2000px);}}
@-moz-keyframes bounceOutDown{0%{-moz-transform: translateY(0);}20%{opacity: 1;-moz-transform: translateY(-20px);}100%{opacity: 0;-moz-transform: translateY(2000px);}}
@-o-keyframes bounceOutDown{0%{-o-transform: translateY(0);}20%{opacity: 1;-o-transform: translateY(-20px);}100%{opacity: 0;-o-transform: translateY(2000px);}}
@keyframes bounceOutDown{0%{transform: translateY(0);}20%{opacity: 1;transform: translateY(-20px);}100%{opacity: 0;transform: translateY(2000px);}}
.animated.bounceOutDown{-webkit-animation-name: bounceOutDown;-moz-animation-name: bounceOutDown;-o-animation-name: bounceOutDown;animation-name: bounceOutDown;}
@-webkit-keyframes bounceOutLeft{0%{-webkit-transform: translateX(0);}20%{opacity: 1;-webkit-transform: translateX(20px);}100%{opacity: 0;-webkit-transform: translateX(-2000px);}}
@-moz-keyframes bounceOutLeft{0%{-moz-transform: translateX(0);}20%{opacity: 1;-moz-transform: translateX(20px);}100%{opacity: 0;-moz-transform: translateX(-2000px);}}
@-o-keyframes bounceOutLeft{0%{-o-transform: translateX(0);}20%{opacity: 1;-o-transform: translateX(20px);}100%{opacity: 0;-o-transform: translateX(-2000px);}}
@keyframes bounceOutLeft{0%{transform: translateX(0);}20%{opacity: 1;transform: translateX(20px);}100%{opacity: 0;transform: translateX(-2000px);}}
.animated.bounceOutLeft{-webkit-animation-name: bounceOutLeft;-moz-animation-name: bounceOutLeft;-o-animation-name: bounceOutLeft;animation-name: bounceOutLeft;}
@-webkit-keyframes bounceOutRight{0%{-webkit-transform: translateX(0);}20%{opacity: 1;-webkit-transform: translateX(-20px);}100%{opacity: 0;-webkit-transform: translateX(2000px);}}
@-moz-keyframes bounceOutRight{0%{-moz-transform: translateX(0);}20%{opacity: 1;-moz-transform: translateX(-20px);}100%{opacity: 0;-moz-transform: translateX(2000px);}}
@-o-keyframes bounceOutRight{0%{-o-transform: translateX(0);}20%{opacity: 1;-o-transform: translateX(-20px);}100%{opacity: 0;-o-transform: translateX(2000px);}}
@keyframes bounceOutRight{0%{transform: translateX(0);}20%{opacity: 1;transform: translateX(-20px);}100%{opacity: 0;transform: translateX(2000px);}}
.animated.bounceOutRight{-webkit-animation-name: bounceOutRight;-moz-animation-name: bounceOutRight;-o-animation-name: bounceOutRight;animation-name: bounceOutRight;}
@-webkit-keyframes rotateIn{0%{-webkit-transform-origin: center center;-webkit-transform: rotate(-200deg);opacity: 0;}100%{-webkit-transform-origin: center center;-webkit-transform: rotate(0);opacity: 1;}}
@-moz-keyframes rotateIn{0%{-moz-transform-origin: center center;-moz-transform: rotate(-200deg);opacity: 0;}100%{-moz-transform-origin: center center;-moz-transform: rotate(0);opacity: 1;}}
@-o-keyframes rotateIn{0%{-o-transform-origin: center center;-o-transform: rotate(-200deg);opacity: 0;}100%{-o-transform-origin: center center;-o-transform: rotate(0);opacity: 1;}}
@keyframes rotateIn{0%{transform-origin: center center;transform: rotate(-200deg);opacity: 0;}100%{transform-origin: center center;transform: rotate(0);opacity: 1;}}
.animated.rotateIn{-webkit-animation-name: rotateIn;-moz-animation-name: rotateIn;-o-animation-name: rotateIn;animation-name: rotateIn;}
@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(90deg);opacity: 0;}100%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(0);opacity: 1;}}
@-moz-keyframes rotateInUpLeft{0%{-moz-transform-origin: left bottom;-moz-transform: rotate(90deg);opacity: 0;}100%{-moz-transform-origin: left bottom;-moz-transform: rotate(0);opacity: 1;}}
@-o-keyframes rotateInUpLeft{0%{-o-transform-origin: left bottom;-o-transform: rotate(90deg);opacity: 0;}100%{-o-transform-origin: left bottom;-o-transform: rotate(0);opacity: 1;}}
@keyframes rotateInUpLeft{0%{transform-origin: left bottom;transform: rotate(90deg);opacity: 0;}100%{transform-origin: left bottom;transform: rotate(0);opacity: 1;}}
.animated.rotateInUpLeft{-webkit-animation-name: rotateInUpLeft;-moz-animation-name: rotateInUpLeft;-o-animation-name: rotateInUpLeft;animation-name: rotateInUpLeft;}
@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(-90deg);opacity: 0;}100%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(0);opacity: 1;}}
@-moz-keyframes rotateInDownLeft{0%{-moz-transform-origin: left bottom;-moz-transform: rotate(-90deg);opacity: 0;}100%{-moz-transform-origin: left bottom;-moz-transform: rotate(0);opacity: 1;}}
@-o-keyframes rotateInDownLeft{0%{-o-transform-origin: left bottom;-o-transform: rotate(-90deg);opacity: 0;}100%{-o-transform-origin: left bottom;-o-transform: rotate(0);opacity: 1;}}
@keyframes rotateInDownLeft{0%{transform-origin: left bottom;transform: rotate(-90deg);opacity: 0;}100%{transform-origin: left bottom;transform: rotate(0);opacity: 1;}}
.animated.rotateInDownLeft{-webkit-animation-name: rotateInDownLeft;-moz-animation-name: rotateInDownLeft;-o-animation-name: rotateInDownLeft;animation-name: rotateInDownLeft;}
@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(-90deg);opacity: 0;}100%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(0);opacity: 1;}}
@-moz-keyframes rotateInUpRight{0%{-moz-transform-origin: right bottom;-moz-transform: rotate(-90deg);opacity: 0;}100%{-moz-transform-origin: right bottom;-moz-transform: rotate(0);opacity: 1;}}
@-o-keyframes rotateInUpRight{0%{-o-transform-origin: right bottom;-o-transform: rotate(-90deg);opacity: 0;}100%{-o-transform-origin: right bottom;-o-transform: rotate(0);opacity: 1;}}
@keyframes rotateInUpRight{0%{transform-origin: right bottom;transform: rotate(-90deg);opacity: 0;}100%{transform-origin: right bottom;transform: rotate(0);opacity: 1;}}
.animated.rotateInUpRight{-webkit-animation-name: rotateInUpRight;-moz-animation-name: rotateInUpRight;-o-animation-name: rotateInUpRight;animation-name: rotateInUpRight;}
@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(90deg);opacity: 0;}100%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(0);opacity: 1;}}
@-moz-keyframes rotateInDownRight{0%{-moz-transform-origin: right bottom;-moz-transform: rotate(90deg);opacity: 0;}100%{-moz-transform-origin: right bottom;-moz-transform: rotate(0);opacity: 1;}}
@-o-keyframes rotateInDownRight{0%{-o-transform-origin: right bottom;-o-transform: rotate(90deg);opacity: 0;}100%{-o-transform-origin: right bottom;-o-transform: rotate(0);opacity: 1;}}
@keyframes rotateInDownRight{0%{transform-origin: right bottom;transform: rotate(90deg);opacity: 0;}100%{transform-origin: right bottom;transform: rotate(0);opacity: 1;}}
.animated.rotateInDownRight{-webkit-animation-name: rotateInDownRight;-moz-animation-name: rotateInDownRight;-o-animation-name: rotateInDownRight;animation-name: rotateInDownRight;}
@-webkit-keyframes rotateOut{0%{-webkit-transform-origin: center center;-webkit-transform: rotate(0);opacity: 1;}100%{-webkit-transform-origin: center center;-webkit-transform: rotate(200deg);opacity: 0;}}
@-moz-keyframes rotateOut{0%{-moz-transform-origin: center center;-moz-transform: rotate(0);opacity: 1;}100%{-moz-transform-origin: center center;-moz-transform: rotate(200deg);opacity: 0;}}
@-o-keyframes rotateOut{0%{-o-transform-origin: center center;-o-transform: rotate(0);opacity: 1;}100%{-o-transform-origin: center center;-o-transform: rotate(200deg);opacity: 0;}}
@keyframes rotateOut{0%{transform-origin: center center;transform: rotate(0);opacity: 1;}100%{transform-origin: center center;transform: rotate(200deg);opacity: 0;}}
.animated.rotateOut{-webkit-animation-name: rotateOut;-moz-animation-name: rotateOut;-o-animation-name: rotateOut;animation-name: rotateOut;}
@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(0);opacity: 1;}100%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(-90deg);opacity: 0;}}
@-moz-keyframes rotateOutUpLeft{0%{-moz-transform-origin: left bottom;-moz-transform: rotate(0);opacity: 1;}100%{-moz-transform-origin: left bottom;-moz-transform: rotate(-90deg);opacity: 0;}}
@-o-keyframes rotateOutUpLeft{0%{-o-transform-origin: left bottom;-o-transform: rotate(0);opacity: 1;}100%{-o-transform-origin: left bottom;-o-transform: rotate(-90deg);opacity: 0;}}
@keyframes rotateOutUpLeft{0%{transform-origin: left bottom;transform: rotate(0);opacity: 1;}100%{transform-origin: left bottom;transform: rotate(-90deg);opacity: 0;}}
.animated.rotateOutUpLeft{-webkit-animation-name: rotateOutUpLeft;-moz-animation-name: rotateOutUpLeft;-o-animation-name: rotateOutUpLeft;animation-name: rotateOutUpLeft;}
@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(0);opacity: 1;}100%{-webkit-transform-origin: left bottom;-webkit-transform: rotate(90deg);opacity: 0;}}
@-moz-keyframes rotateOutDownLeft{0%{-moz-transform-origin: left bottom;-moz-transform: rotate(0);opacity: 1;}100%{-moz-transform-origin: left bottom;-moz-transform: rotate(90deg);opacity: 0;}}
@-o-keyframes rotateOutDownLeft{0%{-o-transform-origin: left bottom;-o-transform: rotate(0);opacity: 1;}100%{-o-transform-origin: left bottom;-o-transform: rotate(90deg);opacity: 0;}}
@keyframes rotateOutDownLeft{0%{transform-origin: left bottom;transform: rotate(0);opacity: 1;}100%{transform-origin: left bottom;transform: rotate(90deg);opacity: 0;}}
.animated.rotateOutDownLeft{-webkit-animation-name: rotateOutDownLeft;-moz-animation-name: rotateOutDownLeft;-o-animation-name: rotateOutDownLeft;animation-name: rotateOutDownLeft;}
@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(0);opacity: 1;}100%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(90deg);opacity: 0;}}
@-moz-keyframes rotateOutUpRight{0%{-moz-transform-origin: right bottom;-moz-transform: rotate(0);opacity: 1;}100%{-moz-transform-origin: right bottom;-moz-transform: rotate(90deg);opacity: 0;}}
@-o-keyframes rotateOutUpRight{0%{-o-transform-origin: right bottom;-o-transform: rotate(0);opacity: 1;}100%{-o-transform-origin: right bottom;-o-transform: rotate(90deg);opacity: 0;}}
@keyframes rotateOutUpRight{0%{transform-origin: right bottom;transform: rotate(0);opacity: 1;}100%{transform-origin: right bottom;transform: rotate(90deg);opacity: 0;}}
.animated.rotateOutUpRight{-webkit-animation-name: rotateOutUpRight;-moz-animation-name: rotateOutUpRight;-o-animation-name: rotateOutUpRight;animation-name: rotateOutUpRight;}
@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(0);opacity: 1;}100%{-webkit-transform-origin: right bottom;-webkit-transform: rotate(-90deg);opacity: 0;}}
@-moz-keyframes rotateOutDownRight{0%{-moz-transform-origin: right bottom;-moz-transform: rotate(0);opacity: 1;}100%{-moz-transform-origin: right bottom;-moz-transform: rotate(-90deg);opacity: 0;}}
@-o-keyframes rotateOutDownRight{0%{-o-transform-origin: right bottom;-o-transform: rotate(0);opacity: 1;}100%{-o-transform-origin: right bottom;-o-transform: rotate(-90deg);opacity: 0;}}
@keyframes rotateOutDownRight{0%{transform-origin: right bottom;transform: rotate(0);opacity: 1;}100%{transform-origin: right bottom;transform: rotate(-90deg);opacity: 0;}}
.animated.rotateOutDownRight{-webkit-animation-name: rotateOutDownRight;-moz-animation-name: rotateOutDownRight;-o-animation-name: rotateOutDownRight;animation-name: rotateOutDownRight;}
@-webkit-keyframes hinge{0%{-webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out;}20%, 60%{-webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out;}40%{-webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out;}80%{-webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out;}100%{-webkit-transform: translateY(700px); opacity: 0;}}
@-moz-keyframes hinge{0%{-moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out;}20%, 60%{-moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out;}40%{-moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out;}80%{-moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out;}100%{-moz-transform: translateY(700px); opacity: 0;}}
@-o-keyframes hinge{0%{-o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out;}20%, 60%{-o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out;}40%{-o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out;}80%{-o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out;}100%{-o-transform: translateY(700px); opacity: 0;}}
@keyframes hinge{0%{transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out;}20%, 60%{transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out;}40%{transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out;}80%{transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out;}100%{transform: translateY(700px); opacity: 0;}}
.animated.hinge{-webkit-animation-name: hinge;-moz-animation-name: hinge;-o-animation-name: hinge;animation-name: hinge;}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn{0%{opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg);}100%{opacity: 1; -webkit-transform: translateX(0px) rotate(0deg);}}
@-moz-keyframes rollIn{0%{opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg);}100%{opacity: 1; -moz-transform: translateX(0px) rotate(0deg);}}
@-o-keyframes rollIn{0%{opacity: 0; -o-transform: translateX(-100%) rotate(-120deg);}100%{opacity: 1; -o-transform: translateX(0px) rotate(0deg);}}
@keyframes rollIn{0%{opacity: 0; transform: translateX(-100%) rotate(-120deg);}100%{opacity: 1; transform: translateX(0px) rotate(0deg);}}
.animated.rollIn{-webkit-animation-name: rollIn;-moz-animation-name: rollIn;-o-animation-name: rollIn;animation-name: rollIn;}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut{0%{opacity: 1;-webkit-transform: translateX(0px) rotate(0deg);} 100%{opacity: 0;-webkit-transform: translateX(100%) rotate(120deg);}}
@-moz-keyframes rollOut{0%{opacity: 1;-moz-transform: translateX(0px) rotate(0deg);} 100%{opacity: 0;-moz-transform: translateX(100%) rotate(120deg);}}
@-o-keyframes rollOut{0%{opacity: 1;-o-transform: translateX(0px) rotate(0deg);} 100%{opacity: 0;-o-transform: translateX(100%) rotate(120deg);}}
@keyframes rollOut{0%{opacity: 1;transform: translateX(0px) rotate(0deg);} 100%{opacity: 0;transform: translateX(100%) rotate(120deg);}}
.animated.rollOut{-webkit-animation-name: rollOut;-moz-animation-name: rollOut;-o-animation-name: rollOut;animation-name: rollOut;}
/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn{0%{-webkit-transform: translateX(100%) skewX(-30deg); opacity: 0;}60%{-webkit-transform: translateX(-20%) skewX(30deg); opacity: 1;}80%{-webkit-transform: translateX(0%) skewX(-15deg); opacity: 1;}100%{-webkit-transform: translateX(0%) skewX(0deg); opacity: 1;}}
@-moz-keyframes lightSpeedIn{0%{-moz-transform: translateX(100%) skewX(-30deg); opacity: 0;}60%{-moz-transform: translateX(-20%) skewX(30deg); opacity: 1;}80%{-moz-transform: translateX(0%) skewX(-15deg); opacity: 1;}100%{-moz-transform: translateX(0%) skewX(0deg); opacity: 1;}}
@-o-keyframes lightSpeedIn{0%{-o-transform: translateX(100%) skewX(-30deg); opacity: 0;}60%{-o-transform: translateX(-20%) skewX(30deg); opacity: 1;}80%{-o-transform: translateX(0%) skewX(-15deg); opacity: 1;}100%{-o-transform: translateX(0%) skewX(0deg); opacity: 1;}}
@keyframes lightSpeedIn{0%{transform: translateX(100%) skewX(-30deg); opacity: 0;}60%{transform: translateX(-20%) skewX(30deg); opacity: 1;}80%{transform: translateX(0%) skewX(-15deg); opacity: 1;}100%{transform: translateX(0%) skewX(0deg); opacity: 1;}}
.animated.lightSpeedIn{-webkit-animation-name: lightSpeedIn; -moz-animation-name: lightSpeedIn; -o-animation-name: lightSpeedIn; animation-name: lightSpeedIn; -webkit-animation-timing-function: ease-out; -moz-animation-timing-function: ease-out; -o-animation-timing-function: ease-out; animation-timing-function: ease-out;}
.animated.lightSpeedIn{-webkit-animation-duration: 0.5s; -moz-animation-duration: 0.5s; -o-animation-duration: 0.5s; animation-duration: 0.5s;}
/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut{0%{-webkit-transform: translateX(0%) skewX(0deg); opacity: 1;}100%{-webkit-transform: translateX(100%) skewX(-30deg); opacity: 0;}}
@-moz-keyframes lightSpeedOut{0%{-moz-transform: translateX(0%) skewX(0deg); opacity: 1;}100%{-moz-transform: translateX(100%) skewX(-30deg); opacity: 0;}}
@-o-keyframes lightSpeedOut{0%{-o-transform: translateX(0%) skewX(0deg); opacity: 1;}100%{-o-transform: translateX(100%) skewX(-30deg); opacity: 0;}}
@keyframes lightSpeedOut{0%{transform: translateX(0%) skewX(0deg); opacity: 1;}100%{transform: translateX(100%) skewX(-30deg); opacity: 0;}}
.animated.lightSpeedOut{-webkit-animation-name: lightSpeedOut; -moz-animation-name: lightSpeedOut; -o-animation-name: lightSpeedOut; animation-name: lightSpeedOut; -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in;}
.animated.lightSpeedOut{-webkit-animation-duration: 0.25s; -moz-animation-duration: 0.25s; -o-animation-duration: 0.25s; animation-duration: 0.25s;}
.animated.periodic{-webkit-animation: fadeInUp 300ms linear 100ms both; -moz-animation: fadeInUp 300ms linear 100ms both; -ms-animation: fadeInUp 300ms linear 100ms both; -o-animation: fadeInUp 300ms linear 100ms both; animation: fadeInUp 300ms linear 100ms both;}
.colorpicker {
	width: 356px;
	height: 176px;
	overflow: hidden;
	position: absolute;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_background.png");
	font-family: Arial, Helvetica, sans-serif;
	display: none;
	z-index: 99999;
	margin-left:0;
}
.colorpicker_color {
	width: 150px;
	height: 150px;
	left: 14px;
	top: 13px;
	position: absolute;
	background: #f00;
	overflow: hidden;
	cursor: crosshair;
}
.colorpicker_color div {
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/colorpicker_overlay.png");
}
.colorpicker_color div div {
	position: absolute;
	top: 0;
	left: 0;
	width: 11px;
	height: 11px;
	overflow: hidden;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/colorpicker_select.gif");
	margin: -5px 0 0 -5px;
}
.colorpicker_hue {
	position: absolute;
	top: 13px;
	left: 171px;
	width: 35px;
	height: 150px;
	cursor: n-resize;
}
.colorpicker_hue div {
	position: absolute;
	width: 35px;
	height: 9px;
	overflow: hidden;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_indic.gif") left top;
	margin: -4px 0 0 0;
	left: 0px;
}
.colorpicker_new_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 213px;
	top: 13px;
	background: #f00;
}
.colorpicker_current_color {
	position: absolute;
	width: 60px;
	height: 30px;
	left: 283px;
	top: 13px;
	background: #f00;
}
.colorpicker input {
	background-color: transparent;
	border: 1px solid transparent;
	position: absolute;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #898989;
	top: 4px;
	right: 11px;
	text-align: right;
	margin: 0;
	padding: 0;
	height: 11px;
}
.colorpicker_hex {
	position: absolute;
	width: 72px;
	height: 22px;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_hex.png") top;
	left: 212px;
	top: 142px;
}
.colorpicker_hex input {
	right: 6px;
}
.colorpicker_field {
	height: 22px;
	width: 62px;
	background-position: top;
	position: absolute;
}
.colorpicker_field span {
	position: absolute;
	width: 12px;
	height: 22px;
	overflow: hidden;
	top: 0;
	right: 0;
	cursor: n-resize;
}
.colorpicker_rgb_r {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_rgb_r.png");
	top: 52px;
	left: 212px;
}
.colorpicker_rgb_g {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_rgb_g.png");
	top: 82px;
	left: 212px;
}
.colorpicker_rgb_b {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_rgb_b.png");
	top: 112px;
	left: 212px;
}
.colorpicker_hsb_h {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_hsb_h.png");
	top: 52px;
	left: 282px;
}
.colorpicker_hsb_s {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_hsb_s.png");
	top: 82px;
	left: 282px;
}
.colorpicker_hsb_b {
	background-image: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_hsb_b.png");
	top: 112px;
	left: 282px;
}
.colorpicker_submit {
	position: absolute;
	width: 22px;
	height: 22px;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/custom_submit.png") top;
	left: 322px;
	top: 142px;
	overflow: hidden;
}
.colorpicker_focus {
	background-position: center;
}
.colorpicker_hex.colorpicker_focus {
	background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
	background-position: bottom;
}
.colorpicker_slider {
	background-position: bottom;
}

#colorSelector {
	position: relative;
	width: 21px;
	height: 18px;
	background: url("/Portals/_default/Skins/ArzeSara.com/js/colorpicker/images/color-picker.png");
}
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("/Portals/_default/Skins/ArzeSara.com/fonts/fontawesome-webfont.eot?v=4.0.3");
  src: url("/Portals/_default/Skins/ArzeSara.com/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3") format('embedded-opentype'), url("/Portals/_default/Skins/ArzeSara.com/fonts/fontawesome-webfont.woff?v=4.0.3") format('woff'), url("/Portals/_default/Skins/ArzeSara.com/fonts/fontawesome-webfont.ttf?v=4.0.3") format('truetype'), url("/Portals/_default/Skins/ArzeSara.com/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.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.2857142857142858em;
  text-align: center;
}
.fa-ul {
  padding-right: 0;
  margin-right: 2.142857142857143em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  right: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.fa-li.fa-lg {
  right: -1.8571428571428572em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: left;
}
.pull-left {
  float: right;
}
.fa.pull-left {
  margin-left: .3em;
}
.fa.pull-right {
  margin-right: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.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: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.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-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-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 {
  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:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.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-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-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc: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-reply-all:before {
  content: "\f122";
}
.fa-mail-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 {
  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";
}
/*dnnsoftware.ir*/









@-webkit-viewport {width:device-width;}
@-moz-viewport {width:device-width;}
@-ms-viewport {width:device-width;}
@-o-viewport {width:device-width;}
@viewport {width:device-width;}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2014 By BESTDNNSKINS.COM
 * Localization by dnnsoftware.ir
 */

@font-face {
    font-family: "Iranian Sans";
    src: url("/Portals/_default/Skins/ArzeSara.com/fonts/iransans.eot");
    src: local('Iranian Sans'), local('iransans'), url("/Portals/_default/Skins/ArzeSara.com/fonts/iransans.eot?#iefix") format("embedded-opentype"), url("/Portals/_default/Skins/ArzeSara.com/fonts/iransans.woff2") format("x-woff2"), url("/Portals/_default/Skins/ArzeSara.com/fonts/iransans.woff") format("woff"), url("/Portals/_default/Skins/ArzeSara.com/fonts/iransans.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/*--------- Global CSS Reset & Standards ----------*/
Body { margin:0;padding:0; background:#ffffff; }
#Body{ direction:rtl; background:fixed center top #bbb;color:#555; }
html,body{ direction:rtl; margin:0; padding:0; font:normal 12px/1.8em Iranian Sans, Tahoma, sans-serif; color:#555;}
* {font-family:Iranian Sans, Tahoma, sans-serif; }
Body #Form{ height:100%; }
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {border:0; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;} a img{border:0;}
img, object, embed, iframe{ max-width: 100%;}
[class*="map"] img,[id*="map"] img,[class*="Map"] img,[id*="Map"] img, table img{max-width:none!important;}
p{ margin:0 0 8px 0; }
img{border:0; height:auto;}

A:link {text-decoration : none; }
A:visited {text-decoration : none; }
A:hover { color :#555; text-decoration:none;  -moz-transition:color 0.2s linear;  -webkit-transition:color 0.2s linear; -o-transition:color 0.2s linear; -ms-transition:color 0.2s linear; transition:color 0.2s linear; }
A:active {text-decoration : none; }

h1{font-size:14px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h2{font-size:14px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h3{font-size:13px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h4{font-size:13px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h5{font-size:13px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h6{font-size:13px;line-height:1.2em;letter-spacing:0;font-weight:normal;font-family:Iranian Sans, Tahoma, sans-serif;}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {font-family:Iranian Sans, Tahoma, sans-serif;}

.Head{ font-weight:bold; font-size:15px; }
.SubHead { font-weight:bold;  font-size:14px; }
.SubSubHead{ font-size:13px; }
.Normal { font-size:13px; line-height:1.5em; }

/*Bootstrap Reset*/
[id*="ControlPanel"], [id*="ControlPanel"] *, [id*="ControlPanel"] *:after,
.dnn_mact, .dnn_mact *, .dnn_mact *:before, .dnn_mact *:after,
.dnnActionMenu, .dnnActionMenu *, .dnnActionMenu *:before, .dnnActionMenu *:after,
.TB_Wrapper, .TB_Wrapper * { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
[class*="RadAjaxPanel"] *,[class*="Digital"] * { font-size:12px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
ul.list-unstyled, ol.list-unstyled, ul.list-unstyled > li, ol.list-unstyled > li {list-style: none; margin:0;}
ul.row {margin-right: -15px; margin-left: -15px;}
ol, ul {list-style: none;}
ul li { list-style-type:disc; }
ul li li { list-style-type:circle; }
ol li { list-style-type: decimal;}
.nav li { list-style:none!important;}
a{outline:none!important;border:0;}
.btn-primary, .btn-warning, .btn-danger, .btn-success, .btn-info{color:#ffffff!important;}
ul#myTab { padding:0; margin:0; } 
.panel-primary > .panel-heading h3 {color: #ffffff;}
.panel-success > .panel-heading h3 {color: #468847;}
.panel-warning > .panel-heading h3 {color: #c09853;}
.panel-danger > .panel-heading h3 {color: #b94a48;}
.panel-info > .panel-heading h3 {color: #3a87ad;}
.popover {z-index:999;}

/*spacer styles*/
.pe-spacer { clear: both; display: block; margin: 0; min-height: 0 !important;  padding: 0; width: 100%;}
.pe-spacer.size10 { height: 10px;}
.pe-spacer.size20 { height: 20px;}
.pe-spacer.size30 { height: 30px;}
.pe-spacer.size40 { height: 40px;}
.pe-spacer.size50 { height: 50px;}
.pe-spacer.size60 { height: 60px;}
.pe-spacer.size70 { height: 70px;}
.pe-spacer.size80 { height: 80px;}
.pe-spacer.size90 { height: 90px;}
.pe-spacer.size100 { height: 100px;}

/*border styles*/
.left_border{ border-right:1px solid #e9e9e9;}
.right_border{ border-left:1px solid #e9e9e9;}
.top_border{ border-top:1px solid #e9e9e9;}
.bottom_border{ border-bottom:1px solid #e9e9e9;}

/*clear float*/
.clearafter:after{ clear:both; content:"."; height:0px; font-size:0px; visibility:hidden; display:block; }
.clearafter{ display:inline-block; }
.clearafter{ display:block; }
.clear{ clear:both; }
.clear_float{ clear:both;line-height:0;font-size:0;}
.floatl{ float:right;}
.floatr{ float:left;}
.pc_display { display:block;}
.mobile_display { display:none;}

/*--------- Admin Settings Reset ----------*/
.FileManager A, .FileManager A:link, .FileManager A:visited, .FileManager A:active{ color:#000000; text-decoration: underline;}
.FileManager A:hover{ color:#000000; text-decoration:none;}
.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction, a.dnnPrimaryAction:link { color: #FFFFFF; text-decoration : none;}
.dnnActionMenu span { color:#000000!important;}
.ModuleTitle_SubMenu{ z-index:9999!important; }	
.DnnModule{z-index:inherit;}
.dnnFormPopup .ui-dialog-titlebar { min-height:40px; }
.DNNAligncenter table { margin:0 auto; }
.popover {z-index:9;}
#standardMenu a, #megaMenu a, #leftMenu a { text-decoration:none!important;}
.paneOutline { border:1px dashed #ccc;}

/*--------------------------------------------
               All Design Style                
---------------------------------------------*/

/*prefined text border*/
.skin_dividing{border-top:solid 1px #e5e5e5;border-bottom:solid 1px #e5e5e5;width:100%;max-height:5px;height:5px;} 
.skin_dotted{border-top:dotted 1px #c1c1c1;width:100%;} 
.skin_solid{border-top:solid 1px #eee;width:100%;} 

/*skin layout*/
#skin_wrapper {width:100%; margin:0 auto;position:inherit!important;z-index:1;padding:0; background:#fff;}
#skin_wrapper.boxed {width:1140px;}
.skin_width { width:100%; max-width:1140px;min-width:767px;margin:0 auto;position:relative;}
.mobile_nav{ display:none;}
.banner_bg {background:url("/Portals/_default/Skins/ArzeSara.com/images/banner_shadow.png") no-repeat scroll center top; z-index:9999;}

.skin_main {min-height:650px;background:#fff;}
.skin_content{padding:30px 20px;}
.skin_main_padding{padding:0 20px;}
.content_whitebg{background:#fff; }
.content_graybg{background:#fbfbfb; position:relative;}
.content_graybg:before{ content: ' ';background:#e6e6e6; position: absolute; top: 0; right: 0; width: 100%;height:3%; max-height:1px; z-index:0;}
.content_graybg:after{ content: ' ';background:#e6e6e6; position: absolute; bottom: 0; right: 0; width: 100%;height:3%; max-height:1px; z-index:0;}

.fixed_bg{ background:center center repeat url("/Portals/_default/Skins/ArzeSara.com/images/fixed_bg.jpg") fixed;}
.content_colorbg{position:relative;}

.skin_footer{background:url("/Portals/_default/Skins/ArzeSara.com/images/footer_bg.png") center bottom no-repeat; position:relative;}
.footerpane_style{ background:url("/Portals/_default/Skins/ArzeSara.com/images/footer_shadow.png") center top no-repeat;padding:0 20px;}

.footer_bottom{background:#333; background:rgba(0,0,0,.1);padding:20px 0 10px;}
.footer_left{float:right;padding:3px 15px 0 0; color:#fff;}
.footer_right{float:left; padding:0 0 0 10px;}

.black_footer{background:#373737; position:relative;}
.black_footer_bottom{background:#313131; padding:15px 0 10px;}
.footerrightpane{padding:0 20px;}

/*--------- User style ----------*/
.User, A.User:link, A.User:visited, A.User:active{ padding:3px 0 2px 0; font-size:12px; color:#fff; text-decoration:none;}
A.User:hover{text-decoration:none;}

/*--------- Login style ----------*/
.Login, A.Login:link, A.Login:visited, A.Login:active{ padding:3px 3px 2px 5px; font-size:12px; color:#fff; text-decoration:none;}
A.Login:hover{text-decoration:none; }

/*footer style*/
.Footer, A.Footer:link, A.Footer:visited, A.Footer:active { padding:0px 5px; color:#fff; font-size:13px; text-decoration:none; }
A.Footer:hover { color:#ccc; text-decoration: none;}

/*--------- Pane Style ----------*/
.DNNEmptyPane{ display:none!important;}
.dnnpane > [class*="col-md"] { padding:0 15px; }
.bannerpane { background:url("/Portals/_default/Skins/ArzeSara.com/images/footer_bg.png") no-repeat;}
.bannerpane p{ margin:0;}

.content_grid12 {}
.one_grid4a {}
.one_grid4b{}
.one_grid4c{}
.two_grid3a{}
.two_grid3b {}
.two_grid3c {}
.two_grid3d{}
.three_grid12{}
.four_grid8{}
.four_grid4{}
.five_grid4{}
.five_grid8{}
.six_grid6a{}
.six_grid6b {}
.seven_grid9 {}
.seven_grid3{}
.eight_grid3{}
.eight_grid9{}
.nine_grid3a{}
.nine_grid3b{}
.nine_grid3c{}
.nine_grid3d{}
.ten_grid12{}

.topcolorpane{margin:0;}

.graygrid6a {margin:30px 0;}
.graygrid6b {margin:30px 0;}
.graygrid12 {margin:30px 0;}

.middlegrid12{margin:30px 0;}
.middlegrid6a{margin:30px 0;}
.middlegrid6b{margin:30px 0;}

.middlegraypane{margin:30px 0;}

.middlegraypane{margin:30px 0 0;}
.middlecolorpane{margin:30px 0;}
.middlewhitepane{margin:30px 0;}

.fixedbg3a{margin:30px 0;}
.fixedbg3b{margin:30px 0;}
.fixedbg3c{margin:30px 0;}
.fixedbg3d{margin:30px 0;}
.fixedbg12{margin:30px 0;}

.bottomGrid8{margin:30px 0;}
.bottomGrid4{margin:30px 0;}
.bottomGrid4a{margin:30px 0;}
.bottomGrid4b{margin:30px 0;}
.bottomGrid4c{margin:30px 0;}
.bottomGrid12a{margin:30px 0;}
.bottomGrid12b{margin:30px 0;}

.middleGrid8{margin:30px 0;}
.middleGrid4{margin:30px 0;}
.middleGrid4a{margin:30px 0;}
.middleGrid4b{margin:30px 0;}
.middleGrid4c{margin:30px 0;}
.middleGrid12a{margin:30px 0;}
.middleGrid12b{margin:30px 0;}

.bottomgraygrid6a{margin:20px 0 30px;}
.bottomgraygrid6b{margin:20px 0 30px;}
.bottomgraygrid12{margin:20px 0 30px;}

.footer_grid3a { margin:50px 0 30px;}
.footer_grid3b { margin:50px 0 30px;}
.footer_grid3c { margin:50px 0 30px;}
.footer_grid3d { margin:50px 0 30px;}
.footergrid12 { margin:30px 0 30px;}

.leftsidepane { padding:20px 0; }
.l_one_grid8 {}
.l_one_grid4 {}
.l_two_grid6a {}
.l_two_grid6b {}
.l_three_grid4 {}
.l_three_grid8 {}
.l_four_grid12 {}

/*--------- Scroll Top Style ----------*/
#top-link { background:url("/Portals/_default/Skins/ArzeSara.com/images/scroll_top.png") no-repeat scroll center -4px #999;  background:url("/Portals/_default/Skins/ArzeSara.com/images/scroll_top.png") no-repeat scroll center -4px rgba(0, 0, 0, 0.3); border: 0 none; border-radius: 2px; bottom: 10px; left: 55px; display:block; height:35px; padding:0; width:40px; position: fixed; text-decoration: none; z-index: 903;}
#top-link:hover { background:url("/Portals/_default/Skins/ArzeSara.com/images/scroll_top.png") no-repeat scroll center -42px  #666;  background:url("/Portals/_default/Skins/ArzeSara.com/images/scroll_top.png") no-repeat scroll center -42px rgba(0, 0, 0, 0.6);  -webkit-transition: all 0.2s ease-in 0s; -moz-transition: all 0.2s ease-in 0s; -o-transition: all 0.2s ease-in 0s; transition: all 0.2s ease-in 0s;}

/*--------- Font Awesome ----------*/
.fa_icon_wrapper { padding:0 15px; margin:20px 0 40px;}
.fontawesome-icon-list [class*="col-md-"] { padding:15px 20px; border:1px solid #f2f2f2;  margin: -1px -1px 0 0; color:#666; }
.fontawesome-icon-list [class*="col-md-"]:hover { color:#049AD9;}
.fontawesome-icon-list span.fa {font-size:22px;margin-left: 5px; width: 30px; position: relative;top: 2px;}

/*leftsidebar layout*/
.LM_position { float:right; width:22%;padding:0;}
.LM_skin_content { float:right; min-height:350px; width:78%; padding:0 25px 0 0;}
.LM_main_content{padding:30px 10px 20px 20px;}
.leftside_style { padding:0;}

/*--------- LeftMenu style ----------*/
#leftMenu{position:relative; margin:0 auto;}
#leftMenu ul { list-style:none; margin:0; padding:0;}
#leftMenu li{ display:block; float:none; list-style-type:none; margin:0; padding:0; line-height:normal;}
#leftMenu .leftRoot li a span { display:none;text-decoration:none;} 

/* right submenu */
#leftMenu .leftSub { z-index:900;width:100%; display:none;padding:0; margin:0;}
#leftMenu .leftRoot li.breadcrumb .leftSub { display:block; }
#leftMenu .leftSub ul{ margin:0; padding:0; position:relative; background:none; border:none; z-index:900;}
#leftMenu .leftSub li{float:none; clear:both; padding:0; position:relative; background:#f5f5f5; border:1px solid #ddd; margin:3px 0; }

#leftMenu .leftSub li.item a{ background:none;  }
#leftMenu .leftSub li.item a span{ display:block; font-size:13px; color:#555555; font-weight:bold; white-space:normal; line-height:22px; padding:8px 10px 8px 18px; text-shadow:none; text-transform:none; margin:0; }

#leftMenu .level1{ display: none; }
#leftMenu .leftSub li.breadcrumb .level1{ display: block; border-top:1px solid #fff;}
#leftMenu .level1 li{ background:#fff; margin:0; border:none; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0; }
#leftMenu .level1 li.item a span { font-size:12px; padding-right:23px;}

#leftMenu .level2 { display: block; }
#leftMenu .level2 li{ background-position:21px 18px;  }
#leftMenu .level2 li.item a span { padding-right:30px;}

#leftMenu .level3 { display: block; }
#leftMenu .level3 li{ background-position:27px 18px;  }
#leftMenu .level3 li.item a span { padding-right:36px;}

#leftMenu img.mmIcon {max-height:24px; margin-left: 7px; vertical-align: middle;}
#leftMenu img.rootIcon {max-height:30px; margin-left: 6px; vertical-align: middle;}

#leftMenu .leftSub a span .subarrow{ position:absolute; width:60px; height:48px; left:0; top:0; background:url("/Portals/_default/Skins/ArzeSara.com/images/leftmenu_navarrow.png") no-repeat center 2px; cursor:pointer; }
#leftMenu .leftSub a span .subarrow2{ background-position:center -44px;}
#leftMenu .level1 a span .subarrow { display:none!important;}

@media handheld, only screen and (max-width: 1140px){
#skin_wrapper { width:auto!important; margin:0 auto; }
}

/*--------- CSS Reset for Tablet ----------*/
@media handheld, only screen and (max-width: 991px){
#skin_wrapper { max-width:768px; margin:0 auto;}
.skin_content{padding:20px 20px;}

/*--------- Pane Style ----------*/
.fixedbg12{margin:20px 0;}
.fixedbg5{margin:20px 0;}
.fixedbg7{margin:20px 0;}
.imgbg6a{margin:0 0 20px;}
.imgbg6a{margin:0 0 20px;}
.imgbg12{margin:0 0 20px;}

/*right menu*/
.LM_position { float:none; width:auto; padding:0;}
.LM_skin_content { float:none; width:auto; padding:0;}
#leftMenu { display:none;}

/*--------- Scroll Top  ----------*/
#top-link { bottom: 10px; left: 10px; }
}

/*--------- CSS Reset for Mobile ----------*/
@media handheld, only screen and (max-width: 767px) {
body {-webkit-text-size-adjust:none;}
#skin_wrapper { min-width:300px;}
.skin_width,body{width:100%;min-width:0;}
.floatl, .floatr{ float: none;}
.pc_display {display:none;}
.mobile_display { display:block;}
.footer_bottom{text-align:center;}
.footer_left{float:none;padding-bottom:10px; padding-right:0;}
.footer_right{float:none; padding:0;}

/*--------- pane style ----------*/
.fixedbg3a{margin:10px 0;}
.fixedbg3b{margin:10px 0;}
.fixedbg3c{margin:10px 0;}
.fixedbg3d{margin:10px 0;}
.fixedbg12{margin:10px 0;}

.middlepane{margin:10px 0;}
.middlegrid6a{margin:10px 0;}
.middlegrid6b{margin:10px 0;}

.graygrid6a{margin:10px 0;}
.graygrid6b{margin:10px 0;}
.graygrid12{margin:10px 0;}

.middlecolorpane{margin:10px 0;}
.middlewhitepane{margin:10px 0;}
.darkgraypane{margin:10px 0;}

.bottomGrid6a{margin:10px 0;}
.bottomGrid6b{margin:10px 0;}
.bottomGrid4a{margin:10px 0;}
.bottomGrid4b{margin:10px 0;}
.bottomGrid4c{margin:10px 0;}
.bottomGrid12a{margin:10px 0;}
.bottomGrid12b{margin:10px 0;}
.bottomcolorpane{margin:10px 0;}

.footer_grid3a { margin:10px 0;}
.footer_grid3b { margin:10px 0;}
.footer_grid3c { margin:10px 0;}
.footer_grid3d { margin:10px 0;}
.footergrid12 { margin:10px 0;}

.leftsidepane { padding:10px 0; }

/*--------- Scroll Top Style ----------*/
#top-link {bottom:12px;left:20px;}

/*--------- DNN Default Style Reset ----------*/
.dnnFormPopup { width: 90%!important;}
.LoginPanel, .dnnLogin{width:auto; max-width:480px;}
.dnnLogin  .dnnForm  {min-width: 0; width:auto;}
.dnnLogin  .dnnFormLabel { width:auto; }
.LoginPanel .dnnPrimaryAction{margin-right:82px;}
.LoginPanel .dnnLoginRememberMe{padding-right:82px;}
#dnn_ctr_Login_UP .dnnForm {min-width:280px; width:auto;}
div.dnnRegistrationForm .dnnForm {width:auto;}
div.dnnRegistrationForm .dnnFormItem label, div.dnnRegistrationForm .dnnFormItem .dnnFormLabel, div.dnnRegistrationForm .dnnFormItem .dnnTooltip {width:110px;}
#dnn_ctr_Register_UP  .dnnForm {min-width:280px; max-width:480px; width:auto;}
}
/*!
 *  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";

/* cyrillic-ext */
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/vtwNVMP8y9C17vLvIBNZI_Y6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/9kaD4V2pNPMMeUVBHayd7vY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/ATKpv8nLYAKUYexo8iqqrg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/kTYfCWJhlldPf5LnG4ZnHCEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/g46X4VH_KHOWAAa-HpnGPiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7iEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/0XxGQsSc1g4rdRdjJKZrNPk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nE8xhg-WlD4iG4AP-V7QxYA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nN_eC2PfU-cUGGN7U-FIfKc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLvM2QJLsjx6Keu1D2MYodo.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nNd5cRMOq5PeG3VabknWPxo.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLpX8dGXLalyu5OokvgDQcs.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPVFL0ofnRu5Y2lP-UpEUGU.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBQ_Gf4FfI8J4SYljBAylk.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDrvev4WAjW489CRDHIkJ90.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsCGXDOnx9ptx3UTSPTrfsgk.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsAZ98xO_Wnt-JIem4AuLGfs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsE1G989qbVg6RT5ly5jB8V8.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsJ84zb0nVte6liF9gGtpo1Y.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsD86pq2NkPzVgw_9lpT6RGI.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDAdhzWOYhqHvOZMRGaEyPo.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nDW5FUgIgejJvrHuLWqrSMw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nA30BZHTGu2N_DqssQcMQNQ.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPDoBG10JtAX-GAwn6iwU1Y.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nGhQuge17febRYSUkWKdLWA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBtmDLrZTTOm3p1EhiGCXc.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nEV356qNqHCUb41pS3zqMSE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nHm2hrkyco9jQ3NKMXpgOBg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/7nBxcqTeiPvFX1XVBk6VGw.woff2") format("woff2");
}
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7vk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nFBvb3f1rSHBccuxwv45BuQ.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsL0XspSvAl7ZHo2ORvFbbnU.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPJ02wFZLBBkWNCvnE5Eqks.woff2") format("woff2");
}
@font-face {

  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/GdZvpAq9shJukTEvSQbePw.woff") format("woff");
}
@font-face {

  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7hsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nCj3Mi2hOMP9GNHlaDA9WRI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsK8NE7_Gi-Xz52ZQ_AwfA78.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nJT5GEmoOtNsejy4tIPLwv0.woff") format("woff");
}
.eds_news_Ozone {
  margin-bottom: 30px;
}
.eds_news_Ozone * {
  box-sizing: border-box;
}
.eds_news_Ozone h1,
.eds_news_Ozone h2,
.eds_news_Ozone h3,
.eds_news_Ozone h4,
.eds_news_Ozone h5,
.eds_news_Ozone h6,
.eds_news_Ozone th,
.eds_news_Ozone .in_article_image .image_title {
 
}
.eds_news_Ozone h1, .eds_news_Ozone h2, .eds_news_Ozone h3, .eds_news_Ozone h4, .eds_news_Ozone h5, .eds_news_Ozone h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.2;
}
.eds_news_Ozone h1 {
  font-size: 18px;
}
.eds_news_Ozone h2 {
  font-size: 16px;
}
.eds_news_Ozone h3 {
  font-size: 14px;
}
.eds_news_Ozone h4 {
  font-size: 13px;
}
.eds_news_Ozone h5 {
  font-size: 12px;
}
.eds_news_Ozone h6 {
  font-size: 12px;
}
.eds_news_Ozone p {
  margin: 0 0 15px;
  padding: 0;
}
.eds_news_Ozone ul, .eds_news_Ozone ol {
  margin-left: 15px;
}
.eds_news_Ozone ul {
  list-style-type: disc;
}
.eds_news_Ozone ul ul {
  list-style-type: circle;
}
.eds_news_Ozone ul ul ul {
  list-style-type: square;
}
.eds_news_Ozone ol {
  list-style-type: decimal;
}
.eds_news_Ozone ol ol {
  list-style-type: upper-roman;
}
.eds_news_Ozone ol ol ol {
  list-style-type: lower-roman;
}
.eds_news_Ozone .eds_openModal {
  cursor: pointer;
}
.eds_news_Ozone .edn_clearFix:after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news {

  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_news span, .eds_news_Ozone.eds_subCollection_news a, .eds_news_Ozone.eds_subCollection_news li, .eds_news_Ozone.eds_subCollection_news td, .eds_news_Ozone.eds_subCollection_news table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_news a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news a > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_articleSummary {
  font-size: 13px;
  line-height: 1.3;
  text-align: justify;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleTitle {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle {
  color: #424242;
  font-size: 14px;
  text-align: justify;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 5px 15px 10px 0;
  position: relative;
  border: solid 1px #c81704;
  padding: 3px;
  position: relative;
  overflow: hidden;
  line-height: 0;
  -webkit-transition: all 250ms linear;
  -khtml-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer:hover {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-indent: -99999px;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 3px;
  right: 3px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:before {
  line-height: 1;
  font-family: "FontAwesome";
  content: "";
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  right: 5px;
 
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover:before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
  display: table;
  margin-top: 3px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: block;
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
  background-color: #c81704;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
  display: block;
  color: #fff;
  line-height: 1.2;
 
  font-size: 22px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
    display: inline;
    padding: 0 5px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
  position: relative;
  display: table-cell;
  overflow: hidden;
  text-indent: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:after {
  position: absolute;
  content: "";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s linear;
  -khtml-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a .edn_mediaLink {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #fff;
  opacity: 0;
  border: solid 1px #fff;
  border-radius: 3px;
  padding: 5px;
  line-height: 1;
  font-size: 12px;
  z-index: 2;
  -webkit-transition: opacity 0.3s linear;
  -khtml-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover:after,
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover .edn_mediaLink {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer:before {
  content: "";
  display: inline-block;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  color: #B0B0B0;
  top: 50%;
  left: 50%;
  margin: 0 0 0 -18px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions {
  line-height: 1;
  font-size: 13px;
  position: relative;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a,
.eds_news_Ozone.eds_subCollection_news .admin_action {
  display: inline-block;
  margin: 10px 5px 10px 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  box-shadow: 0 0 2px 0 #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover:before,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover:before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:before,
.eds_news_Ozone.eds_subCollection_news .admin_action:before {
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  opacity: 0.8;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit {
  color: #f89e00;
  border-color: #e78d00;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit:before,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article {
  color: #619c1c;
  border-color: #4c771d;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article:before,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails {
  font-size: 12px;
  line-height: 1.2;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -10%;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_readMoreButtonWrapper {
  margin: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
 
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .fb-comments, .eds_news_Ozone.eds_subCollection_news .fb-comments iframe[style], .eds_news_Ozone.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Ozone.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article_map {
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox {
  clear: none !important;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
  margin-left: 20px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
    margin-left: 17px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  background-color: #B9B9B9;
  cursor: pointer;
  padding: 6px 15px 5px 10px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  margin: 5px 2px;
  position: relative;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton {
    padding: 6px 8px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::after {
  content: "";
  border-left: dotted 1px #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
  font: 14px/1 "FontAwesome";
  color: #fff;
  content: "";
  vertical-align: middle;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
    padding-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
  color: #fff;
  line-height: 1.4;
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-top: 1px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton:hover {
  background-color: #a5a5a5;
}
.eds_news_Ozone.eds_subCollection_news .addthis_inline_share_toolbox,
.eds_news_Ozone.eds_subCollection_news .edNews_fbLike,
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share .edn_socialShareButton {
  font-size: 18px;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share > div {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share:hover > div {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails {
  padding: 10px;
  margin: 10px 0;
  border-top: 1px solid #cac7c7;
  border-bottom: 1px solid #cac7c7;
  box-shadow: 0 2px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
  background-color: #f8f8f8;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventRegistrationModalTrigger {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation {
  padding: 5px 0 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
 
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span:before {
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventLocation:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventDate:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox {
  border: solid 2px #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px 15px 10px;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span {
  position: relative;
  padding: 0 0 6px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span:after {
  border-bottom: 3px solid #cd1301;
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul {
  margin: 20px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 5px 20px;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li:before {
  color: #c81704;
  content: "";
  font: 13px/1.3 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li a {
  margin-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li span {
  font-style: italic;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
  margin-left: -9px;
  margin-right: -9px;
  line-height: 0;
  font-size: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
  padding: 0 9px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  line-height: 0;
  height: 175px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    display: block;
    border: none;
    padding: 0 0 6px;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li + li {
  border-left: dashed 1px #acacac;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
  max-width: 100%;
  display: block;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    float: left;
    margin: 2px 10px 5px 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
  display: block;
  font-size: 13px;
 
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
  border: 1px dashed #bfbfbf;
  background-color: #EDEDED;
  box-shadow: 0 0 0 5px #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
  color: #424344;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: solid 1px #F7F5F5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before {
  content: "";
  font-size: 16px;
  color: #504e4e;
  line-height: 1.1;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_doc:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_docx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odt:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xls:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xlsx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ods:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_zip:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_rar:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_7z:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wav:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wma:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_flac:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp3:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_png:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_gif:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpeg:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpeg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp4:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xvid:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wmv:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogv:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mov:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_avi:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mkv:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ppt:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pptx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odp:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
  color: #999;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border: solid 1px #E5E5E5;
  border-radius: 4px;
  padding: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 5px 30px;
  border-bottom: solid 1px #eee;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
 
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr:last-child td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  display: inline-block;
  border: 1px solid #e78a04;
  background-color: #f9ab3c;
  line-height: 1;
 
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #e78a04;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding: 5px 15px 5px 40px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label:before {
  width: 25px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label {
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #c81704;
  border-radius: 5px;
  background-color: #fff;
  color: #c81704;
  overflow: hidden;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  -webkit-transition: padding 200ms linear;
  -khtml-transition: padding 200ms linear;
  -moz-transition: padding 200ms linear;
  -ms-transition: padding 200ms linear;
  -o-transition: padding 200ms linear;
  transition: padding 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label:before {
  background-color: #dbdbdb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  color: #fff;
  font-family: "FontAwesome";
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  -webkit-transition: width 200ms linear;
  -khtml-transition: width 200ms linear;
  -moz-transition: width 200ms linear;
  -ms-transition: width 200ms linear;
  -o-transition: width 200ms linear;
  transition: width 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:before {
  background-color: #619c1c;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:before {
  background-color: #d61603;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:before {
  background-color: #f89e00;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a {
  text-align: right;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  background-color: #f8f8f8;
  padding: 3px 10px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span {
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity linear 400ms;
  -khtml-transition: opacity linear 400ms;
  -moz-transition: opacity linear 400ms;
  -ms-transition: opacity linear 400ms;
  -o-transition: opacity linear 400ms;
  transition: opacity linear 400ms;
  line-height: 0;
  font-size: 0;
  z-index: 9999;
  margin-bottom: 3px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip:hover .edn_toolTipContent {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 1px transparent;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  max-width: 400px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:after {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  margin-left: 5px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:hover:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails {
  background-color: #e5e5e5;
  border: solid 1px #cac7c7;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff inset;
  padding: 15px;
  margin: 15px 0 0;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails:after {
  content: "";
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > img {
  float: left;
  margin: 0 15px 5px 0;
  background-color: #f8f8f8;
  padding: 7px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button {
  margin: 0 0 0 7px;
  vertical-align: baseline;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:before {
  content: "";
  color: #504e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover:before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .edn_connectWith {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button {
  display: inline-block;
  margin: 10px 0 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 28px;
  min-height: 28px;
  padding-left: 7px;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio {
  border: 1px solid #c81704;
  background: none #fff;
  text-decoration: none;
 
  font-size: 12px;
  text-transform: uppercase;
  color: #c81704;
  line-height: 26px;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:before, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:before {
  margin: -2px 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social {
  border: solid 1px #8d8989;
  color: #8d8989;
  line-height: 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.facebook:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.twitter:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.linked_in:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.google_plus:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails + [class*="article_list_wrapper"] {
  margin-top: 25px;
}
.eds_news_Ozone .edn_module_title {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
 
  font-weight: normal;
  letter-spacing: normal;
  font-size: 24px;
  line-height: 1.1;
}
.eds_news_Ozone .fa {
  font-family: "FontAwesome" !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_news_Ozone.eds_subCollection_calendar {

  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar span, .eds_news_Ozone.eds_subCollection_calendar a, .eds_news_Ozone.eds_subCollection_calendar li, .eds_news_Ozone.eds_subCollection_calendar td, .eds_news_Ozone.eds_subCollection_calendar table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_calendar a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_calendar a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  width: 50%;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;

  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_subCollection_calendar .fc {
  border: solid 1px #c81704 !important;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: solid 1px #c81704;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  font: normal normal 22px/1 "Roboto Condensed", sans-serif;
  color: #c81704;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #c81704;
 
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #504e4e;
  border-color: #c81704;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_rss:before, .eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.events_rss:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #c81704;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #c81704;
  content: "";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a:before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc-widget-header {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #c81704;
  padding: 14px 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc,
.eds_news_Ozone.eds_subCollection_calendar .fc th,
.eds_news_Ozone.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  color: #fff !important;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #c81704;
  font-size: 11px;
  color: #504e4e;
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #504e4e;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #c81704;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.selected > a,
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > a:hover {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.today:after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  margin-top: 25px;
  border-top: solid 1px #dcdcdc;
  padding-top: 25px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div {
  border-bottom: solid 1px #ddd;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse:before {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div.edn_archiveByYear a.edn_archiveLink {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
  color: #504e4e;
  text-decoration: none;
  display: block;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink {
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink {
  font-weight: bold;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse {
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-family: "FontAwesome";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse.collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li ul li > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list > ul > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events {
  margin-top: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  float: right;
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .rss:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .export:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  color: #c81704;
  font-family: "FontAwesome";
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  color: #504e4e;
  text-decoration: none;
 
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #c81704;

  font-size: 13px;
}

.eds_news_Ozone.eds_subCollection_news .child_categories {
  margin-bottom: 40px;
}
.eds_news_Ozone.eds_subCollection_news .edn_categoryInfo {
  margin: 20px 0 30px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory {
  margin: 7px;
  padding: 5px;
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  background-color: #e5e5e5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption > span {
  display: inline-block;
  padding: 5px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
 
  font-size: 15px;
  color: #504e4e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory:hover > img {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a {
 
  font-size: 14px;
  color: #747474;
  text-decoration: none;
  display: inline-block;
  border-bottom: solid 0 transparent;
  margin-bottom: 2px;
  -webkit-transition: border-color 200ms linear;
  -khtml-transition: border-color 200ms linear;
  -moz-transition: border-color 200ms linear;
  -ms-transition: border-color 200ms linear;
  -o-transition: border-color 200ms linear;
  transition: border-color 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:hover {
  border-bottom-color: #c81704;
  border-bottom-width: 2px;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:last-child {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i {
  display: none;
  margin: 0 7px;
  font-family: "FontAwesome";
  font-size: 17px;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i + a + i {
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_categoryMenu {

  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu div, .eds_news_Ozone.eds_subCollection_categoryMenu span, .eds_news_Ozone.eds_subCollection_categoryMenu a, .eds_news_Ozone.eds_subCollection_categoryMenu li {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_categoryMenu ul {
  margin: 0 !important;
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div {
  clear: both;
  overflow: hidden;
  padding: 3px 0 3px 90px;
  border-bottom: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_articlecount, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_rss, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_image, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.expand_collapse {
  display: inline-block;
  vertical-align: top;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  cursor: pointer;
  height: auto !important;
  visibility: visible !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before {
  content: "";
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 14px;
  margin: 0 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
  color: #504e4e;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image > img {
  border: solid 1px #c81704;
  padding: 2px;
  -webkit-transition: border 200ms linear;
  -khtml-transition: border 200ms linear;
  -moz-transition: border 200ms linear;
  -ms-transition: border 200ms linear;
  -o-transition: border 200ms linear;
  transition: border 200ms linear;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover > img {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 15px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 45px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 60px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 75px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #000;
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper {
  height: 50px;
  overflow: auto;
  padding: 20px 0;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div {
  padding: 5px 7px 5px 0;
  margin-right: 7px;
  border-bottom: none;
  border-right: solid 1px #ddd;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div .expand_collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .edn_category {
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .hasChild ul .edn_category {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li ul {
  display: inline-block !important;
  height: auto !important;
  overflow: visible !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span {
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  text-align: center;
  border: solid 1px #eee;
  background-color: #F7F7F7;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span::before {
  font-family: "FontAwesome";
  color: #A9A6A6;
  font-size: 16px;
  line-height: 27px;
  -webkit-transition: color 200ms ease;
  -khtml-transition: color 200ms ease;
  -moz-transition: color 200ms ease;
  -ms-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span:hover::before {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_leftOffset .edn_scrollLeft {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_rightOffset .edn_scrollRight {
  opacity: 1;
  visibility: visible;
}

.eds_news_Ozone.eds_subCollection_news .article_comments {
  margin: 15px 0 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment + .comment_list {
  padding-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list {
  margin-bottom: 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  padding-left: 50px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div {
  float: left;
  margin: 0 20px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div img {
  border: 1px solid #504e4e;
  border-radius: 50%;
  padding: 3px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > div {
  color: #424242;
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > time {
  color: #999;
  font-size: 12px;
  display: block;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions {
  text-align: right;
  clear: both;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a {
  display: inline-block;
  border: 1px solid #909090;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
 
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  background-color: #bdbdbd;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover {
  background-color: #909090;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete {
  background-color: #d94e49;
  border-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover {
  background-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment.level {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .right_side {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes {
  float: left;
  width: 40px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div {
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > input,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > span {
  display: block;
  margin: 0 auto;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list + .add_comment {
  margin-top: 25px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
  padding: 10px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.left {
 
  width: 15%;
  color: #424242;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.right {
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"],
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"] {
  max-width: 300px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea {
  max-width: 370px;
  font-size: 13px;
  min-height: 110px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper {
  border-top: 1px solid #d7d7d7;
  padding-top: 25px;
  clear: both;
  margin-top: 40px;
  width: 90%;
  margin: 40px auto 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_numberOfComments {
  color: #504e4e;

  font-size: 12px;
  line-height: 1;
  padding: 20px 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer {
  font-size: 0;
  line-height: 0;
  margin-bottom: 30px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:first-child, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_userAvatar {
  float: left;
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > span {

  color: #000;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > div {
  margin: 10px 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1;

}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails .edNews_commentText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions {
  text-align: right;
  margin: 20px 0;
  font-size: 12px;
  line-height: 1;

}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span {
  cursor: pointer;
  color: #8b8b8b;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > .edNews__childCommentsContainer {
  margin: 0 0 0 50px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__commentContent {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews_commentActions.main {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_comment {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage {
  box-sizing: border-box;
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;

  color: #ac171e;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 16px;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: Arial;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;

  color: #504e4e;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #c81704;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage > a,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;

}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {

  box-sizing: border-box;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {

  background-color: #c81704;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 16px;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: "FontAwesome";
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "";
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div {
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div img {
  width: 65px;
  height: 65px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper textarea {
  float: left;
  height: 65px;
  margin-top: -65px;
  padding-left: 75px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__replyingToComment .edNews_addComment .edNews__replyingToMessage {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment:after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment:after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment:after {
  position: absolute;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/loadingBigger.gif") center center no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__itemCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger {
  margin: 30px auto;
  text-align: center;
  border: solid 1px #d7d7d7;
  border-left: none;
  border-right: none;
  color: #8b8b8b;

  line-height: 1;
  font-size: 12px;
  display: block;
  padding: 10px 30px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -khtml-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentsHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.eds_news_Ozone .edn_recentCommentsHeader > h4 {
  font-size: 15px;
  line-height: 1.3;
 
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before, .eds_news_Ozone .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone .edn__recentCommentsListContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto Condensed", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #c81704;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 "FontAwesome";
  color: #2c2c2c;
  content: "";
  margin-right: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}

.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_title {
  font-size: 15px;
  line-height: 1.3;
 
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: -1px 20px -1px -1px;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_itemsHidden {
  margin-right: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  font-size: 13px;
  line-height: 1.3;

  color: #888;
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  -webkit-transition: color 0.1s;
  -khtml-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -ms-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  margin: 0;
  padding: 0;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: -1px;
  background: #fff;
  z-index: 10000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  display: block;
  margin: 0;
  padding: 4px 10px 3px;
  border: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e4e4e4;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  width: 30px;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger:after {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  display: block;
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  display: block;
  text-align: center;
  position: absolute;
  top: 7px;
  transition: color 0.1s ease;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header {
  background: transparent;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
  padding-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  -webkit-transition: opacity 500ms ease 300ms;
  -khtml-transition: opacity 500ms ease 300ms;
  -moz-transition: opacity 500ms ease 300ms;
  -ms-transition: opacity 500ms ease 300ms;
  -o-transition: opacity 500ms ease 300ms;
  transition: opacity 500ms ease 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before, .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
  float: left;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
    width: auto;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide article {
  width: auto !important;
  float: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
  float: right;
  width: 48%;
  margin-left: 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide article {
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide.edn_specialFirstArticle article:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div {
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails {
  font: 10px/1.3 "Roboto Condensed", sans-serif;
  color: #808080;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a {
  color: #1b1b1b;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 {
  padding: 0;
  border: 0;
  margin: 10px 0;
  font: 18px/1.3 "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "Roboto Condensed", sans-serif;
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font: 13px/1.3 "PT Sans", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a img {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  font: 10px/1.3;
  opacity: 0.9;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category {
  margin: 0 0 0 7px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a {
  display: inline-block;
  background-color: #c81704;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 20px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a {
  display: inline-block;
  color: #fff;
  background: #828282;
  padding: 4px 15px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a::before {
  content: "";
  color: #fff;
  font-family: "FontAwesome";
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.2em;
  vertical-align: top;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
  width: 48%;
  margin: 0 0 15px 4%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
    float: none;
    margin: 0 0 35px;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article .edn_metaDetails {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 {
  margin: 5px 0 7px;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article:nth-child(2n+1) {
  margin-left: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
  width: 48%;
  padding: 13px 0;
  float: left;
  margin-left: 4%;
  border-top: 1px solid #dfdfdf;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article > a {
  float: left;
  margin: 0 14px 0 0;
  border: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList.edn_biggerPadding article {
  padding: 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article {
  padding: 13px 0;
  border-top: 1px solid #dfdfdf;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article:first-child {
  border-top: none;
  padding-top: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper > article {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_noContent,
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_contentError {
  font: 16px/1.3;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle {
  margin-bottom: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle figure > a img {
  width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper {
  border: solid 1px #e4e4e4;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
  float: right;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
    width: auto !important;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title {
  background: none transparent;
  display: block;
  border-bottom: solid 1px #c81704;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #c81704;
  padding: 5px 25px 4px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title + .edn_verticalListWrapper {
  margin-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
  float: left;
  width: auto;
  border: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
    float: none;
    width: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
  display: block;
  border: solid 1px #e4e4e4;
  border-left-style: none;
  border-top-style: none;
  padding: 8px 25px;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 3px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none;
  position: absolute;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_active {
  border-right-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li:first-child {
  border-top-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: block;
  white-space: normal;
  float: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
    display: inline-block;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  border-right: solid 1px #e4e4e4;
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger {
  position: static;
  padding: 9px 25px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
 
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::after {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::before {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  transition: color 0.1s ease;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList {
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList > li {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper {
  overflow: hidden;
  padding: 20px 20px 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
  float: left;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
    float: none;
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_articleTitle {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_metaDetails {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper {
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination > span {
  margin: 1px 1px 1px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock article {
  opacity: 0;
  max-width: 100%;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a > span {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a {
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child h2 > a {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) h2 > a {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_articleImage {
  -webkit-transition: all 400ms ease-in-out;
  -khtml-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_contentBlock figure > a:hover .edn_articleImage,
.eds_news_Ozone.eds_subCollection_contentBlock h2 > a:hover .edn_articleImage {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__contentBlock_itemList {
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__articleListWrapper {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article h2 > a {
  opacity: 1 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady.edn__contentBlock_loading .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredNextPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredPreviousPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .eds_noContent {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .eds_contentError {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: none;
  margin: 0 auto;
  padding: 0 50px;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_title + .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: right;
  padding: 0;
  margin-right: 30px;
}

.eds_news_Ozone.eds_subCollection_news .user_dashboard {
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #ebebeb;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard:hover {
  background-color: #f2f2f2;
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a {
  display: block;
  float: left;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 0 0 0 35px;
  height: 25px;
  line-height: 24px;
  margin: 0 10px 0 0;
  color: #5C5C5C !important;
  text-decoration: none !important;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.event_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/event_manager.png") no-repeat 0 1px;
  padding-left: 35px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a:hover {
  color: #000 !important;
  text-decoration: none !important;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle + .edn_articleSubTitle {
  margin-top: -15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleSubTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a:before {
  content: "";
  font-family: "FontAwesome";
  color: #6e6e6e;
  font-size: 18px;
  padding-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
  top: 3px;
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
  border-top: dashed 1px #a8a4a4;
  border-bottom: dashed 1px #a8a4a4;
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #c81704;
  font-size: 12px;
  line-height: 1;
 
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #c81704;
  border: solid 1px #c81704;
  text-decoration: none;
  margin: 2px 3px;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .at-resp-share-element .at-share-btn {
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image {
  background-color: #e5e5e5;
  border: solid 1px #d1d2d3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a {
  position: relative;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  content: "";
  border: solid 2px transparent;
  background-color: transparent;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:hover:before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_title {
  margin: 5px 0 0;
  padding: 0;
 
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_description {
  color: #666161;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  clear: both;
  margin: 15px 0;
  padding: 1px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  border-bottom: solid 1px #c81704;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover {
  background-color: #EAEAEA;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover td {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding: 7px 10px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 3px 10px;
  border: none;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}

.eds_news_Ozone.eds_subCollection_news .edn_article {
  margin-bottom: 35px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_metaDetails {
  margin: 10px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary {
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
  font-size: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 1;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > div .admin_action {
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
  font-size: 15px;
  color: #504e4e;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > div .admin_action {
  position: relative;
  z-index: 3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 2;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
  font-size: 15px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
  overflow: hidden;
  position: relative;
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background-color: rgba(200, 24, 5, 0.2);
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer:after {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
  margin-bottom: 3px;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
  margin-bottom: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
  margin: 3px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 {
  margin: 3px 0;
  overflow: hidden;
  padding-bottom: 2px;
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
  font-size: 13px;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
  margin: 0;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before {
  font-size: 14px;
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions > a {
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet {
  float: left;
  padding: 0 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet:before {
  font-family: "FontAwesome";
  color: #c81704;
  font-size: 10px;
  line-height: 0;
  content: "";
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox {
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
  padding: 1.5%;
  line-height: 0;
  font-size: 0;
  max-width: 97%;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  min-height: 100px;
  background-color: #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle {
  font-size: 20px;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after {
  content: "";
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  -webkit-transition: all 400ms linear;
  -khtml-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSubTitle {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption h2.edn_articleTitle:after {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSubTitle {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails > span {
  float: right;
  margin: 0 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section {
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer {
  margin: 0;
  float: none;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a:hover:after {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent {
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleTitle {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleSummary {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time {
  line-height: 1;
  font-size: 13px;
  color: #969696;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section {
  position: relative;
  display: table;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before {
  border-style: solid;
  border-width: 15px;
  border-left-color: #c81704;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time {
  border-right: solid 1px #bfbfbf;
  padding: 8px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span {
  display: block;
  color: #666161;
  line-height: 1.2;
 
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div {
  overflow: hidden;
  padding: 8px 8px 8px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_articleTitle {
  font-size: 19px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMoreButtonWrapper {
  text-align: left;
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover {
  background-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover:after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover:before {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
  width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_sss > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover .edn_sss > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
  float: left;
  margin-top: 20px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
    width: 100% !important;
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
  float: left;
  width: 31.3%;
  padding-left: 3%;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
    width: 100%;
    padding: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
  padding-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
  width: 23.5%;
  padding-left: 2%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 48%;
    padding: 0 1% !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption {
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
    clear: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
  box-sizing: content-box;
  width: 32%;
  padding: 0 0 20px 2%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0 0 20px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList {
  margin-bottom: 0;
  padding: 5px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
  font-size: 16px;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
  margin-bottom: 5px;
  margin-top: 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
  margin: 0 0 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 -1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    float: left;
    width: 48% !important;
    padding-right: 1% !important;
    padding-left: 1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    float: none;
  }
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
  display: table;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
  display: table-cell;
  vertical-align: top;
  width: 140px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: inline-block;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time {
  display: block;
 
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock {
  color: #666161;
  font-size: 40px;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
 
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    background: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
  box-sizing: content-box;
  -moz-box-sizing: border-box;
  padding: 0 8px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
  width: 29px;
  height: 29px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: solid 8px #e2e2e2;
  overflow: hidden;
  margin-top: -5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a > img {
  width: 100%;
  border-radius: 50%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
  margin-left: 30px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-radius: 6px;
  margin-bottom: 35px;
  margin-top: -5px;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 0;
    margin-top: 10px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
  position: absolute;
  content: "";
  top: 15px;
  left: -11px;
  width: 20px;
  height: 20px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-right: none !important;
  border-top: none !important;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header {
  border-bottom: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 #eee;
  padding: 10px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time:before {
  content: "";
  color: #c81704;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport {
  margin-right: 20px;
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover:after {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a {
  color: #666161;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > div {
  padding: 5px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #8a8a8a;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
  background: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
  background-color: #ececec;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before {
  background-color: #ececec;
}

.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList {
  width: 250px;
  margin: 0;
  padding: 0;
  float: left;
  position: fixed;
  height: 600px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track {
  background: transparent;
  position: relative;
  height: 100%;
  width: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb {
  height: 20px;
  width: 10px;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background ease 0.2s;
  border-radius: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb > .end {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: dashed 1px #ddd;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #646262;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a:hover {
  color: #c81704;
  text-decoration: none;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li.edNews__active > a {
  color: #000;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList + div {
  margin-left: 280px;
}

.eds_news_Ozone.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
  border: solid 1px #c81704;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pager > span,
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  display: inline-block;
  font-size: 13px;
 
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #c81704;
  border-right: none !important;
  border-bottom: none !important;
  border-top: none !important;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pagination a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_subCollection_news .article_pagination a:hover {
  color: #fff;
  background-color: #FF9387;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  margin-left: -1px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager {
  float: right;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:first-child {
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.next:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.last:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.last:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.first:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.first:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:before {
  font-family: "FontAwesome";
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.last:after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.first:before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.prev:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling {
  float: none;
  border: none;
  margin: 0 -10px;
  padding: 20px 10px;
  overflow: visible;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a {
  border: solid 1px #c81704 !important;
  border-radius: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
  float: left;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover, .eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
  text-align: center;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
  position: relative;
  padding: 0;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  overflow: hidden;
  width: 75%;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger > span {
  color: #c81704;
 
  line-height: 1;
  font-size: 15px;
  display: block;
  padding: 7px 10px;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer {
  background-color: #fff;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  opacity: 0;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  -webkit-transition: all 500ms ease;
  -khtml-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  -webkit-transition: padding 600ms ease;
  -khtml-transition: padding 600ms ease;
  -moz-transition: padding 600ms ease;
  -ms-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #504e4e;
 
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 240px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage:after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -webkit-transition: left 500ms ease, opacity 800ms;
  -khtml-transition: left 500ms ease, opacity 800ms;
  -moz-transition: left 500ms ease, opacity 800ms;
  -ms-transition: left 500ms ease, opacity 800ms;
  -o-transition: left 500ms ease, opacity 800ms;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage:after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -webkit-transition: right 500ms ease, opacity 800ms;
  -khtml-transition: right 500ms ease, opacity 800ms;
  -moz-transition: right 500ms ease, opacity 800ms;
  -ms-transition: right 500ms ease, opacity 800ms;
  -o-transition: right 500ms ease, opacity 800ms;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}
.eds_news_Ozone .edn_pagination {
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid #c81704;
  text-align: right;
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone .edn_pagination > span {
  padding: 0;
  margin: 1px 0 0 1px;
  border: 0;
  background: #c81704;
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.eds_news_Ozone .edn_pagination > span:after {
  font: 18px/1.3 "FontAwesome";
  color: #fff;
  display: block;
  text-align: center;
  display: block;
  padding: 0 11px 1px;
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_previousPage:after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_previousPage:after {
  content: "";
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_nextPage:after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_nextPage:after {
  content: "";
}

.qtip.edn_calendarbox_Ozone {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #c81704;
  width: 500px;
  max-width: 95%;

  font-size: 13px;
  line-height: 1.1;
  color: #504e4e;

  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Ozone p, .qtip.edn_calendarbox_Ozone span, .qtip.edn_calendarbox_Ozone li, .qtip.edn_calendarbox_Ozone a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Ozone .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title {
  display: block;
 
  font-size: 14px;
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a:hover {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > img {
  float: left;
  margin: 3px 10px 7px 0;
  padding: 3px;
  border: solid 1px #c81704;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
 
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
 
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location:before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
  font-family: "FontAwesome";
  color: #c81704;
  font-style: normal;
  font-weight: normal;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
 
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a:hover {
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png");
  height: 16px;
  left: 2px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -16px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}

.eds_news_Ozone.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none 0 none;
  -khtml-transition: none 0 none;
  -moz-transition: none 0 none;
  -ms-transition: none 0 none;
  -o-transition: none 0 none;
  transition: none 0 none;

  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_search div, .eds_news_Ozone.eds_subCollection_search span, .eds_news_Ozone.eds_subCollection_search a, .eds_news_Ozone.eds_subCollection_search label, .eds_news_Ozone.eds_subCollection_search input {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_search a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_search a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 50% !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .search_input:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input {
  float: left;
  padding: 0 10px;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:focus {
  border: none;
  background: none #fff;
  box-shadow: none;
  -webkit-appearance: none;
  color: #848484;
  line-height: 28px;
  height: 30px;
  font-size: 13px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search {
  padding: 0 5px;
  line-height: 29px;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  border-radius: 0 !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search {
  width: auto;
  clear: both;
  border: 1px solid #c81704 !important;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
 
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline-block;
  padding-left: 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .search_input .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif");
  background-repeat: none;
  background-position: 90% 10%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  padding-right: 35px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;

  margin: 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35px;
  z-index: 1;
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before {
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  font-family: "FontAwesome";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  margin-top: 1px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 28px;
  height: 30px;
  color: #848484;
  font-size: 13px;
  width: 100%;
  background: none #fff;

  margin: 0;
  padding: 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 45px;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  padding: 2px;
  background-color: #d6d6d6;
  height: 13px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7 #c7c7c7 #d3d3d3;
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: block;
  height: 7px;
  border-radius: 4px;
  background-color: #c3c3c3;
  border: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #c81704;
  border-style: solid;
  border-width: 1px;
  border-color: #931103 #931103 #bf1604;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #eeeff0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-color: #d4d8de;
  height: 20px;
  width: 20px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 50%;
  box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c71704;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #c81704;
  position: absolute;
  white-space: nowrap;
  top: 25px;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  top: 25px;
  font-size: 12px;
  line-height: 1;
  color: #a8a8a8;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > input,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label:before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label:before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label:before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label:before {
  background-position: 0 bottom;
  content: "";
  font-size: 8px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  color: #848484;
  font-size: 13px;

  height: 30px;
  line-height: 28px;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-left: none;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 30px;
  padding: 0 11px;
  color: #c81704;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a {
  display: inline-block;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
 
  font-size: 12px;
  line-height: 29px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit {
  border: 1px solid #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 21px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset {
  border: solid 1px #ddd;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover {
  color: #504e4e;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a + a {
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField:after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Ozone .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_Ozone .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Ozone {
  padding: 0px;
  border: 1px solid #c81704;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Ozone ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Ozone ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Ozone ul li span a {
  padding: 2px 10px;
  display: block;
  font-size: 12px;
  color: #504e4e;
  text-decoration: none;
  border: solid 1px transparent;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.EDN_search.theme_Ozone ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Ozone ul li.acSelect a {
  background-color: #f8f8f8;
  border-color: #d4d4d4 transparent;
  color: #c81704;
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.eds_news_Ozone.eds_subCollection_tagCloud div, .eds_news_Ozone.eds_subCollection_tagCloud a, .eds_news_Ozone.eds_subCollection_tagCloud span {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a {
  border: solid 1px #c81704;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 5px 5px 0;
  display: inline-block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span {
  display: inline-block;
  color: #c81704;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: bold;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span:first-child {
  background-color: #c81704;
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #c81704;
}

.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_title {
  cursor: pointer;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion {
    height: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section {
  margin: 0 0 5px;
  padding: 0;
  border: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  color: #504e4e;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover:after {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after {
  position: absolute;
  content: "";
  right: 1%;
  bottom: 5px;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #c81704;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title:after {
  content: "";
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
  padding-right: 30px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header {
  margin: 0;
  padding: 0;
  border: none;
  padding: 10px 30px 10px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:after {
  top: auto;
  bottom: 50%;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3 {
  font-size: 18px;
  color: #504e4e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header .edn_metaDetails {
  margin: 5px 0 10px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
  margin: 0 10px 5px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_metaDetails {
  margin: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edsAccordion_active > header {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3:last-child > header {
  border: none !important;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion {
  border: none;
  position: relative;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
  float: right;
  clear: right;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
    float: none;
    width: auto !important;
    clear: both;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:after {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3 {
  color: #7c7c7c;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails {
  margin: 0 0 5px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
  padding-right: 35px;
  opacity: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding: 0;
    position: static;
    width: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
  position: relative;
  background-color: #c81704;
  padding-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
    display: none;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3 {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before {
  position: absolute;
  content: "";
  width: 0;
  left: -14px;
  right: auto;
  border-width: 14px 7px;
  border-style: solid;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  top: 50%;
  margin-top: -14px;
  bottom: auto;
  display: block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
  visibility: visible;
  opacity: 1;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft > header {
  float: left;
  clear: left;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft .edsAccordion_contentWrapper {
  padding-right: 0;
  padding-left: 35px;
  left: auto;
  right: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft.edsAccordion_active > header:before {
  left: auto;
  right: -14px;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after, .eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before {
  display: block;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone .edsTabulator .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
 
  font-size: 16px;
  border: solid 1px #c81704;
  border-bottom: none !important;
  padding: 7px 10px;
  margin: 0;
  line-height: 1;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone .edsTabulator .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li + li {
  border-left: none !important;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:first-child {
  border-radius: 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:last-child {
  border-radius: 0 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:hover {
  color: #c81704;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0;
  bottom: 100%;
  border: solid 1px #c81704;
  border-radius: 0 5px 5px 5px;
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  height: auto;
  bottom: 0;
}

.eds_news_Ozone.eds_subCollection_news .edn_sss {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  background-color: rgba(27, 25, 21, 0.5);
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover:before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover:before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  left: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext {
  right: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover,
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover {
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > div {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > img + img ~ div {
  display: block;
}

.eds_news_Ozone.eds_subCollection_news.eds_print .article_gallery,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_comments,
.eds_news_Ozone.eds_subCollection_news.eds_print .fb-comments,
.eds_news_Ozone.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_Ozone.eds_subCollection_news.eds_print .admin_action,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Ozone.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_aditionalBox,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_authorGroupDetails,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_galleryLink,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_pager,
.eds_news_Ozone.eds_subCollection_news.eds_print .detailsArticleDefaultWithTabs,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation,
.eds_news_Ozone.eds_subCollection_news.eds_print [class*="eds_GravityGallery_"] {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_title {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .eds_tabsNav {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative !important;
  visibility: visible !important;
  top: auto !important;
  padding: 0 !important;
  border: none !important;
  opacity: 1 !important;
}
/*Fix RTL EDN Dashbord 2018*/
.rtl .eds_subCollection_news .user_dashboard a { float: right; font-family: inherit !important; }
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";

/* vietnamese */
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCP8zf_FOSsgRmwsS7Aa9k2w.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCD0LW-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: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCOgdm0LZdjqr5-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;
}
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCBUOjZSKWg4xBWp_C_qQx0o.woff2") format("woff2");
}
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCBa1RVmPjeKy21_GQJaLlJI.woff") format("woff");
}
.eds_news_NewsTwo {
  font-size: 12px;
  font-family: Arial;
}
.eds_news_NewsTwo * {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_NewsTwo h1, .eds_news_NewsTwo h2, .eds_news_NewsTwo h3 {
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
  letter-spacing: normal;
}
.eds_news_NewsTwo p {
  padding-bottom: 16px;
  margin: 0;
}
.eds_news_NewsTwo .edn_module_box, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list {
  margin: 0 0 10px 0;
  border: solid 2px #ebebeb;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title {
  background: #ebebeb;
  font-family: "Francois One", serif;
  font-size: 20px;
  line-height: 1.2;
  padding: 5px 10px;
  margin: 0px;
  letter-spacing: normal;
  font-weight: normal;
  color: #2f2f2f;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss {
  float: right;
  width: 12px;
  height: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rssEventsExportIcons/predefined/green_actions.png") no-repeat -26px 0;
  margin: 4px 0 0 5px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss.sidebar-news-module-rss, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss.sidebar-news-module-rss, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss.sidebar-news-module-rss {
  margin-top: 0;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss span, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss span, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss span {
  display: none;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss:hover, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss:hover, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss:hover {
  background-position: -26px -16px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export {
  float: right;
  width: 12px;
  height: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rssEventsExportIcons/predefined/green_actions.png") -13px 0;
  margin-top: 4px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export span, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export span, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export span {
  display: none;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export:hover, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export:hover, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export:hover {
  background-position: -13px -16px;
}
.eds_news_NewsTwo .eds_openModal {
  cursor: pointer;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud {
  margin: 0 0 20px 0;
  border: solid 2px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud > .edn_module_title {
  background: #ebebeb;
  font-family: "Francois One", serif;
  font-size: 20px;
  padding: 5px 10px;
  margin: 0px;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: normal;
}
.eds_news_NewsTwo .clear-content {
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none;
  -khtml-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.eds_news_NewsTwo.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input {
  border: solid 2px #676767;
  background-color: #fff;
  height: 33px;
  position: relative;
  padding-left: 32px;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input > .input input[type="text"] {
  line-height: 33px;
  height: 33px;
  float: left;
  width: 100%;
  padding: 0 0 0 7px;
  border: none;
  color: #a9a8a8;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  box-shadow: none;
  margin: 0;
  background: none transparent;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input .do_search {
  float: left;
  width: 32px;
  height: 33px;
  display: block;
  background-color: transparent;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  border-style: none;
  border-width: 0;
  border-color: transparent;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input .do_search span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  background: none transparent !important;
  padding: 0;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside > .input input[type="text"] {
  line-height: 33px;
  height: 33px;
  float: left;
  width: 96%;
  padding: 0 0 0 2%;
  border: solid 2px #676767;
  background-color: #fff;
  color: #a9a8a8;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search {
  float: right;
  clear: both;
  width: 125px;
  height: 33px;
  display: block;
  background: #ebebeb url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png") no-repeat center right;
  border: solid 1px #676767;
  padding-left: 10px;
  position: relative;
  margin: 15px 3px;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search span {
  display: inline;
  line-height: 33px;
  font-size: 14px;
  color: #828282;
  font-family: Arial;
  font-weight: bold;
  text-shadow: 1px 1px 1px #fff;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-color: #f1f1f1;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch {
  border: 2px solid #EBEBEB;
  margin: 0 0 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch:after {
  content: "";
  clear: both;
  width: 100%;
  display: table;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: #EBEBEB url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/advanced-search-title-icon.png") no-repeat 95% 4px;
  margin: 0;
  padding: 5px 10px;
  position: relative;
  line-height: 24px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title > span {
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-weight: normal;
  letter-spacing: normal;
  padding: 0;
  text-transform: none;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 5px 10px 15px;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div + span {
  padding-top: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 28px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d4d4d4;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  color: #848484;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  -webkit-appearance: none;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #363636;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b5b5;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #ffffff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/select-pointer.png") no-repeat scroll right top;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  height: 30px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
  font-family: Arial;
  font-size: 12px;
  padding-left: 6px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  border-left: 1px solid #d4d4d4;
  bottom: 0;
  content: "";
  display: block;
  height: 28px;
  position: absolute;
  right: 28px;
  top: 0;
  width: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_NewsTwo.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: 1px solid #d4d4d4;
  border-radius: 3px;
  margin-top: 1px;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_NewsTwo.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_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
  font-size: 13px;
  color: #333;
  font-family: Arial;
  line-height: 1.3;
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #B5B5B5;
  margin: 2px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  content: "";
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat center center #72A819;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
  font-size: 13px;
  color: #333;
  font-family: Arial;
  line-height: 1.3;
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label:before,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #B5B5B5;
  margin: 2px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName {
  font-weight: bold;
  font-family: Arial;
  font-size: 13px;
  color: #333;
  line-height: 2;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  padding: 2px 10px 2px 0;
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"] {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before {
  content: "";
  background: #72A819 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/radioButtons/predefined/checked.png") no-repeat center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 2px 10px 2px 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Arial;
  font-size: 13px;
  color: #333;
  line-height: 2;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"] {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  content: "";
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat center center #72A819;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label > span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label > span {
  color: #333;
  font-family: Arial;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.3;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"] {
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff none;
  color: #848484;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 5px 2%;
  width: 95.9%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #333333;
  font-family: Arial;
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 9px;
  top: 5px;
  border-style: solid;
  border-width: 3px 4px;
  border-color: #e8e8e8;
  background-color: #d2d2d2;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.4) inset;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: none;
  background: none #87bf1f;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.2) inset;
  height: 9px;
  top: 8px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/rangeslider-pointer.png") no-repeat 0 0;
  width: 18px;
  height: 18px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 4px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #5e9700;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial;
  top: 26px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 20px;
  font: 10px/1 Arial;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #fff none;
  color: #848484;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 7px 2%;
  width: 100%;
  margin: 0;
  box-shadow: none;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #5e9700;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png") 0 0 no-repeat #e5e5e5;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  line-height: 33px;
  padding: 0 10px 0 37px;
  text-decoration: none;
  box-shadow: 1px 1px 1px #fff inset;
  margin-top: 10px;
  display: inline-block;
  transition: background 0.3s ease-in-out;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  font: 13px/1 Arial;
  text-shadow: 1px 1px 1px #fff;
  color: #333333;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover span {
  color: #000;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
  padding: 0 10px;
  margin-left: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.8;
  width: 100%;
  z-index: 999;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-top: 25px;
  padding-bottom: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_NewsTwo.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_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-top: -3px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin-top: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit {
  margin-left: 0;
}
.eds_news_NewsTwo .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_NewsTwo .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul {
  padding: 0;
  margin: 0;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div {
  padding: 5px 0 4px 58px;
  border: solid 1px #fff;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div a {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .category {
  font-weight: normal;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: normal;
  display: inline;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .category:hover {
  color: #598f00;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .image {
  float: left;
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
  margin: 0 5px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.opened > div > a.category {
  color: #609509;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_0 div {
  padding-left: 6px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_1 div {
  padding-left: 12px;
  background: #f5f4f4;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_1 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_2 div {
  padding-left: 26px;
  background: #fcfafa;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_2 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_3 div {
  padding-left: 33px;
  background: #f5f5f5;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_3 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_4 div {
  padding-left: 40px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_5 div {
  padding-left: 47px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.active > div > a.category {
  font-weight: bold;
  color: #609509;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .articlecount {
  font-weight: normal;
  padding: 0px 6px;
  background: #72a819;
  border-radius: 12px;
  float: right;
  color: #fff;
  font-size: 10px;
  margin-right: 4px;
  height: 19px;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .articlecount:hover {
  text-decoration: none;
  background: #a2a2a2;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/categoryMenuRssIcon/predefined/green_rss.png") no-repeat 0 0;
  float: left;
  width: 12px;
  height: 16px;
  text-indent: -9999px;
  margin: -2px 7px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .rss:hover {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 0;
  width: 19px;
  height: 19px;
  text-indent: -9999px;
  margin-right: 4px;
  cursor: pointer;
  display: inline-block;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .expand_collapse.collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 -19px;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud {
  font-size: 0;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags {
  padding: 9px;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a {
  color: #737373;
  font-size: 12px;
  font-family: Arial;
  margin: 0 4px 4px 0;
  text-decoration: none;
  white-space: pre-wrap;
  border: solid 1px #dddddd;
  background: #ebebeb;
  border-radius: 4px;
  padding: 4px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a span {
  font-size: 10px;
  background: #fff;
  border: solid 1px #d3d4d4;
  border-radius: 7px;
  padding: 0px 5px;
  height: 10px;
  line-height: 10px;
  margin: 0 0 0 5px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a:hover {
  color: #fff;
  background: #98cf45;
  border-color: #98cf45;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a:hover span {
  border-color: #7cba1d;
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle2 {
  padding: 1px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 13px;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 14px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 15px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 16px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 17px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle7 {
  font-size: 18px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle8 {
  font-size: 19px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle9 {
  font-size: 20px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle10 {
  font-size: 30px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect {
  margin: 10px 0;
  text-align: center;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
  width: 50%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 28px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d4d4d4;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  color: #848484;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  -webkit-appearance: none;
  width: 116%;
  margin: 0 30px 0 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #363636;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 2px 3px;
  line-height: 0;
  border: 0;
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a {
  margin: 0 0 0 5px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/calendar_action_buttons.png");
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 16px;
  background-position: 0 0px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month:hover {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 16px;
  background-position: -13px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export:hover {
  background-position: -13px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 16px;
  background-position: -26px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_rss:hover {
  background-position: -26px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.events_rss:hover {
  background-position: -39px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 20px 0;
  border: none;
  font-family: Arial;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table {
  border: solid 1px #ebebeb !important;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background-color: #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  color: #2f2f2f;
  font-family: "Francois One", serif;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months {
  padding: 12px 2%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/callendar-arrows.png") no-repeat 0 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 0;
  text-indent: -9999px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  background-position: 0 -20px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/callendar-arrows.png") no-repeat 0 -40px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a:hover {
  background-position: 0 -60px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.week_days {
  background-color: #72a819;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-bottom: solid 2px #ebebeb;
  line-height: 1.3;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day {
  border-top: solid 1px #ebebeb;
  border-right: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > span {
  color: #111111;
  padding: 8px 6px;
  display: block;
  text-decoration: none;
  background-color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > a:hover {
  background-color: #72a819;
  color: #fff !important;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts > a {
  background-color: #ebebeb;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/day_has_posts-bg.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts > a:hover {
  background-color: #72a819;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/today-has-posts.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts.today > a {
  background-color: #72a819;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/today-has-posts.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events > a {
  background-color: #ffea00;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.today > a {
  font-weight: bold;
  color: #000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.other_month > a {
  background-color: #fff8d5 !important;
  color: #b2b2b2 !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.other_month > a:hover {
  background-color: #72a819 !important;
  color: #fff !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.today > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.today > span {
  background-color: #72a819;
  color: #fff !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.other_month > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.other_month > span {
  color: #b2b2b2;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #111;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  background-color: #fff !important;
  padding: 0;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  display: block;
  padding: 3px 7px 1px;
  margin: 0;
  border: 0;
  text-align: left;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #EDEDED;
  background-color: rgba(0, 0, 0, 0.05);
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #f9f9f9 !important;
  display: block;
  text-align: left;
  color: #3c3c3c !important;
  text-decoration: none;
  font: 10px Arial;
  line-height: 12px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #ffd202;
  background: #fff !important;
  color: #3c3c3c !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box {
  margin: 0;
  padding: 0;
  border: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li {
  border-top: solid 1px #ebebeb;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div {
  border: solid 1px #fff;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div:hover {
  background-color: #EAEAEA;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat scroll 0 0 transparent;
  cursor: pointer;
  float: left;
  height: 19px;
  margin-right: 4px;
  text-indent: -9999px;
  width: 19px;
  margin: 5px 5px 0 5px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .expand_collapse.collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 -19px;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-month {
  color: #3c3c3c;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 7px 9px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-year:hover,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-month:hover {
  color: #72a819;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_year_article_count {
  font-weight: normal;
  padding: 0px 6px;
  background: #72a819;
  border-radius: 12px;
  float: right;
  color: #fff;
  font-size: 10px;
  margin: 6px 9px 0;
  height: 19px;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_year_article_count:hover {
  text-decoration: none;
  background-color: #A2A2A2;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li.active > div > a.edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li.active > div > a.edn_archive-month {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li > div {
  padding-left: 40px;
  background-color: #F5F4F4;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li .edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li .edn_archive-month {
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li {
  line-height: 14px;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li a {
  color: #3C3C3C;
  text-decoration: none;
  font-weight: normal;
  background: transparent;
  padding: 10px 9px 8px 28px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/event_clock.png") no-repeat 9px 11px;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li a:hover {
  color: #598f00;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li span {
  color: #598f00;
  font-weight: normal;
  margin-left: 5px;
  font-size: 11px;
  font-style: italic;
}
.eds_news_NewsTwo.eds_subCollection_news a,
.eds_news_NewsTwo.eds_subCollection_news .admin_action,
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a {
  text-decoration: none;
  color: #5e9700;
}
.eds_news_NewsTwo.eds_subCollection_news a:hover,
.eds_news_NewsTwo.eds_subCollection_news .admin_action:hover,
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a:hover {
  text-decoration: underline;
  color: #5e9700;
}
.eds_news_NewsTwo.eds_subCollection_news .admin_action.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin: 0 2px;
}
.eds_news_NewsTwo.eds_subCollection_news .admin_action.publish, .eds_news_NewsTwo.eds_subCollection_news .admin_action.publish_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article .summary,
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content,
.eds_news_NewsTwo.eds_subCollection_news .edn_articleSummary {
  font-family: Arial;
  color: #2f2f2f;
  line-height: 20px;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article {
  margin: 0 0 20px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article img {
  float: left;
  margin: 4px 14px 10px 0;
  padding: 3px;
  background-color: #fcfcfc;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .article .summary {
  padding: 0 0 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  letter-spacing: normal;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 a {
  color: #121212;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
  line-height: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 a:hover {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_news .article .article-subtitle {
  color: #898989;
  font-family: Arial;
  font-weight: normal;
  line-height: 18px;
  font-size: 14px;
  margin: -7px 0 13px 0;
  padding: 0;
  letter-spacing: normal;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content {
  margin-bottom: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ol {
  margin: 0 0 16px 16px;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ol li ol {
  padding: 3px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ul {
  margin: 0 0 16px 16px;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ul ul {
  padding: 3px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content p {
  padding: 0 0 16px 0;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured {
  position: relative;
  z-index: 1;
  color: #fff;
  float: left;
  margin: 0 15px 5px 0;
  max-width: 100%;
  line-height: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured img {
  border-top: solid 5px #dadada;
  border-right: solid 5px #dadada;
  border-bottom: solid 5px #dadada;
  position: relative;
  max-width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date {
  position: absolute;
  left: 0px;
  bottom: 4px;
  background: #dadada;
  font-family: Arial;
  font-size: 14px;
  color: #2f2f2f;
  padding: 6px 13px 3px 13px;
  text-align: center;
  line-height: 14px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  width: auto;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong {
  font-size: 30px;
  line-height: 30px;
  color: #2f2f2f;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .eds_mediaWrapper {
  max-width: 100%;
  float: left;
  margin: 0 15px 5px 0;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .eds_mediaWrapper .edn_galleryLink {
  bottom: 0;
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 5px;
  right: 5px;
  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_NewsTwo.eds_subCollection_news .article-details .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/NewsTwo/common/photo-24-32.png") no-repeat 0 0;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  content: "";
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink:hover:before {
  opacity: 0.8;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details > iframe {
  width: 100% !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .date-no-image {
  color: #3f3f3f;
  font-size: 12px;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details h1 {
  margin: 0px 0 15px 0;
  font-family: "Francois One", Arial, serif;
  font-size: 24px;
  color: #121212;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: normal;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article-subtitle {
  color: #898989;
  font-family: Arial;
  font-weight: normal;
  line-height: 18px;
  font-size: 14px;
  margin: -15px 0 13px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date,
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_location {
  margin: 0 0 7px 3px;
  padding: 0 0 0 17px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/eventDetails/eventIcons/predefined/green_event_icons.png") no-repeat;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date {
  background-position: 0 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date .export {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/eventDetails/eventIcons/predefined/green_event_icons.png") no-repeat 0 -41px;
  font-size: 11px;
  padding: 2px 0 2px 21px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_location {
  background-position: 0 -19px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image {
  margin-bottom: 10px;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image.left {
  margin: 4px 19px 10px 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image.right {
  margin: 4px 0 10px 19px;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_wrapper img {
  padding: 3px;
  border: solid 1px #dadada;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_title {
  color: #444;
  font-size: 14px;
  font-weight: bold;
  margin: 4px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_description {
  font-size: 11px;
  color: #464646;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-text-wraper {
  margin-top: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper {
  border: solid 1px #ECECEC;
  padding: 3px;
  margin-bottom: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/authorGroupInfo/background/predefined/green_pattern.png") #8bc42e;
  padding: 12px 16px 6px 16px;
  color: #fff;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with {
  font-style: italic;
  overflow: hidden;
  padding-bottom: 10px;
  font-size: 11px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with strong {
  float: left;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/connect-with-icons.png");
  background-repeat: no-repeat;
  color: #fff;
  float: left;
  height: 16px;
  margin: 2px 2px 0 4px;
  padding-left: 16px;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.facebook {
  background-position: 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.twitter {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.linked_in {
  background-position: 0 -48px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.google_plus {
  background-position: 0 -32px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.author_rss {
  background-position: 0 -108px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.contact {
  background-position: 0 -64px;
  padding-left: 21px;
  margin-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.contact span {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.full_bio {
  background-position: 0 -80px;
  padding-left: 21px;
  margin-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.full_bio span {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button span {
  display: none;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details img {
  float: left;
  margin: 4px 13px 10px 0;
  padding: 3px;
  background: #fcfcfc;
  border: solid 1px #69a409;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .author-display-name {
  font-family: Arial;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 18px;
  font-size: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .author-display-name .author_rss {
  display: inline-block;
  width: 12px;
  height: 12px;
  text-indent: -9999px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/white-rss.png") no-repeat 0 0;
  margin-left: 8px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details p {
  line-height: 18px;
  padding-bottom: 3px;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .other-posty-by {
  font-weight: bold;
  font-style: italic;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .other-posty-by a {
  color: #fff;
  text-decoration: underline !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details {
  margin: 13px 0;
  color: #7d7d7d;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details .separator {
  margin: 0 13px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p {
  padding-bottom: 3px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags {
  padding-top: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags a {
  color: #777777;
  padding: 2px 4px;
  background: #ebebeb;
  margin-right: 4px;
  border-radius: 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags a:hover {
  background: #87c02a;
  color: #fff;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin {
  margin: 16px 30px 16px 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin a {
  height: 30px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_compact,
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_expanded {
  height: 20px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_linkedin_counter {
  margin-right: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_printButton {
  float: left;
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 4px 5px 4px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  line-height: 0;
  font-size: 0;
  margin: 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-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_NewsTwo.eds_subCollection_news .article-details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_map {
  margin: 20px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_map img {
  max-width: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery {
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul {
  padding: 0;
  margin: 16px 0 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li {
  float: left;
  margin: 4px;
  padding: 0;
  list-style-type: none;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li img {
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li img:hover {
  border-color: #828282;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments {
  margin: 25px 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment h3 {
  font: 16px Arial;
  color: #2f2f2f;
  margin: 15px 0 0;
  font-weight: bold;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box {
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box .comment_info span {
  font: 12px Arial;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 22px 0 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.left {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #2f2f2f;
  text-shadow: 1px 1px 1px #fff;
  font-weight: bold;
  width: 17%;
  padding: 7px 15px 0 0;
  text-align: right;
  vertical-align: top;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right {
  padding: 0;
  width: 80%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right input.text {
  font: 16px Arial;
  padding: 5px 11px;
  background: #d3d3d3;
  width: 70%;
  color: #2f2f2f;
  border: solid 1px #bfbfbf;
  box-shadow: inset 1px 1px 0px 0px #8E8D97;
  margin: 0 0 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right .submit {
  display: inline-block;
  background-color: #5e9700;
  height: 35px;
  line-height: 35px;
  border: solid 1px #fff;
  text-decoration: none;
  padding: 0 21px;
  color: #fff;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 22px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right .submit:hover {
  background-color: #67a402;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right textarea {
  font: 12px Arial;
  border: none;
  padding: 5px 11px;
  background: #d3d3d3;
  width: 90%;
  height: 100px;
  color: #2f2f2f;
  box-shadow: inset 1px 1px 0px 0px #8E8D97;
  border: solid 1px #bfbfbf;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .num_of_comment {
  background: #fcfcfc;
  border: 1px solid #dadada;
  padding: 5px 15px;
  font: 14px Arial;
  color: #2f2f2f;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .num_of_comment a {
  font: 14px Arial;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes {
  margin-top: 10px;
  width: 7%;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
  padding-top: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .author {
  font-size: 11px;
  font-weight: bold;
  color: #666;
  margin: 3px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 26px;
  height: 31px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_pointer.png") no-repeat transparent;
  position: relative;
  left: 13px;
  top: 13px;
  z-index: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 25px;
  background: #fcfcfc;
  border: 1px solid #dadada;
  min-height: 85px;
  padding: 3px;
  font: 12px Arial;
  color: #939393;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content > div {
  min-height: 65px;
  background: #efefef;
  padding: 10px 11px;
  margin: 0;
  background: #e4e4e4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_bg.png") repeat-x 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content .date_time {
  font-size: 11px;
  color: #a1a1a1;
  margin: 0;
  padding: 0;
  color: #a1a1a1;
  text-shadow: 1px 1px 1px #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0;
  padding: 0 0 5px;
  background: none;
  border: none;
  font: 12px Arial;
  color: #1d1d1d;
  text-shadow: 1px 1px 1px #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions {
  font: 11px Arial;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a {
  color: #929191;
  margin: 0 5px 0 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a.reply {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/actions-comment-replay.png") no-repeat center right;
  padding-right: 15px;
  margin-right: 6px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a:hover {
  color: #444;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions a {
  display: block;
  height: 16px;
  line-height: 16px;
  border: 0;
  text-decoration: none;
  padding: 4px 8px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/input-button-bg.png") repeat-x 0 0;
  font-weight: bold;
  border: solid 1px #b3b3b3;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
  padding-top: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level0, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level1 .arrow, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level2 .arrow, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level3 .arrow {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_pointer_replay.png") no-repeat transparent !important;
  top: -12px !important;
  left: 35px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/articlesRssIcon/predefined/green-rss.png") no-repeat 0 2px transparent;
  padding-left: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box {
  overflow: hidden;
  margin: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box.odd > a {
  background: #eeeeee;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a {
  color: #333333;
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  overflow: hidden;
  line-height: 15px;
  background: #f9f9f9;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a > img {
  margin: 1px 10px 0 0;
  border: solid 1px #dadada;
  padding: 3px;
  background-color: #fcfcfc;
  border-radius: 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a:hover {
  text-decoration: none;
  color: #fff !important;
  background-color: #86bf29;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a:hover > img {
  border-color: #69a409;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles,
.eds_news_NewsTwo.eds_subCollection_news .article_documents,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links {
  border: solid 1px #dbdbdb;
  padding: 3px;
  background: #ececec;
  margin: 0 0 20px;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles > h2,
.eds_news_NewsTwo.eds_subCollection_news .article_documents > h2,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links > h2 {
  font-weight: normal;
  color: #72a819;
  font-size: 18px;
  font-family: Arial;
  padding: 12px 0 0 15px;
  background: #fff;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul {
  margin: 0;
  background: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li {
  list-style-type: none;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li a,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li a {
  color: #5E9700;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a:hover,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li a:hover,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li a:hover {
  color: #5E9700;
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul {
  padding: 9px 16px 20px;
  background: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/list-bullet.png") no-repeat 0 4px;
  padding: 3px 0 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a {
  color: #2f2f2f;
  text-decoration: none !important;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a:hover {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul {
  padding: 9px 16px 14px 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li {
  list-style-type: none;
  padding: 0 0 5px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li > img {
  width: 16px;
  height: 16px;
  margin: -3px 7px 0 0;
  border: none !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul {
  padding: 9px 16px 14px 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/list-bullet.png") no-repeat 0 4px;
  padding: 3px 0 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li span,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li span {
  margin-left: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  background-color: #f2f2f2;
  border: solid 1px #dadada;
  padding: 10px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 5px;
  vertical-align: top;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_NewsTwo.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_NewsTwo.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_NewsTwo.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_NewsTwo.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: 2px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background-color: #b5b5b5;
  float: left;
  width: 13px;
  height: 13px;
  margin: 3px 4px 0 0;
}
.eds_news_NewsTwo.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: #72a819 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/articleDetailsCustomFields/checkboxBackground/predefined/cf-checkbox.png") no-repeat center center;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
  margin: 15px 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 100%;
  text-align: center;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger {
  display: inline-block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer {
  padding: 3px;
  display: inline-block;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span {
  display: inline-block;
  background-color: #ebebeb;
  padding: 5px 20px;
  font: normal 14px/1.3 Arial;
  color: #a19e9e;
  text-shadow: 1px 1px 0 #fff;
  -webkit-transition: color;
  -khtml-transition: color;
  -moz-transition: color;
  -ms-transition: color;
  -o-transition: color;
  transition: color;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/loadingArticles.gif") center center no-repeat #fff;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay > span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span {
  color: #636363;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_registerEventDetails {
  margin: 0 0 0 15px;
  padding: 0;
  float: left;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventPrice {
  float: right;
  margin: 7px;
  font-family: "Francois One", Arial, serif;
  font-size: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_NewsTwo.eds_subCollection_news .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_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  padding: 8px 20px;
  line-height: 1;
  background: none #76a220;
  border: solid 1px #4d7a03;
  box-shadow: 0 25px 25px -25px #9eca48 inset, 0 0 0 1px #fff inset;
  color: #fff;
  font-weight: bold;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  box-shadow: 0 -25px 25px -25px #9eca48 inset, 0 0 0 1px #fff inset;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventSeparator {
  border: none;
  border-bottom: 1px solid #dadada;
  outline: none;
  height: 0;
  margin: 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #EBEBEB;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F1F1F1;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border: none;
  border-bottom: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin: 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_NewsTwo.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_NewsTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label:after {
  display: none;
}
.eds_news_NewsTwo.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);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.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;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label:hover:after {
  opacity: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:after {
  background-color: #d9534f;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:after {
  background-color: #f0ad4e;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .admin_action,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_date .export {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_date,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_location {
  background: none transparent;
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .edn_socialPrintWrapper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .article_gallery,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .meta-text-wraper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .meta-details,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .details-wraper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .article_comments,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .fb-comments,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details #disqus_thread,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .related_articles,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article_documents,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_article_links {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  -webkit-transition: all 500ms ease;
  -khtml-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  -webkit-transition: padding 600ms ease;
  -khtml-transition: padding 600ms ease;
  -moz-transition: padding 600ms ease;
  -ms-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #2f2f2f;
  font-family: "Francois One", serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage:after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -webkit-transition: left 500ms ease, opacity 800ms;
  -khtml-transition: left 500ms ease, opacity 800ms;
  -moz-transition: left 500ms ease, opacity 800ms;
  -ms-transition: left 500ms ease, opacity 800ms;
  -o-transition: left 500ms ease, opacity 800ms;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage:after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -webkit-transition: right 500ms ease, opacity 800ms;
  -khtml-transition: right 500ms ease, opacity 800ms;
  -moz-transition: right 500ms ease, opacity 800ms;
  -ms-transition: right 500ms ease, opacity 800ms;
  -o-transition: right 500ms ease, opacity 800ms;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}
.eds_news_NewsTwo .meta-text-wraper {
  border: solid 1px #dadada;
  padding: 3px;
  background-color: #fcfcfc;
  clear: both;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text {
  background: #ebebeb;
  padding: 2px;
  overflow: hidden;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div {
  float: left;
  height: 26px;
  line-height: 26px;
  color: #777777;
  margin-right: 18px;
  padding-left: 29px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 0;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author a {
  color: #777777;
  text-decoration: none;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.newstwo-comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 -37px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 -74px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating .article_rating {
  display: inline-block;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png");
  height: 16px;
  top: 3px;
  left: 2px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png") left -32px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png") left -16px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_NewsTwo .user_dashboard {
  background: #f5f4f4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/user_dashboard_bg.png") 0 0 repeat-x;
  border: 1px solid #f1efef;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
}
.eds_news_NewsTwo .user_dashboard:hover {
  background-color: #fbfbfb;
  border-color: #e1e1e1;
}
.eds_news_NewsTwo .user_dashboard a {
  display: block;
  float: left;
  color: #2f2f2f !important;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 4px 0 0 35px;
  height: 21px;
  margin: 0 10px 0 0;
  text-decoration: none;
}
.eds_news_NewsTwo .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_NewsTwo .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_NewsTwo .user_dashboard a.event_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/event_manager.png") no-repeat 0 1px;
  padding-left: 35px;
}
.eds_news_NewsTwo .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_NewsTwo .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_NewsTwo .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_NewsTwo .user_dashboard a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .article_pager,
.eds_news_NewsTwo .article_pagination {
  text-align: center;
  padding: 15px;
}
.eds_news_NewsTwo .article_pager table,
.eds_news_NewsTwo .article_pagination table {
  margin: 15px auto;
}
.eds_news_NewsTwo .article_pager span,
.eds_news_NewsTwo .article_pagination span {
  background: #aaaaaa;
  color: #fff !important;
  border: solid 1px #cbcbcb;
  line-height: 23px;
  border-radius: 15px;
  padding: 4px 8px;
  margin: 0 2px;
  font-weight: bold;
}
.eds_news_NewsTwo .article_pager a,
.eds_news_NewsTwo .article_pagination a {
  display: inline;
  border: solid 1px #cbcbcb;
  line-height: 23px;
  border-radius: 15px;
  padding: 4px 8px;
  margin: 0 2px;
  text-decoration: none !important;
  font-family: Arial;
  font-size: 12px;
  color: #aaaaaa !important;
  font-weight: bold;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.eds_news_NewsTwo .article_pager a:hover,
.eds_news_NewsTwo .article_pagination a:hover {
  background: #efefef;
  text-decoration: none;
}
.eds_news_NewsTwo .article_pager a.active,
.eds_news_NewsTwo .article_pagination a.active {
  background: #aaaaaa !important;
  color: #fff !important;
}
.eds_news_NewsTwo .featured-multi {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 100%;
  border-top: solid 5px #dadada;
  border-right: solid 5px #dadada;
  border-bottom: solid 5px #dadada;
}
.eds_news_NewsTwo .featured-multi img {
  position: relative;
  max-width: 100%;
}
.eds_news_NewsTwo .featured-multi .newstwo-date {
  position: absolute;
  left: 0px;
  bottom: 0;
  background: #dadada;
  font-family: Arial;
  font-size: 14px;
  color: #2f2f2f;
  padding: 6px 13px 2px 13px;
  text-align: center;
  line-height: 14px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  width: auto;
  height: auto;
}
.eds_news_NewsTwo .featured-multi .newstwo-date strong {
  font-size: 30px;
  line-height: 30px;
}
.eds_news_NewsTwo .featured-multi .intro {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/intro-bg.png");
  padding: 2% 2% 1% 2%;
}
.eds_news_NewsTwo .featured-multi .intro h2 {
  color: #fff;
  margin-bottom: 13px;
  padding: 0;
}
.eds_news_NewsTwo .featured-multi .intro h2 a {
  color: #fff;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 24px;
}
.eds_news_NewsTwo .featured-multi .intro h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .featured-multi .intro > div {
  margin-left: 53px;
  line-height: 14px;
  overflow: hidden;
  height: 59px;
}
.eds_news_NewsTwo .featured-multi .intro > div p {
  margin: 0;
}
.eds_news_NewsTwo .featured-multi.no-image {
  color: #2f2f2f !important;
  border: none;
}
.eds_news_NewsTwo .featured-multi.no-image h2 {
  margin-bottom: 13px;
  padding: 0;
}
.eds_news_NewsTwo .featured-multi.no-image h2 a {
  color: #2f2f2f;
  text-decoration: none;
  font-size: 24px;
  font-family: "Francois One", Arial, serif;
}
.eds_news_NewsTwo .featured-multi.no-image h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .featured-multi.no-image .newstwo-date {
  float: left;
  position: relative;
  margin: 3px 15px 10px 0;
}
.eds_news_NewsTwo .featured-multi.no-image .admin_actions {
  position: relative;
  float: right;
  top: 0;
  right: 0;
  margin-left: 15px;
}
.eds_news_NewsTwo .featured-multi .admin_actions {
  border: solid 1px #dadada;
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 3px 10px;
  background-color: #ebebeb;
  z-index: 3;
}
.eds_news_NewsTwo .featured-multi .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .featured-multi .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .two-articles-row {
  margin-top: 21px;
  overflow: hidden;
}
.eds_news_NewsTwo .two-articles-row h2 {
  margin: 0 0 11px 0;
  line-height: 21px;
  padding: 0;
}
.eds_news_NewsTwo .two-articles-row h2 a {
  text-decoration: none;
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
}
.eds_news_NewsTwo .two-articles-row h2 a:hover {
  text-decoration: underline;
  color: #121212;
}
.eds_news_NewsTwo .two-articles-row .date-comments {
  color: #949494;
  margin-top: 11px;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span {
  padding: 0 20px 0 20px;
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/date-comments-icons.png") no-repeat 0 0;
  line-height: 16px;
  margin-bottom: 4px;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span.newstwo-date {
  background-position: 0 0;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span.newstwo-comments {
  background-position: 0 -18px;
  padding-right: 0px;
}
.eds_news_NewsTwo .two-articles-row .date-comments a {
  color: #949494;
  text-decoration: none;
}
.eds_news_NewsTwo .two-articles-row .date-comments a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row {
  border: solid 1px #dadada;
  width: 45.3%;
  float: right;
  padding: 1.2% 1.5% 1%;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row:first-child {
  float: left;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row img {
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row.edn_articleWrapper {
  margin: 0 5px 10px !important;
  padding: 7px;
}
.eds_news_NewsTwo .one-article-row {
  margin-top: 21px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row {
  border: solid 1px #dadada;
  padding: 2% 2% 1% 2%;
  overflow: hidden;
  margin-bottom: 19px;
  width: auto;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row img {
  float: left;
  margin: 0 12px 10px 0;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 {
  margin: -3px 0 0 0;
  padding: 0;
  line-height: 21px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 a {
  text-decoration: none;
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 a:hover {
  text-decoration: underline;
  color: #121212;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .one-article-row .date-comments {
  color: #949494;
  margin-top: 11px;
  overflow: hidden;
}
.eds_news_NewsTwo .one-article-row .date-comments > span {
  padding: 0 20px 0 20px;
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/date-comments-icons.png") no-repeat 0 0;
  line-height: 16px;
  margin-bottom: 4px;
  font-family: Arial;
  font-size: 12px;
}
.eds_news_NewsTwo .one-article-row .date-comments > span.newstwo-date {
  background-position: 0 0;
}
.eds_news_NewsTwo .one-article-row .date-comments > span.newstwo-comments {
  background-position: 0 -18px;
  padding-right: 0px;
}
.eds_news_NewsTwo .one-article-row .date-comments a {
  color: #949494;
  text-decoration: none;
}
.eds_news_NewsTwo .one-article-row .date-comments a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .three-articles-row {
  overflow: hidden;
  margin-bottom: 10px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row {
  float: left;
  width: 31.2%;
  margin-left: 3.2%;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row:first-child {
  margin: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 {
  margin: 0 0 5px 0;
  line-height: 16px;
  padding: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 a {
  color: #121212;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 14px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row img {
  margin-bottom: 3px;
  height: auto;
  max-width: 100%;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .child_categories {
  overflow: hidden;
}
.eds_news_NewsTwo .child_categories .catalog-item {
  width: 31%;
  height: 185px;
  float: left;
  border-bottom: solid 4px #ebebeb;
  padding: 0 1%;
  margin-bottom: 24px;
}
.eds_news_NewsTwo .child_categories .catalog-item img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 {
  font-size: 14px;
  padding-top: 4px;
  margin: 0;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 a {
  text-decoration: none;
  color: #121212;
  font-size: 14px;
  font-family: "Francois One", Arial, serif;
  line-height: 1.2;
  font-weight: normal;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .category_info {
  margin-bottom: 25px;
}
.eds_news_NewsTwo .fb-comments, .eds_news_NewsTwo .fb-comments iframe[style], .eds_news_NewsTwo .fb-comments > span {
  width: 100% !important;
}
.eds_news_NewsTwo .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}

.EDN_search.theme_NewsTwo {
  padding: 0px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 0;
  margin: 0 20px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
}
.EDN_search.theme_NewsTwo ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_NewsTwo ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #737373;
  border: solid 1px transparent;
}
.EDN_search.theme_NewsTwo ul li span a {
  color: #737373;
  text-decoration: none;
}
.EDN_search.theme_NewsTwo ul li span a:hover {
  text-decoration: none;
  color: #98cf45;
  text-decoration: none;
}
.EDN_search.theme_NewsTwo .acSelect {
  background-color: #fcfcfc;
  color: #ebebeb;
  border-color: #dddddd transparent;
}
.EDN_search.theme_NewsTwo .acSelect a {
  color: #737373;
}

.qtip.edn_calendarbox_NewsTwo {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  border: 2px solid #ebebeb;
  border-radius: 1px;
  width: 500px;
  max-width: 95%;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title {
  border: 0;
  border-bottom: solid 1px #fff;
  background: #ebebeb;
  margin: 0;
  padding: 6px 15px 0;
  display: block;
  height: 19px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span {
  font: 12px Arial;
  color: #2f2f2f;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span a {
  text-decoration: none;
  color: #666;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsTwo > .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_NewsTwo > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 7px 0;
  padding: 3px;
  border: solid 1px #dadada;
  border-radius: 4px;
  background: #fcfcfc;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article p {
  color: #333333;
  font: 12px Arial;
  line-height: 14px;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title {
  font: 14px Arial;
  line-height: 16px;
  color: #598f00;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title a {
  font: 14px Arial;
  line-height: 16px;
  color: #598f00;
  text-decoration: none;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: #2f2f2f;
  margin-top: 5px;
  padding: 0 0 0 15px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/red_map_location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > .content {
  color: #333333;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > a {
  float: right;
  clear: both;
  text-decoration: none;
  font: 12px Arial;
  color: #598f00;
  line-height: 14px;
  font-weight: bold;
  margin: 3px 0 0;
  padding: 0 0 0 9px;
  border: 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px 15px 15px 30px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li {
  list-style: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/grey-bullet.png") outside;
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  color: #2f2f2f;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li > a {
  color: #2f2f2f;
  font: 12px Arial;
  line-height: 14px;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li > a:hover {
  color: #598f00;
}
.qtip.edn_calendarbox_NewsTwo > .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: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article img {
    width: 98%;
    margin: 0 0 10px 0;
    padding: 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date {
    font-size: 12px;
    padding: 3px 6px 1px 6px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong {
    font-size: 14px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .article.sidebar_box a img {
    width: auto;
    max-width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .newstwo-date {
    font-size: 12px;
    padding: 3px 6px 1px 6px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .newstwo-date strong {
    font-size: 14px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro {
    padding: 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro h2 {
    margin-bottom: 2px;
    line-height: 15px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro h2 a {
    font-size: 14px;
    line-height: 15px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .one-article-row {
    overflow: hidden;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .one-article-row .article-one-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .child_categories .catalog-item {
    float: none;
    margin: 0 0 10px 0;
    width: auto;
    border: none;
    height: auto;
    overflow: hidden;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .child_categories .catalog-item img {
    float: left;
    margin-right: 15px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi img {
    width: 100%;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row {
    margin-top: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row {
    width: auto;
    margin: 11px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img {
    float: left;
    margin: 0 15px 15px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row {
    float: none;
    width: auto;
    overflow: hidden;
    margin: 10px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img {
    float: left;
    margin: 0 15px 0 0;
  }
}
/*Fix RTL EDN Dashbord 2018*/
.rtl .eds_subCollection_news .user_dashboard a { float: right; font-family: inherit !important; }
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCkYb8td.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCAYb8td.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCgYb8td.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCsYb8td.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYb8td.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCQYbw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCkYb8td.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCAYb8td.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCgYb8td.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCsYb8td.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYb8td.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYbw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYbw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQ.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYbw.woff2") format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYaQ.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7Cw.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYaQ.woff") format('woff');
}



.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h1,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h2,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h3,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h4,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h5,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news h6,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news th,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .in_article_image .image_title
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news a
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div .edn_articleTitle a
{
	color: #3b3c40;
	font-size: 19px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div:hover .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 h2.edn_articleTitle
{
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a
{
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle
{
	color: #8de171;
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a
{
	color: #7cc663;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a:hover
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a
{
	color: #7ecd63;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a
{
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_simpleArticle6Bullet:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultTabs .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .edn_article.edn_articleDetails h1.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article .edn_articleSubTitle
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article .edn_articleSummary
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after
{
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle
{
	color: #a3a3a3;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a
{
	color: #8de171;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:hover h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle:hover h2.edn_articleTitle
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle .edn_articleSubTitle
{
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock
{
	color: #666161;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section:hover
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active > section
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud > div a span:first-child
{
	background-color: #8de171;
	color: #ffffff;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud > div a:hover span:first-child
{
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud > div a
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud > div a span
{
	color: #3b3c40;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_tagCloud > div a:hover span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_rss:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_rss:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category
{
	color: #504e4e;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category
{
	color: #74c459;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before
{
	color: #64a34f;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn_verticalListWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary
{
	color: #504e4e;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .bread_crumbs > a
{
	font-family: "Roboto Condensed";
	color: #747474;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .bread_crumbs > a:hover
{
	border-bottom-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .bread_crumbs > a:last-child
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .bread_crumbs > i
{
	font-size: 17px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_categoryInfo
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_catalogCategory
{
	background-color: #e5e5e5;
	box-shadow: inset 0px 0px 0px 1px #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_catalogCategory > figcaption > span
{
	background-color: #ffffff;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.6);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_eventDetails
{
	border-radius: 0px;
	box-shadow: inset 0px 2px 0px 0px #ffffff,inset 0px -2px 0px 0px #ffffff;
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_eventDetails .edn_eventPrice
{
	font-family: "Roboto Condensed";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_calendarExport:after
{
	text-shadow: none;
	color: #504e4e;
	font-size: 13px;
	line-height: 1.3;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_calendarExport:hover:after
{
	text-shadow: none;
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_calendarExport.edn_toolTip:hover .edn_toolTipContent
{
	color: #ffffff !important;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_eventDetails .edn_eventLocation
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBarWrapper > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span > label
{
	border-width: 1px;
	border-radius: 5px;
	color: #63b248;
	font-size: 15px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label::before
{
	background-color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label::before
{
	background-color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label::before
{
	background-color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > time
{
	box-shadow: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time
{
	background-color: #8de171;
	box-shadow: none;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time
{
	box-shadow: none;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation
{
	color: #74bf5b;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation:before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton
{
	border-color: #8de171;
	border-radius: 4px;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer
{
	border-color: #8de171;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer:hover
{
	border-color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 .edn_mediaContainer:after
{
	background-color: rgba(200, 24, 5, 0.2);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticle2WithAccordion .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_mediaContainer.edn_withTime > a:after
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > .edn_mediaLink
{
	border-color: #ffffff;
	border-radius: 3px;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > time
{
	background-color: #8de171;
	box-shadow: none;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_metaDetails
{
	color: #6e6e6e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails > time:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listEventDetails
{
	color: #969696;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listEventDetails > span:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails
{
	background-color: #000000;
	opacity: 0.7;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberComments:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager.edn_articleScrolling a
{
	border-color: #8de171 !important;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager.edn_articleScrolling a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager.edn_articleScrolling .edn_toolTip:hover .edn_toolTipContent
{
	border-color: transparent !important;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags
{
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #a8a4a4;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #a8a4a4;
	font-family: "Roboto Condensed";
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a
{
	border-color: #8de171;
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover
{
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title
{
	color: #72bd59;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover:after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3
{
	color: #7bc563;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3
{
	color: #319011;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before
{
	border-right-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a
{
	border-color: #e2e2e2;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png");
	background-repeat: repeat-y;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before
{
	border-color: #bcbcbc;
	background-color: #dadada;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before
{
	background-color: #ececec;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary
{
	color: #8a8a8a;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a
{
	color: #55a839;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a:hover
{
	color: #426c34;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header
{
	border-bottom-color: #bcbcbc;
	box-shadow: 0px 1px 0px 0px #eeeeee;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport
{
	color: #5b5b5b;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:after
{
	color: #3ca519;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover:after
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time:before
{
	color: #3ca519;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .in_article_image
{
	border-color: #d1d2d3;
	border-radius: 4px;
	background-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .in_article_image .image_title
{
	color: #8de171;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .in_article_image .image_description
{
	color: #666161;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .in_article_image .image_wrapper > a:hover:before
{
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants
{
	border-color: #e5e5e5;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8de171;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader th
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #eeeeee;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr:hover
{
	background-color: #eaeaea;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_listOfAttendants > table tr:hover td
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments
{
	border-color: #e5e5e5;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docExtension
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li
{
	border-bottom-color: #f7f5f5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks
{
	border-color: #e5e5e5;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li:before
{
	color: #589f40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li a
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li span
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles
{
	border-color: #bfbfbf;
	border-radius: 4px;
	background-color: #ededed;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2
{
	color: #8de171;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2 span:after
{
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li:before
{
	color: #659e51;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a
{
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a span
{
	font-family: "Roboto Condensed";
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a:hover span
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li + li
{
	border-left-color: #acacac;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 4px #ffffff;
	background-color: #e5e5e5;
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails > h4 .button:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.contact,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.full_bio
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.contact:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.social
{
	border-color: #8d8989;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.social:hover
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.social:before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails .button.social:hover:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails > h4 .button:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact
{
	border-color: #8de171;
	border-radius: 4px;
	font-family: "Roboto Condensed";
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social:before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .num_of_comment
{
	border-color: #8de171;
	border-radius: 4px;
	color: #000000;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment article > section > h4
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment article > section > div
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment article > section > time
{
	color: #999999;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment article > div img
{
	border-color: #8de171;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment .actions > a
{
	border-color: #909090;
	background-color: #bdbdbd;
	font-family: "Roboto Condensed";
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover
{
	background-color: #909090;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete
{
	border-color: #9d241e;
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover
{
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment > h3
{
	color: #3b3c40;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment > div
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Roboto Condensed";
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"],
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:focus,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:focus
{
	border-color: #8de171;
	border-radius: 6px;
	color: #666666;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box .submit
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_readMore.edn_readMoreButton
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination span
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination table
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination a
{
	background-color: transparent;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .article_pagination span
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer
{
	background-color: #8de171;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger > span
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before
{
	color: #8de171;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articlesRssWrapper a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eeeeee;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eeeeee;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articlesRssWrapper a:hover
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articlesRssWrapper a span:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articlesRssWrapper a span
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edn_articlesRssWrapper a:hover span
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab
{
	border-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edsTabulator .eds_tabsNav > li
{
	border-color: #81cf67;
	color: #b4b4b4;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edsTabulator .eds_tabsNav > li:hover
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .edsTabulator .eds_tabsNav > li.edsTabulator_active
{
	background-color: #eb1601;
	box-shadow: inset 0px -25px 13px -13px #cb1400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount
{
	background-color: #3b3c40;
	border-radius: 10px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	color: #848484;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .do_search,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .do_search:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input .do_search:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search
{
	border-color: #8de171 !important;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search > span
{
	text-transform: uppercase;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search > span:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search:before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .search_input.button_outside .do_search:hover:before
{
	color: #ffffff;
}

.EDN_search.theme_Ozone.green
{
	background-color: #ffffff;
	border-color: #8de171;
	box-shadow: none;
}

.EDN_search.theme_Ozone.green ul li span a
{
	color: #2c2c2c;
	font-size: 12px;
}

.EDN_search.theme_Ozone.green ul li span a:hover
{
	color: #8de171;
}

.EDN_search.theme_Ozone.green .acSelect a
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span
{
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after ,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before
{
	color: #7ac162;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input
{
	color: #848484;
	font-size: 13px;
	border-color: #d4d4d4;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #d6d6d6;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c7c7c7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #c7c7c7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d3d3d3;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c7c7c7;
	border-radius: 6px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #8de171;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #6bab56;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #5ca544;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #5bf229;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #58a041;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #68aa53;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	color: #a8a8a8;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid
{
	background-color: #c3c3c3;
	border-width: 1px;
	border-style: solid;
	border-color: #bcbcbc;
	border-radius: 4px;
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #d4d8de;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	box-shadow: inset 0px 6px 6px 0px rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before
{
	background-color: #5c9f46;
	border-radius: 50%;
	box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #61a64a;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label:before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #63a24d;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	color: #848484;
	border-color: #d4d4d4;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	border-right-color: #d4d4d4;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit
{
	background-color: #ffffff;
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit
{
	color: #3b3c40;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset
{
	background-color: #ffffff;
	border-color: #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover
{
	background-color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #3b3c40;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc
{
	border-color: #8de171 !important;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_styledSelect > span
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_styledSelect > span::after
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_styledSelect > span select
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_styledSelect > span::after 
{
	color: #7ac162;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-toolbar h2
{
	color: #7fc268;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #ffffff;
	border-bottom-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-next-button
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-next-button:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-next-button::before
{
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-widget-header
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc .fc-week-number a
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc td.fc-week-number
{
	border-right-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #8de171;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts > a
{
	color: #599047;
	border-color: #58d031;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover
{
	background-color: #58d031;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events > a
{
	color: #3b3c40;
	border-color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover
{
	background-color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after
{
	border-top-width: 3px;
	border-top-color: #dddddd;
	border-right-width: 1px;
	border-right-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	border-left-width: 1px;
	border-left-color: #dddddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc td.fc-day-top a:hover
{
	background-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button
{
	border-color: #8de171;
	border-radius: 4px;
	color: #3b3c40;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-button.fc-state-active
{
	border-color: #558a43;
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event
{
	background-color: transparent;
	border-color: #3b3c40;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event:hover
{
	background-color: transparent;
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events
{
	background-color: transparent;
	border-color: #619e4d;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: #619e4d;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green .fc-unthemed .fc-divider
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-heading .fc-widget-header
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.has_posts .fc-event-dot
{
	background-color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item td a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green .fc-list-item td a:hover
{
	color: #81cf67;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list
{
	border-top-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover
{
	color: #6fb757;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink
{
	color: #504e4e;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul > li .expand_collapse:before
{
	color: #8de171;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span
{
	border-radius: 10px;
	background-color: #3b3c40;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:before
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:before
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events ul li > a
{
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events ul li > a:hover
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #71ba59;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_calendar .archive_list.events ul li::before
{
	color: #71ba59;
}

.qtip.edn_calendarbox_Ozone.green
{
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #8de171;
	border-radius: 0px;
	box-shadow: none;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content div.title span,
.qtip.edn_calendarbox_Ozone.green .qtip-content div.title span a
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content div.title span a:hover
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > p.title a
{
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > p.title a:hover
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > p.title
{
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article_list > li > a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article_list > li > a:hover
{
	color: #8de171;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article_list > li
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article_list > li > p
{
	color: #999999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > .content
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article img
{
	border-color: #8de171;
	border-radius: 0px;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > a
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
	color: #3b3c40;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > a:hover
{
	background-color: #8de171;
	color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.green .qtip-content .wrapper > .article > p.location:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink
{
	border-color: #8de171;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink > span
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:before
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #8de171;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #75b95e;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay:before
{
	color: #8de171;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	color: #77bf60;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #8de171;
	border-radius: 0px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone
{
	border-radius: 6px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	background-color: rgba(255, 255, 255, 0.7);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:after
{
	color: #c7c7c7;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:hover:after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 5px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on:after
{
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .navigation_button
{
	border-radius: 3px;
	background-color: #8de171;
	box-shadow: inset 0px 48px 48px -48px #b1ee9c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover:before
{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .title_box
{
	font-size: 18px;
	background-color: rgba(149, 149, 149, 0.5);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport .overview,
.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport p
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box
{
	background-color: rgba(54, 54, 54, 0.5);
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb
{
	border-color: #8de171;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay .indicator:before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > time
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a
{
	background-color: #828282;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a
{
	background-color: #8de171;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_header
{
	border-top-color: #e4e4e4;
	border-bottom-color: #e4e4e4;
	border-right-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_title
{
	background-color: #8de171;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title
{
	border-bottom-color: #8de171;
	border-radius: 0px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span
{
	background-color: #8de171;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li
{
	color: #888888;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red
{
	color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow
{
	color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink
{
	color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray
{
	color: #808080;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown
{
	color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_pagination
{
	border-top-color: #8de171;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_pagination > span
{
	border-radius: 0px;
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_contentBlock .edn_mainWrapper::after
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentsHeader
{
	border-bottom-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentsHeader > h4
{
	background-color: #8de171;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentContainer .edNews_userAvatar
{
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor:hover
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentContainer .edNews__commentContent
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentDate
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink:hover
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink::before
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_pagination
{
	border-top-color: #8de171;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_pagination > span
{
	border-radius: 0px;
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_green.eds_subCollection_recentComments .edn__recentCommentsListContainer::after
{
	color: #8de171;
}
/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0-ExdGM.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0aExdGM.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0yExdGM.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0KExQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0OqtLQ0Z.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0OCtLQ0Z.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0O6tLQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0yExQ.woff2") format('woff2');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0OCtLQ.woff2") format('woff2');
}

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url("//fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79D0yEww.woff") format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url("//fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh0OCtKw.woff") format('woff');
}


/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCkYb8td.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCAYb8td.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCgYb8td.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCsYb8td.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYb8td.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCQYbw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DRs5.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DRs5.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DRs5.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DRs5.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DRs5.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DRs5.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCkYb8td.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCAYb8td.woff2") format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCgYb8td.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCcYb8td.woff2") format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCsYb8td.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYb8td.woff2") format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYbw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYbw.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQ.woff2") format('woff2');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYbw.woff2") format('woff2');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCoYaQ.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7Cw.woff") format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("//fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCoYaQ.woff") format('woff');
}



.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h1,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h2,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h3,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h4,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h5,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news h6,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news th,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .in_article_image .image_title
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news
{
	font-family: "PT Sans";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news a
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleDefault h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listCatalogDefault h2.edn_articleTitle a:hover
{
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div .edn_articleTitle a
{
	color: #37cbcb;
	font-size: 19px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section > div:hover .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 h2.edn_articleTitle
{
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a
{
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_article.edn_listArticle2 .edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h2.edn_articleTitle
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle
{
	color: #37cbcb;
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a
{
	color: #37cbcb;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox2 .edn_article.edn_articleInBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a
{
	color: #37cbcb;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a
{
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple4 .edn_article.edn_simpleArticle4 h2.edn_articleTitle a:hover
{
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple5 .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_simpleArticle6Bullet:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleDefault .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultAccordion .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsArticleDefaultTabs .edn_article.edn_articleDetails h1.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_detailsCatalogDefault .edn_article.edn_articleDetails h1.edn_articleTitle
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h3.edn_articleTitle
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article .edn_articleSubTitle
{
	color: #239797;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article .edn_articleSummary
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle
{
	color: #ffffff;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle
{
	color: #37cbcb;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after
{
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption h3.edn_articleSubTitle
{
	color: #909090;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox .edn_article.edn_articleInBox > figure > figcaption,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti3 .edn_article.edn_articleInBox > figure > figcaption
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a
{
	color: #37cbcb;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList h2.edn_articleTitle a:hover
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti1 .edn_article.edn_multiArticleList,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleMulti2 .edn_article.edn_multiArticleList
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle h2.edn_articleTitle
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:hover h2.edn_articleTitle,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple3 .edn_article.edn_simpleArticle:hover h2.edn_articleTitle
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle .edn_articleSubTitle
{
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple .edn_article.edn_simpleArticle
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock
{
	color: #666161;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleTimeline .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple:first-child
{
	border-top-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple
{
	border-bottom-color: #a2a2a2;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_article.edn_eventsSimple > section:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleEventsSimple .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active > section
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud .edn_module_title
{
	color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud > div a span:first-child
{
	background-color: #4ecfd0;
	color: #ffffff;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud > div a:hover span:first-child
{
	background-color: #ffffff;
	color: #298e8e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud > div a
{
	border-color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud > div a span
{
	color: #a1a1a1;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_tagCloud > div a:hover span
{
	color: #298e8e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_module_title
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_rss:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_rss:hover:before
{
	color: #288b8b;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category
{
	color: #504e4e;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul li.active > div > .edn_category
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:hover:before
{
	color: #288b8b;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn_verticalListWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a
{
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a
{
	color: #222222;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn_mainWrapper article h2 > a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a
{
	color: #222222;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article h2 > a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary
{
	color: #504e4e;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockSimpleList .edn_mainWrapper .edn_simpleList article
{
	border-top-color: #dfdfdf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .bread_crumbs > a
{
	font-family: "Roboto Condensed";
	color: #747474;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .bread_crumbs > a:hover
{
	border-bottom-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .bread_crumbs > a:last-child
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .bread_crumbs > i
{
	font-size: 17px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_categoryInfo
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_catalogCategory
{
	background-color: #e5e5e5;
	box-shadow: inset 0px 0px 0px 1px #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_catalogCategory > figcaption > span
{
	background-color: #ffffff;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.6);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_eventDetails
{
	border-radius: 0px;
	box-shadow: inset 0px 2px 0px 0px #ffffff,inset 0px -2px 0px 0px #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_eventDetails .edn_eventPrice
{
	font-family: "Roboto Condensed";
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_calendarExport:after
{
	text-shadow: none;
	color: #504e4e;
	font-size: 13px;
	line-height: 1.3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_calendarExport:hover:after
{
	text-shadow: none;
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before
{
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_eventRegistrationModalTrigger
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBarWrapper > h4
{
	color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span > label
{
	border-width: 1px;
	border-radius: 5px;
	color: #329293;
	font-size: 15px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label
{
	border-color: #619c1c;
	color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type="radio"]:checked + label::before
{
	background-color: #619c1c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label
{
	border-color: #d61603;
	color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type="radio"]:checked + label::before
{
	background-color: #d61603;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label
{
	border-color: #f89e00;
	color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type="radio"]:checked + label::before
{
	background-color: #f89e00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before
{
	border-color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after
{
	border-left-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > time
{
	background-color: transparent;
	box-shadow: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #e1e1e1;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time
{
	background-color: #26a3a3;
	box-shadow: none;
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time
{
	background-color: #7d0f03;
	box-shadow: none;
	border-color: #7d0f03;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span
{
	color: #a1a1a1;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation
{
	color: #a1a1a1;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation
{
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before
{
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton
{
	border-color: #37cbcb;
	border-radius: 4px;
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover
{
	background-color: #26a3a3;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer
{
	border-color: #37cbcb;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer:hover
{
	border-color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple2 .edn_article.edn_simpleArticle2 .edn_mediaContainer:after
{
	background-color: rgba(200, 24, 5, 0.2);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticle2 .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticle2WithAccordion .edn_mediaContainer.edn_withTime > a:after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleListBox3 .edn_mediaContainer.edn_withTime > a:after
{
	background-color: rgba(0, 0, 0, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > .edn_mediaLink
{
	border-color: #ffffff;
	border-radius: 3px;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > time
{
	background-color: #37cbcb;
	box-shadow: none;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child
{
	font-size: 26px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span.edn_monthName
{
	font-size: 22px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child
{
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_metaDetails
{
	color: #6e6e6e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleSimple6 .edn_article.edn_simpleArticle6 .edn_metaDetails > time:before
{
	color: #6e6e6e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listEventDetails
{
	color: #969696;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listEventDetails > span:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails
{
	background-color: #000000;
	opacity: 0.7;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberOfVievs:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails .edn_numberComments:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager.edn_articleScrolling a
{
	border-color: #26a3a3 !important;
	border-radius: 4px;
	background-color: #ffffff;
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager.edn_articleScrolling a:hover
{
	background-color: #26a3a3;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags
{
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #a8a4a4;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #a8a4a4;
	font-family: "Roboto Condensed";
	color: #37bbbb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a
{
	border-color: #37cbcb;
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover
{
	background-color: #ffffff;
	color: #2c9e9e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title
{
	color: #37cbcb;
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover
{
	color: #208585;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleList3WithAccordion .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news.eds_templateGroup_listArticleWithTabs .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header
{
	border-bottom-color: #bfbfbf;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after
{
	color: #2eaeae;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3
{
	color: #33bdbd;
	font-size: 16px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3
{
	color: #006c6c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time
{
	color: #a7a7a7;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before
{
	border-right-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a
{
	border-color: #e2e2e2;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png");
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before
{
	border-color: #bcbcbc;
	background-color: #dadada;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before
{
	background-color: #ececec;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary
{
	color: #8a8a8a;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a
{
	color: #30adad;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle a:hover
{
	color: #217373;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header
{
	border-bottom-color: #bcbcbc;
	box-shadow: 0px 1px 0px 0px #eeeeee;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport
{
	color: #6b6b6b;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:after
{
	color: #34a0a0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover:after
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time
{
	color: #6b6b6b;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time:before
{
	color: #34a0a0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .in_article_image
{
	border-color: #d1d2d3;
	border-radius: 4px;
	background-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .in_article_image .image_title
{
	color: #37cbcb;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .in_article_image .image_description
{
	color: #666161;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .in_article_image .image_wrapper > a:hover:before
{
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants
{
	border-color: #e5e5e5;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader:first-child
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #37cbcb;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr.edn_listOfAttendantsHeader th
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr td
{
	color: #504e4e;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even)
{
	background-color: #eeeeee;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd)
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:hover
{
	background-color: #eaeaea;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_listOfAttendants > table tr:hover td
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments
{
	border-color: #e5e5e5;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2
{
	color: #37cbcb;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments h2 span:after
{
	border-bottom-color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docExtension
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li
{
	border-bottom-color: #f7f5f5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleLinks
{
	border-color: #37cbcb;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 1px #ffffff,inset 0px 0px 0px 2px #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2
{
	color: #37cbcb;
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleLinks h2 span:after
{
	border-bottom-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_articleLinks ul li span
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles
{
	border-color: #bfbfbf;
	border-radius: 4px;
	background-color: #ededed;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2
{
	font-size: 20px;
	border-bottom-color: #e5e5e5;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles h2 span:after
{
	border-bottom-color: #cd1301;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a
{
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a span
{
	font-family: "Roboto Condensed";
	color: #424344;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li a:hover span
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles.edn_aditionalBoxImage ul li + li
{
	border-left-color: #acacac;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails
{
	border-color: #cac7c7;
	border-radius: 4px;
	box-shadow: inset 0px 0px 0px 4px #ffffff;
	background-color: #e5e5e5;
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails > h4 .button:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.contact,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.full_bio
{
	border-color: #37cbcb;
	border-radius: 4px;
	background-color: #ffffff;
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover
{
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.social
{
	border-color: #8d8989;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.social:hover
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.social:before
{
	color: #8d8989;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails .button.social:hover:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.contact
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_authorGroupDetails.edn_groupDetails .button.social
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .num_of_comment
{
	border-color: #37cbcb;
	border-radius: 4px;
	color: #26a3a3;
	font-size: 14px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment article > section > h4
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment article > section > div
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment article > section > time
{
	color: #999999;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment article > div img
{
	border-color: #37cbcb;
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment .actions > a
{
	border-color: #26a3a3;
	background-color: #37cbcb;
	font-family: "Roboto Condensed";
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover
{
	background-color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete
{
	border-color: #9d241e;
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover
{
	background-color: #d94e49;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment > h3
{
	color: #37cbcb;
	font-size: 18px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment > div
{
	border-color: #37cbcb;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td.left
{
	font-family: "Roboto Condensed";
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"],
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td input[type="text"]:focus,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box table td textarea:focus
{
	border-color: #37cbcb;
	border-radius: 6px;
	color: #666666;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box .submit
{
	border-color: #37cbcb;
	border-radius: 4px;
	background-color: #ffffff;
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover
{
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_readMore.edn_readMoreButton
{
	border-color: #37cbcb;
	border-radius: 4px;
	background-color: #ffffff;
	color: #2397a2;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover
{
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination span
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination table
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination a
{
	background-color: transparent;
	color: #26a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination a:hover
{
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .article_pagination span
{
	background-color: #37cbcb;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger
{
	border-color: #4ecfd0;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer
{
	background-color: #4ecfd0;
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger > span
{
	color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before
{
	color: #3ababb;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articlesRssWrapper a
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eeeeee;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eeeeee;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articlesRssWrapper a:hover
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articlesRssWrapper a span:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articlesRssWrapper a span
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edn_articlesRssWrapper a:hover span
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edsTabulator .eds_tabsNav > li
{
	border-color: #37cbcb;
	color: #b4b4b4;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edsTabulator .eds_tabsNav > li:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .edsTabulator .eds_tabsNav > li.edsTabulator_active
{
	background-color: #eb1601;
	box-shadow: inset 0px -25px 13px -13px #cb1400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount
{
	background-color: #288b8b;
	border-radius: 10px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .input input[type="text"]:focus
{
	color: #848484;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .do_search,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus
{
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .do_search:before
{
	color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input .do_search:hover:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search
{
	border-color: #4ecfd0 !important;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search:hover
{
	background-color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search > span
{
	text-transform: uppercase;
	color: #268c8d;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search > span:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search:before
{
	color: #268c8d;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .search_input.button_outside .do_search:hover:before
{
	color: #ffffff;
}

.EDN_search.theme_Ozone.blue
{
	background-color: #ffffff;
	border-color: #4ecfd0;
	box-shadow: none;
}

.EDN_search.theme_Ozone.blue ul li span a
{
	color: #a5a5a5;
	font-size: 12px;
}

.EDN_search.theme_Ozone.blue ul li span a:hover
{
	color: #268c8d;
}

.EDN_search.theme_Ozone.blue .acSelect a
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	background-color: #f8f8f8;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span
{
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after ,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before
{
	color: #2b9c9c;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input
{
	color: #848484;
	font-size: 13px;
	border-color: #d4d4d4;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line
{
	background-color: #d6d6d6;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c7c7c7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #c7c7c7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d3d3d3;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #c7c7c7;
	border-radius: 6px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason
{
	background-color: #37cbcb;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #116767;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #116767;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #37cbcb;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #116767;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single
{
	color: #30bfbf;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max
{
	color: #a8a8a8;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid
{
	background-color: #c3c3c3;
	border-width: 1px;
	border-style: solid;
	border-color: #bcbcbc;
	border-radius: 4px;
	box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider
{
	background-color: #d4d8de;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	box-shadow: inset 0px 6px 6px 0px rgba(255, 255, 255, 0.8);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before
{
	background-color: #27a0a0;
	border-radius: 50%;
	box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.35),inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #187f7f;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label:before
{
	background-image: url("/DesktopModules/EasyDNNNews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label:before
{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
	color: #30aaaa;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control
{
	color: #848484;
	border-color: #d4d4d4;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon .glyphicon
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon
{
	border-top-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
	border-right-color: #d4d4d4;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit
{
	background-color: #ffffff;
	border-color: #37cbcb;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit
{
	color: #269d9d;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_submit:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before
{
	color: #269d9d;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset
{
	background-color: #ffffff;
	border-color: #dddddd;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover
{
	background-color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset
{
	color: #209191;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer a.edncf_reset:hover
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc
{
	border-color: #37cbcb !important;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span
{
	background-color: #ffffff;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span::after
{
	border-color: #d4d4d4;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span select
{
	color: #848484;
	font-size: 13px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_styledSelect > span::after 
{
	color: #2b9c9c;
	font-size: 20px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-toolbar h2
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-header-toolbar
{
	background-color: #ffffff;
	border-bottom-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-next-button
{
	border-color: #37cbcb;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-next-button:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-next-button::before
{
	color: #2aadad;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-widget-header
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc .fc-week-number a
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-widget-header th.fc-week-number span
{
	color: #ffffff;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-week-number
{
	border-right-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-week-number a
{
	color: #37cbcb;
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts > a
{
	color: #2a9d9d;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events > a
{
	color: #ffa100;
	border-color: #ffa100;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover
{
	background-color: #ffa100;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a
{
	color: #db313c;
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a
{
	color: #37cbcb;
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a
{
	color: #000000;
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a
{
	color: #8de171;
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a
{
	color: #f6c606;
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a
{
	color: #ffc0cb;
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a
{
	color: #808080;
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a
{
	color: #ff6a00;
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a
{
	color: #e49908;
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after
{
	border-top-width: 3px;
	border-top-color: #dddddd;
	border-right-width: 1px;
	border-right-color: #dddddd;
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	border-left-width: 1px;
	border-left-color: #dddddd;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-day-top a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc td.fc-day-top a:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button
{
	border-color: #4ecfd0;
	border-radius: 4px;
	color: #4ecfd0;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-button.fc-state-active
{
	border-color: #319495;
	color: #1f8a8b;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event
{
	background-color: transparent;
	border-color: #37cbcb;
	color: #504e4e;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event:hover
{
	background-color: transparent;
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events
{
	background-color: rgba(0, 0, 0, 0.03);
	border-color: #ffa100;
	color: #969696;
	font-size: 11px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a:hover,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events:hover
{
	background-color: transparent;
	color: #259394;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-red
{
	border-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-blue
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-black
{
	border-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-green
{
	border-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-yellow
{
	border-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-pink
{
	border-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-gray
{
	border-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-orange
{
	border-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .fc-event.has_events.EDNcategorycolor-brown
{
	border-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-unthemed .fc-divider
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-heading .fc-widget-header
{
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.has_posts .fc-event-dot
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.has_events .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-red .fc-event-dot
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-blue .fc-event-dot
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-black .fc-event-dot
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-green .fc-event-dot
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-yellow .fc-event-dot
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-pink .fc-event-dot
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-gray .fc-event-dot
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-orange .fc-event-dot
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item.EDNcategorycolor-brown .fc-event-dot
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item td a
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue .fc-list-item td a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .edn_module_title
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list
{
	border-top-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink
{
	color: #504e4e;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink
{
	color: #000000;
	font-weight: bold;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li > div
{
	border-bottom-color: #dddddd;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul > li .expand_collapse:before
{
	color: #37cbcb;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse:before
{
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span
{
	border-radius: 10px;
	background-color: #37cbcb;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events .edn_module_title
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export:hover:before
{
	color: #279393;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss:hover:before
{
	color: #217a7a;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li > a
{
	font-family: "Roboto Condensed";
	color: #504e4e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li > a:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li a span
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_calendar .archive_list.events ul li::before
{
	color: #37cbcb;
}

.qtip.edn_calendarbox_Ozone.blue
{
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #37cbcb;
	border-radius: 0px;
	box-shadow: none;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content div.title span,
.qtip.edn_calendarbox_Ozone.blue .qtip-content div.title span a
{
	color: #4ecfd0;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content div.title span a:hover
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > p.title a
{
	color: #349798;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > p.title a:hover
{
	color: #4ecfd0;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > p.title
{
	color: #349798;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article_list > li > a
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article_list > li > a:hover
{
	color: #37cbcb;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article_list > li
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article_list > li > p
{
	color: #999999;
	font-size: 11px;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > .content
{
	color: #504e4e;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article img
{
	border-color: #37cbcb;
	border-radius: 0px;
	background-color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > a
{
	border-color: #4ecfd0;
	border-radius: 4px;
	background-color: #ffffff;
	color: #309494;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > a:hover
{
	background-color: #4ecfd0;
	color: #ffffff;
}

.qtip.edn_calendarbox_Ozone.blue .qtip-content .wrapper > .article > p.location:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink
{
	border-color: #37cbcb;
	border-radius: 4px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink > span
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:before
{
	color: #24a4a4;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone a.edsgg_galleryBackLink:hover:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger
{
	border-color: #37cbcb;
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerText
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover .edsgg__loadMediaTriggerText
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger > span
{
	color: #1f7e7e;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger:hover > span
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay
{
	background-color: rgba(255, 255, 255, 0.8);
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__loadMediaWrapper .edsgg__loadMediaTrigger .edsgg__loadMediaTriggerOverlay:before
{
	color: #37cbcb;
	opacity: 0.7;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer
{
	border-top-color: #bababa;
	border-right-color: #bababa;
	border-bottom-color: #bababa;
	border-left-color: #d3d3d3;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_thumbnailContainer .edsgg_title
{
	color: #38b4b4;
	font-size: 15px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_description
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .eds_GravityGallery_Ozone .edsgg__itemsListContainer .edsgg__itemContainer .edsgg_image_thumbnail
{
	border-color: #37cbcb;
	border-radius: 0px;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone
{
	border-radius: 6px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper
{
	background-color: rgba(255, 255, 255, 0.7);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:after
{
	color: #c7c7c7;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .navigation:hover:after
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li
{
	border-radius: 5px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:hover
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on
{
	border-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li:after
{
	border-radius: 4px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .thumb_wrapper .thumb_window .thumb_container ul li.on:after
{
	border-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .navigation_button
{
	border-radius: 3px;
	background-color: #37cbcb;
	box-shadow: inset 0px 48px 48px -48px #60e1e1;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:before
{
	color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .navigation_button:hover:before
{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
	color: #23a3a3;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .title_box
{
	font-size: 18px;
	background-color: rgba(149, 149, 149, 0.5);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport .overview,
.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .viewport p
{
	font-size: 12px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box
{
	background-color: rgba(54, 54, 54, 0.5);
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .scrollable_box .scrollbar .track .thumb
{
	border-color: #37cbcb;
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay
{
	background-color: #ffffff;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_news .chameleon_slider.Ozone .loading_slider_overlay .indicator:before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > time
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a
{
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a
{
	background-color: #828282;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a
{
	background-color: #37cbcb;
	border-radius: 0px;
	font-size: 10px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red
{
	background-color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue
{
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black
{
	background-color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green
{
	background-color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow
{
	background-color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink
{
	background-color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray
{
	background-color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange
{
	background-color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown
{
	background-color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_header
{
	border-top-color: #e4e4e4;
	border-bottom-color: #e4e4e4;
	border-right-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_title
{
	background-color: #37cbcb;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title
{
	border-bottom-color: #37cbcb;
	border-radius: 0px;
	background-color: transparent;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span
{
	background-color: #37cbcb;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li
{
	color: #888888;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red
{
	color: #db313c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black
{
	color: #000000;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green
{
	color: #8de171;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow
{
	color: #f6c606;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink
{
	color: #ffc0cb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray
{
	color: #808080;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange
{
	color: #ff6a00;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown
{
	color: #e49908;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockDefault .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock.eds_templateGroup_contentBlockVertical .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_pagination
{
	border-top-color: #37cbcb;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_pagination > span
{
	border-radius: 0px;
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_contentBlock .edn_mainWrapper::after
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentsHeader
{
	border-bottom-color: #e4e4e4;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentsHeader > h4
{
	background-color: #37cbcb;
	border-radius: 0px;
	font-family: "Roboto Condensed";
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentContainer .edNews_userAvatar
{
	border-radius: 50%;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor
{
	color: #424242;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentAuthor:hover
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentContainer .edNews__commentContent
{
	font-style: italic;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_recentCommentContainer .edn_commentDate
{
	color: #999999;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink
{
	color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink:hover
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments.eds_templateGroup_commentsArticleTitle .edn_recentCommentContainer .edn_articleLink::before
{
	color: #2c2c2c;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_pagination
{
	border-top-color: #37cbcb;
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_pagination > span
{
	border-radius: 0px;
	background-color: #37cbcb;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn_pagination > span:hover
{
	border-radius: 0px;
}

.eds_news_Ozone.eds_style_predefined_blue.eds_subCollection_recentComments .edn__recentCommentsListContainer::after
{
	color: #37cbcb;
}
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2014 By BESTDNNSKINS.COM
 */
/*-------- for all containers --------*/
.c_icon, .c_title{ float:right;}
.c_content_style { display:inline-block; width:100%;}
.clearafter:after{ clear:both; content:"."; height:0px; font-size:0px; visibility:hidden; display:block; }
.clearafter{ display:inline-block;}
.clearafter{ display:block;}
h2.c_title { margin:0; padding:0; line-height:1.2em;}
h2.c_title span { vertical-align:middle; /*font-weight:bold;*/font-family:inherit/*Georgia, "Times New Roman", Arial, serif*/; transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s; }

/*-------- containers title --------*/
.c_title_footer{ font-size:18px; color:#f0f0f0; }
.c_title_black { font-size:18px; color:#555555; }
.c_title_white { font-size:18px; color:#FFFFFF; }
.c_title_color{ font-size:18px; }

/*-------- BlackTitle Container 01 --------*/
.Bt1_style { min-width:150px; margin-bottom:14px;}
.Bt1_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt1_top {margin:0; padding:5px 3px 1px;}
.Bt1_content { padding:10px 3px;}

/*-------- BlackTitle Container 02 --------*/
.Bt2_style { min-width:150px; margin-bottom:14px;}
.Bt2_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt2_top { border-bottom:4px double #e6e6e6;padding:5px 3px 10px; } 
.Bt2_content { padding:10px 3px;}

/*-------- BlackTitle Container 03 --------*/
.Bt3_style { min-width:150px; margin-bottom:14px;}
.Bt3_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt3_top { border-bottom:1px solid #dddddd; position:relative; }
.Bt3_style .c_title { border-bottom:2px solid; margin-bottom:-1px; padding:7px 0;}
.Bt3_content { padding:10px 3px;}

/*-------- BlackTitle Container 04 --------*/
.Bt4_style { min-width:150px; margin-bottom:14px;}
.Bt4_style:hover .c_title_black{transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt4_top { border-bottom:1px dashed #dedede; padding:5px 3px 10px;}
.Bt4_content { padding:10px 3px;}

/*-------- DeepSkyBlue Color Title 01 --------*/
.ct1_style { min-width:150px; margin-bottom:14px;}
.ct1_top { padding:5px 3px 1px;}
.ct1_content { padding:10px 0;}

/*-------- DeepSkyBlue Color Title 02 --------*/
.ct2_style { min-width:150px; margin-bottom:14px;}
.ct2_top { border-bottom:1px solid; padding:8px 3px; }
.ct2_content { padding:10px 3px;}

/*-------- DeepSkyBlue Color Header 01 --------*/
.ch1_style { min-width:150px; margin-bottom:14px;}
.ch1_top { min-height:15px;padding:7px 10px;}
.ch1_content { padding:10px 3px 13px; }

/*-------- DeepSkyBlue Color Header 02 --------*/
.ch2_style { min-width:150px; margin-bottom:15px;}
.ch2_top{min-height:15px;background:#ececec;padding:7px 10px 7px; position:relative;border-right:solid 4px;}
.ch2_content{padding:10px 3px 13px;}

/*-------- DeepSkyBlue Header Box --------*/
.hb_style{ min-width:150px;border:solid 1px; margin-bottom:15px;}
.hb_top {min-height:15px;padding:7px 10px;}
.hb_content { padding:10px 12px 10px;transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}

/*-------- DeepSkyBlue Color Box--------*/
.cb_style { min-width:150px; border-radius:5px; margin-bottom:15px;position:relative; }
.cb_top {min-height:40px;padding:6px 15px 6px 12px;position:relative;border-bottom:solid 1px #fff;border-bottom:solid 1px rgba(255,255,255,.2)}
.cb_content { padding:10px 15px 15px;}
.cb_content *{color:#fff;}

/*-------- DeepSkyBlue Gray Box -------*/
.gb1_style { min-width:150px; border:1px solid #e9e9e9; margin-bottom:15px;}
.gb1_style:hover .c_title_black{transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.gb1_top { min-height:25px; background: #e9e9e9; padding:4px 12px 7px 10px;}
.gb1_content{ padding:10px 12px;}

/*-------- DeepSkyBlue Gray Box 02 --------*/
.gb2_style {min-width:150px; margin-bottom:15px;}
.gb2_top {z-index:99;position:relative;background:#f5f5f5;height:38px;padding:7px 15px 8px 12px;border:solid 1px #e5e5e5; border-radius:5px 5px 0 0; webkit-border-radius:5px 5px 0 0; -moz-border-radius:5px 5px 0 0;}
.gb2_content{padding:10px 12px;background:#fff;border:solid 1px #e5e5e5;border-top:none; border-radius:0 0 5px 5px; -webkit-border-radius:0 0 5px 5px; -moz-border-radius:0 0 5px 5px;}

/*-------- Footer Contaienr 01 --------*/
.Footer01_style { min-width:160px;}
.Footer01_top_bg { padding:10px 3px; margin:0;}
.Footer01_border{background:#333;}
.Footer01_content { padding:20px 3px 8px 3px;}

/*-------- Footer Contaienr 02 --------*/
.Footer02_style { min-width:160px;}
.Footer02_top_bg { padding:10px 3px; margin:0;}
.Footer02_border{background:#fff;}
.Footer02_content { padding:20px 3px 8px 3px;}

/*-------- notitle --------*/
.notitle_container{}
/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}
@font-face {
  font-family: 'fpicons';
  src:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/fonts/fpicons.eot?yg5dv7");
  src:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/fonts/fpicons.eot?#iefixyg5dv7") format('embedded-opentype'),
    url("/DesktopModules/EasyDNNRotator/flowplayer/skin/fonts/fpicons.woff?yg5dv7") format('woff'),
    url("/DesktopModules/EasyDNNRotator/flowplayer/skin/fonts/fpicons.ttf?yg5dv7") format('truetype'),
    url("/DesktopModules/EasyDNNRotator/flowplayer/skin/fonts/fpicons.svg?yg5dv7#fpicons") format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="fp-i-"], [class*=" fp-i-"] {
  font-family: 'fpicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.flowplayer{position:relative;width:100%;counter-increment:flowplayer;background-size:contain;background-repeat:no-repeat;background-position:center center;display:inline-block;}
.flowplayer *{font-weight:inherit;font-family:inherit;font-style:inherit;text-decoration:inherit;font-size:100%;padding:0;border:0;margin:0;list-style-type:none}
.flowplayer a:focus{outline:0}
.flowplayer video{width:100%}
.flowplayer.is-ipad video{-webkit-transform:translateX(-2048px);}
.is-ready.flowplayer.is-ipad video{-webkit-transform:translateX(0)}
.flowplayer .fp-player{position:absolute;top:0;left:0;width:100%;height:100%}
.flowplayer .fp-engine,.flowplayer .fp-ui,.flowplayer .fp-message{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;z-index:1}
.flowplayer .fp-ui{z-index:11}
.flowplayer .fp-message{display:none;text-align:center;padding-top:5%;cursor:default;}
.flowplayer .fp-message h2{font-size:120%;margin-bottom:1em}
.flowplayer .fp-message p{color:#666;font-size:95%}
.flowplayer .fp-title{line-height:30px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif;font-size:11px;cursor:default;color:#fff;width:auto;max-width:50%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;float:left;padding:0 20px;}
.is-rtl.flowplayer .fp-title{float:right}
.aside-time.flowplayer .fp-title{display:none !important}
.flowplayer .fp-controls{position:absolute;bottom:0;width:100%;}
.no-background.flowplayer .fp-controls{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important}
.is-fullscreen.flowplayer .fp-controls{bottom:3px}
.is-mouseover.flowplayer .fp-controls{bottom:0}
.flowplayer .fp-controls,.flowplayer .fp-title,.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed,.flowplayer.aside-time .fp-time{background-color:#000;background-color:rgba(0,0,0,0.65);}
.no-background.flowplayer .fp-controls,.no-background.flowplayer .fp-title,.no-background.flowplayer .fp-fullscreen,.no-background.flowplayer .fp-unload,.no-background.flowplayer .fp-close,.no-background.flowplayer .fp-embed,.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
.no-background.flowplayer .fp-play,.no-background.flowplayer .fp-brand{background-color:transparent !important;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)) !important;background-image:-webkit-linear-gradient(top,transparent,transparent) !important;background-image:-moz-linear-gradient(top,transparent,transparent) !important;background-image:-o-linear-gradient(top,transparent,transparent) !important;background-image:linear-gradient(to bottom,transparent,transparent) !important;text-shadow:0 0 1px #000}
.flowplayer.fixed-controls .fp-controls{background-color:#000}
.flowplayer .fp-timeline{background-color:#a5a5a5}
.flowplayer .fp-buffer{background-color:#eee}
.flowplayer .fp-progress{background-color:#00a7c8}
.flowplayer .fp-volumeslider{background-color:#a5a5a5}
.flowplayer .fp-volumelevel{background-color:#00a7c8}
.flowplayer .fp-waiting{display:none;margin:19% auto;text-align:center;}
.flowplayer .fp-waiting *{-webkit-box-shadow:0 0 5px #333;-moz-box-shadow:0 0 5px #333;box-shadow:0 0 5px #333}
.flowplayer .fp-waiting em{width:1em;height:1em;-webkit-border-radius:1em;-moz-border-radius:1em;border-radius:1em;background-color:rgba(255,255,255,0.8);display:inline-block;-webkit-animation:pulse .6s infinite;-moz-animation:pulse .6s infinite;animation:pulse .6s infinite;margin:.3em;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);}
.flowplayer .fp-waiting em:nth-child(1){-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}
.flowplayer .fp-waiting em:nth-child(2){-webkit-animation-delay:.45s;-moz-animation-delay:.45s;animation-delay:.45s}
.flowplayer .fp-waiting em:nth-child(3){-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}
.flowplayer .fp-waiting p{color:#ccc;font-weight:bold}
.flowplayer .fp-speed{font-size:30px;background-color:#333;background-color:rgba(51,51,51,0.8);color:#eee;margin:0 auto;text-align:center;width:120px;padding:.1em 0 0;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .5s;-moz-transition:opacity .5s;transition:opacity .5s;}
.flowplayer .fp-speed.fp-hilite{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
.flowplayer .fp-help{position:absolute;top:0;left:-9999em;z-index:100;background-color:#333;background-color:rgba(51,51,51,0.9);width:100%;height:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .2s;-moz-transition:opacity .2s;transition:opacity .2s;text-align:center;}
.is-help.flowplayer .fp-help{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
.flowplayer .fp-help .fp-help-section{margin:3%;direction:ltr}
.flowplayer .fp-help .fp-help-basics{margin-top:6%}
.flowplayer .fp-help p{color:#eee;margin:.5em 0;font-size:14px;line-height:1.5;display:inline-block;margin:1% 2%}
.flowplayer .fp-help em{background:#eee;-webkit-border-radius:.3em;-moz-border-radius:.3em;border-radius:.3em;margin-right:.4em;padding:.3em .6em;color:#333}
.flowplayer .fp-help small{font-size:90%;color:#aaa}
.flowplayer .fp-help .fp-close{display:block}
@media (max-width: 600px){.flowplayer .fp-help p{font-size:9px}
}.flowplayer .fp-dropdown{position:absolute;top:5px;width:100px;background-color:#000 !important;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box;margin:0 !important;list-style-type:none !important;}
.flowplayer .fp-dropdown:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 5px);width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid rgba(51,51,51,0.9)}
.flowplayer .fp-dropdown li{padding:10px !important;margin:0 !important;color:#fff !important;font-size:11px !important;list-style-type:none !important;}
.flowplayer .fp-dropdown li.active{background-color:#00a7c8 !important;cursor:default !important}
.flowplayer .fp-dropdown.fp-dropup{bottom:20px;top:auto;}
.flowplayer .fp-dropdown.fp-dropup:before{top:auto;bottom:-5px;border-bottom:none;border-top:5px solid rgba(51,51,51,0.9)}
.flowplayer .fp-tooltip{background-color:#000;color:#fff;display:none;position:absolute;padding:5px;}
.flowplayer .fp-tooltip:before{content:'';display:block;position:absolute;bottom:-5px;width:0;height:0;left:calc(50% - 5px);border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000}
.flowplayer .fp-timeline-tooltip{bottom:35px}
.flowplayer .fp-timeline:hover+.fp-timeline-tooltip{display:block}
.flowplayer .fp-subtitle{position:absolute;bottom:40px;left:-99999em;z-index:10;text-align:center;width:100%;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .3s;-moz-transition:opacity .3s;transition:opacity .3s;}
.flowplayer .fp-subtitle p{display:inline;background-color:#333;background-color:rgba(51,51,51,0.9);color:#eee;padding:.1em .4em;font-size:16px;line-height:1.6;}
.flowplayer .fp-subtitle p:after{content:'';clear:both}
.flowplayer .fp-subtitle p b{font-weight:bold}
.flowplayer .fp-subtitle p i{font-style:italic}
.flowplayer .fp-subtitle p u{text-decoration:underline}
.flowplayer .fp-subtitle.fp-active{left:0;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-mute,.flowplayer .fp-embed,.flowplayer .fp-close,.flowplayer .fp-play,.flowplayer .fp-menu{font-family:'fpicons' !important;color:#fff !important;font-size:15px !important;text-align:center !important;line-height:30px !important;text-decoration:none !important;}
.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-mute,.is-rtl.flowplayer .fp-embed,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-play,.is-rtl.flowplayer .fp-menu{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);transform:scale(-1,1)}
.is-rtl.flowplayer .fp-menu{-webkit-transform:none;-moz-transform:none;transform:none}
.flowplayer .fp-fullscreen:before{content:"\e602"}
.flowplayer .fp-unload:before,.flowplayer .fp-close:before{content:"\e600"}
.flowplayer .fp-mute:before{content:"\e606"}
.flowplayer .fp-embed:before{content:"\e603"}
.flowplayer .fp-play:before{content:"\e608"}
.flowplayer .fp-menu:before{content:"\e604"}
.flowplayer .fp-flash-disabled{background:#333;width:390px;margin:0 auto;position:absolute;bottom:0;color:#fff}
.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/play_white.png") center no-repeat;background-size:11%;}
.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/play_white_rtl.png") center no-repeat;background-size:11%}
@media (-webkit-min-device-pixel-ratio: 2){.is-splash.flowplayer .fp-ui,.is-paused.flowplayer .fp-ui{background:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/play_white@x2.png") center no-repeat;background-size:11%}
.is-rtl.is-splash.flowplayer .fp-ui,.is-rtl.is-paused.flowplayer .fp-ui{background:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/play_white_rtl@x2.png") center no-repeat;background-size:11%}
}.is-fullscreen.flowplayer .fp-ui{background-size:auto}
.is-seeking.flowplayer .fp-ui,.is-loading.flowplayer .fp-ui{background-image:none}
.flowplayer .fp-brand{color:#fff !important;position:absolute;right:115px;font-weight:normal !important;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;text-decoration:none !important;line-height:15px !important;font-size:11px !important;height:15px;width:55px;bottom:9px;box-sizing:border-box;text-align:center;padding:1px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
.has-menu.flowplayer .fp-brand{right:152px}
.is-rtl.flowplayer .fp-brand{right:auto;left:125px}
.has-menu.is-rtl.flowplayer .fp-brand{left:152px}
.no-brand.flowplayer .fp-brand{display:none}
.no-volume.no-mute.flowplayer .fp-brand{right:10px;}
.has-menu.no-volume.no-mute.flowplayer .fp-brand{right:47px}
.no-volume.flowplayer .fp-brand{right:50px}
.no-mute.flowplayer .fp-brand{right:95px}
.flowplayer .fp-logo{position:absolute;top:auto;left:15px;bottom:40px;cursor:pointer;display:none;z-index:100;}
.flowplayer .fp-logo img{width:100%}
.is-embedded.flowplayer .fp-logo{display:block}
.fixed-controls.flowplayer .fp-logo{bottom:15px}
.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close{position:absolute;top:10px;left:auto;right:10px;display:block;width:30px;height:23px;text-align:center;cursor:pointer;height:30px;width:30px;}
.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close{right:auto;left:10px}
.flowplayer .fp-unload,.flowplayer .fp-close{display:none}
.flowplayer .fp-play{display:none;height:30px !important;position:absolute;bottom:0;left:0;text-align:center;}
.is-rtl.flowplayer .fp-play{left:auto;right:0}
.is-playing.flowplayer .fp-play:before{content:"\e607"}
.flowplayer .fp-menu{display:none;position:absolute;bottom:0;z-index:11;right:10px;}
.is-rtl.flowplayer .fp-menu{right:auto;left:10px}
.has-menu.flowplayer .fp-menu{display:block}
.flowplayer .fp-menu .fp-dropdown{z-index:12;display:none;left:-42.5px;line-height:auto;width:149px;-webkit-transform:none;-moz-transform:none;transform:none;}
.is-rtl.flowplayer .fp-menu .fp-dropdown{left:-10px}
.flowplayer .fp-menu.dropdown-open .fp-dropdown{display:block}
.flowplayer.is-ready.is-closeable .fp-unload{display:block}
.flowplayer.is-ready.is-closeable .fp-embed{right:90px}
.flowplayer.is-ready.is-closeable .fp-fullscreen{right:50px}
.flowplayer.is-fullscreen .fp-fullscreen{display:block !important;}
.flowplayer.is-fullscreen .fp-fullscreen:before{content:"\e601"}
.flowplayer .fp-timeline{height:3px;position:relative;overflow:hidden;top:10px;height:10px;margin:0 225px 0 55px;}
.no-brand.flowplayer .fp-timeline{margin-right:160px;}
.has-menu.no-brand.flowplayer .fp-timeline{margin-right:187px}
.no-volume.no-brand.flowplayer .fp-timeline{margin-right:95px}
.no-mute.no-brand.flowplayer .fp-timeline{margin-right:130px}
.no-mute.no-volume.no-brand.flowplayer .fp-timeline{margin-right:55px}
.has-menu.flowplayer .fp-timeline{margin-right:252px}
.no-volume.flowplayer .fp-timeline{margin-right:160px}
.no-mute.flowplayer .fp-timeline{margin-right:195px}
.no-mute.no-volume.flowplayer .fp-timeline{margin-right:120px;}
.has-menu.no-mute.no-volume.flowplayer .fp-timeline{margin-right:157px}
.is-rtl.flowplayer .fp-timeline{margin:0 55px 0 225px;}
.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:160px;}
.has-menu.no-brand.is-rtl.flowplayer .fp-timeline{margin-left:197px}
.has-menu.is-rtl.flowplayer .fp-timeline{margin-left:262px}
.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:95px}
.no-mute.is-rtl.flowplayer .fp-timeline{margin-left:130px}
.no-mute.no-volume.is-rtl.flowplayer .fp-timeline{margin-left:55px}
.is-long.flowplayer .fp-timeline{margin:0 255px 0 85px;}
.no-volume.is-long.flowplayer .fp-timeline{margin-right:180px}
.no-mute.is-long.flowplayer .fp-timeline{margin-right:140px}
.has-menu.is-long.flowplayer .fp-timeline{margin-right:292px}
.no-brand.is-long.flowplayer .fp-timeline{margin-right:190px;}
.no-volume.no-brand.is-long.flowplayer .fp-timeline{margin-right:125px}
.no-mute.no-brand.is-long.flowplayer .fp-timeline{margin-right:85px}
.has-menu.no-brand.is-long.flowplayer .fp-timeline{margin-right:227px}
.is-rtl.is-long.flowplayer .fp-timeline{margin:85px 0 190px 0;}
.no-volume.is-rtl.is-long.flowplayer .fp-timeline{margin-left:125px}
.no-mute.is-rtl.is-long.flowplayer .fp-timeline{margin-left:85px}
.aside-time.flowplayer .fp-timeline,.no-time.flowplayer .fp-timeline{margin:0 190px 0 10px;}
.has-menu.aside-time.flowplayer .fp-timeline,.has-menu.no-time.flowplayer .fp-timeline{margin-right:227px}
.aside-time.no-brand.flowplayer .fp-timeline{margin-right:115px}
.aside-time.no-volume.flowplayer .fp-timeline,.no-time.no-volume.flowplayer .fp-timeline{margin-right:115px}
.aside-time.no-mute.flowplayer .fp-timeline,.no-time.no-mute.flowplayer .fp-timeline{margin-right:75px}
.is-rtl.aside-time.flowplayer .fp-timeline,.is-rtl.no-time.flowplayer .fp-timeline{margin:0 10px 0 115px}
.is-rtl.aside-time.no-volume.flowplayer .fp-timeline,.is-rtl.no-time.no-volume.flowplayer .fp-timeline{margin-left:50px}
.is-rtl.aside-time.no-mute.flowplayer .fp-timeline,.is-rtl.no-time.no-mute.flowplayer .fp-timeline{margin-left:10px}
.flowplayer .fp-buffer,.flowplayer .fp-progress{position:absolute;top:0;left:auto;height:100%;cursor:col-resize}
.flowplayer .fp-buffer{-webkit-transition:width .25s linear;-moz-transition:width .25s linear;transition:width .25s linear}
.flowplayer .fp-timeline.no-animation .fp-buffer{-webkit-transition:none;-moz-transition:none;transition:none}
.flowplayer .fp-progress.animated{transition-timing-function:linear;transition-property:width,height}
.flowplayer.is-touch .fp-timeline{overflow:visible}
.flowplayer.is-touch .fp-progress{-webkit-transition:width .2s linear;-moz-transition:width .2s linear;transition:width .2s linear;box-sizing:border-box}
.flowplayer.is-touch .fp-timeline.is-dragging .fp-progress{-webkit-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;-moz-transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear;transition:right .1s linear,border .1s linear,top .1s linear,left .1s linear}
.flowplayer.is-touch.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-mouseover .fp-progress:before{content:'';box-sizing:border-box;display:block;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;position:absolute;right:-5px}
.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after,.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:before{right:auto;left:-5px}
.flowplayer.is-touch.is-rtl.is-mouseover .fp-progress:after{left:-10px;-webkit-box-shadow:-1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:-1px 0 4px rgba(0,0,0,0.5);box-shadow:-1px 0 4px rgba(0,0,0,0.5)}
.flowplayer.is-touch.is-mouseover .fp-progress:before{width:10px;height:10px}
.flowplayer.is-touch.is-mouseover .fp-progress:after{height:18px;width:18px;top:-4px;right:-10px;border:5px solid rgba(255,255,255,0.65);-webkit-box-shadow:1px 0 4px rgba(0,0,0,0.5);-moz-box-shadow:1px 0 4px rgba(0,0,0,0.5);box-shadow:1px 0 4px rgba(0,0,0,0.5)}
.flowplayer.is-touch.is-mouseover .fp-timeline.is-dragging .fp-progress:after{border:10px solid #fff;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;-webkit-transition:inherit;-moz-transition:inherit;transition:inherit;top:-5px;right:-10px}
.flowplayer.is-touch.is-rtl.is-mouseover .fp-timeline.is-dragging .fp-progress:after{left:-15px;right:auto;border:10px solid #fff}
.flowplayer .fp-volume{position:absolute;top:12px;right:10px;}
.has-menu.flowplayer .fp-volume{right:37px}
.is-rtl.flowplayer .fp-volume{right:auto;left:10px}
.is-rtl.has-menu.flowplayer .fp-volume{left:37px}
.flowplayer .fp-mute{position:relative;width:30px;height:30px;float:left;top:-12px;cursor:pointer;}
.is-rtl.flowplayer .fp-mute{float:right}
.no-mute.flowplayer .fp-mute{display:none}
.flowplayer .fp-volumeslider{width:75px;height:6px;cursor:col-resize;float:left;}
.is-rtl.flowplayer .fp-volumeslider{float:right}
.no-volume.flowplayer .fp-volumeslider{display:none}
.flowplayer .fp-volumelevel{height:100%}
.flowplayer .fp-time{text-shadow:0 0 1px #000;font-size:11px;font-weight:normal;font-family:'myriad pro',Helvetica,Arial,sans-serif !important;color:#fff;width:100%;}
.flowplayer .fp-time.is-inverted .fp-duration{display:none}
.flowplayer .fp-time.is-inverted .fp-remaining{display:inline}
.flowplayer .fp-time em{width:35px;height:10px;line-height:10px;text-align:center;position:absolute;bottom:9px}
.no-time.flowplayer .fp-time{display:none}
.is-long.flowplayer .fp-time em{width:65px}
.flowplayer .fp-elapsed{left:10px;}
.is-rtl.flowplayer .fp-elapsed{left:auto;right:10px}
.flowplayer .fp-remaining,.flowplayer .fp-duration{right:180px;color:#eee;}
.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:125px;}
.has-menu.no-brand.flowplayer .fp-remaining,.has-menu.no-brand.flowplayer .fp-duration{right:152px}
.no-volume.no-brand.flowplayer .fp-remaining,.no-volume.no-brand.flowplayer .fp-duration{right:50px}
.no-mute.no-brand.flowplayer .fp-remaining,.no-mute.no-brand.flowplayer .fp-duration{right:95px}
.no-mute.no-volume.no-brand.flowplayer .fp-remaining,.no-mute.no-volume.no-brand.flowplayer .fp-duration{right:10px}
.has-menu.flowplayer .fp-remaining,.has-menu.flowplayer .fp-duration{right:217px}
.no-volume.flowplayer .fp-remaining,.no-volume.flowplayer .fp-duration{right:115px}
.no-mute.flowplayer .fp-remaining,.no-mute.flowplayer .fp-duration{right:160px}
.no-mute.no-volume.flowplayer .fp-remaining,.no-mute.no-volume.flowplayer .fp-duration{right:75px;}
.has-menu.no-mute.no-volume.flowplayer .fp-remaining,.has-menu.no-mute.no-volume.flowplayer .fp-duration{right:112px}
.is-rtl.flowplayer .fp-remaining,.is-rtl.flowplayer .fp-duration{right:auto;left:180px;}
.no-brand.is-rtl.flowplayer .fp-remaining,.no-brand.is-rtl.flowplayer .fp-duration{left:115px;}
.has-menu.no-brand.is-rtl.flowplayer .fp-remaining,.has-menu.no-brand.is-rtl.flowplayer .fp-duration{left:142px}
.has-menu.is-rtl.flowplayer .fp-remaining,.has-menu.is-rtl.flowplayer .fp-duration{left:207px}
.no-volume.is-rtl.flowplayer .fp-remaining,.no-volume.is-rtl.flowplayer .fp-duration{left:50px}
.no-mute.is-rtl.flowplayer .fp-remaining,.no-mute.is-rtl.flowplayer .fp-duration{left:95px}
.no-mute.no-volume.is-rtl.flowplayer .fp-remaining,.no-mute.no-volume.is-rtl.flowplayer .fp-duration{left:10px}
.flowplayer .fp-remaining{display:none}
.flowplayer.aside-time .fp-time{position:absolute;top:10px;left:10px;bottom:auto !important;width:auto;background-color:#000;background-color:rgba(0,0,0,0.65);height:30px;padding:0 5px;-webkit-border-radius:control_border_radius;-moz-border-radius:control_border_radius;border-radius:control_border_radius;line-height:30px;text-align:center;font-size:15px;}
.no-background.flowplayer.aside-time .fp-time{background-color:transparent !important}
.flowplayer.aside-time .fp-time strong,.flowplayer.aside-time .fp-time em{position:static}
.flowplayer.aside-time .fp-time .fp-elapsed::after{content:' / '}
.flowplayer.is-splash,.flowplayer.is-poster{cursor:pointer;}
.flowplayer.is-splash .fp-controls,.flowplayer.is-poster .fp-controls,.flowplayer.is-splash .fp-fullscreen,.flowplayer.is-poster .fp-fullscreen,.flowplayer.is-splash .fp-unload,.flowplayer.is-poster .fp-unload,.flowplayer.is-splash .fp-time,.flowplayer.is-poster .fp-time,.flowplayer.is-splash .fp-embed,.flowplayer.is-poster .fp-embed,.flowplayer.is-splash .fp-title,.flowplayer.is-poster .fp-title,.flowplayer.is-splash .fp-brand,.flowplayer.is-poster .fp-brand{display:none !important}
.flowplayer.is-poster .fp-engine{top:-9999em}
.flowplayer.is-loading .fp-waiting{display:block}
.flowplayer.is-loading .fp-controls,.flowplayer.is-loading .fp-time{display:none}
.flowplayer.is-loading .fp-ui{background-position:-9999em}
.flowplayer.is-loading video.fp-engine{position:absolute;top:-9999em}
.flowplayer.is-seeking .fp-waiting{display:block}
.flowplayer.is-playing{background-image:none !important;background-color:#333;}
.flowplayer.is-playing.hls-fix.is-finished .fp-engine{position:absolute;top:-9999em}
.flowplayer.is-fullscreen{top:0 !important;left:0 !important;border:0 !important;margin:0 !important;width:100% !important;height:100% !important;max-width:100% !important;z-index:99999 !important;-webkit-box-shadow:0 !important;-moz-box-shadow:0 !important;box-shadow:0 !important;background-image:none !important;background-color:#333;}
.is-rtl.flowplayer.is-fullscreen{left:auto !important;right:0 !important}
.flowplayer.is-fullscreen .fp-player{background-color:#333}
.flowplayer.is-error{border:1px solid #909090;background:#fdfdfd !important;}
.flowplayer.is-error h2{font-weight:bold;font-size:large;margin-top:10%}
.flowplayer.is-error .fp-message{display:block}
.flowplayer.is-error object,.flowplayer.is-error video,.flowplayer.is-error .fp-controls,.flowplayer.is-error .fp-time,.flowplayer.is-error .fp-subtitle{display:none}
.flowplayer.is-ready.is-muted .fp-mute{opacity:.7;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70)}
.flowplayer.is-ready.is-muted .fp-mute:before{content:"\e605"}
.flowplayer.is-mouseout .fp-controls,.flowplayer.is-mouseout .fp-title{height:0;-webkit-transition:height .15s .3s;-moz-transition:height .15s .3s;transition:height .15s .3s}
.is-fullscreen.flowplayer.is-mouseout .fp-controls{height:3px;bottom:0}
.flowplayer.is-mouseout .fp-title{overflow:hidden}
.flowplayer.is-mouseout .fp-timeline{margin:0 !important}
.flowplayer.is-mouseout .fp-timeline{-webkit-transition:height .15s .3s,top .15s .3s,margin .15s .3s;-moz-transition:height .15s .3s,top .15s .3s,margin .15s .3s;transition:height .15s .3s,top .15s .3s,margin .15s .3s;height:4px;top:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
.flowplayer.is-mouseout .fp-fullscreen,.flowplayer.is-mouseout .fp-unload,.flowplayer.is-mouseout .fp-elapsed,.flowplayer.is-mouseout .fp-remaining,.flowplayer.is-mouseout .fp-duration,.flowplayer.is-mouseout .fp-embed,.flowplayer.is-mouseout .fp-volume,.flowplayer.is-mouseout .fp-play,.flowplayer.is-mouseout .fp-menu,.flowplayer.is-mouseout .fp-brand,.flowplayer.is-mouseout .fp-timeline-tooltip,.flowplayer.is-mouseout.aside-time .fp-time{opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .15s .3s;-moz-transition:opacity .15s .3s;transition:opacity .15s .3s}
.flowplayer.is-mouseover .fp-controls,.flowplayer.fixed-controls .fp-controls{height:30px}
.flowplayer.is-mouseover .fp-title,.flowplayer.fixed-controls .fp-title{height:30px}
.flowplayer.is-mouseover .fp-fullscreen,.flowplayer.fixed-controls .fp-fullscreen,.flowplayer.is-mouseover .fp-unload,.flowplayer.fixed-controls .fp-unload,.flowplayer.is-mouseover .fp-elapsed,.flowplayer.fixed-controls .fp-elapsed,.flowplayer.is-mouseover .fp-remaining,.flowplayer.fixed-controls .fp-remaining,.flowplayer.is-mouseover .fp-duration,.flowplayer.fixed-controls .fp-duration,.flowplayer.is-mouseover .fp-embed,.flowplayer.fixed-controls .fp-embed,.flowplayer.is-mouseover .fp-logo,.flowplayer.fixed-controls .fp-logo,.flowplayer.is-mouseover .fp-volume,.flowplayer.fixed-controls .fp-volume,.flowplayer.is-mouseover .fp-play,.flowplayer.fixed-controls .fp-play,.flowplayer.is-mouseover .fp-menu,.flowplayer.fixed-controls .fp-menu{opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
.flowplayer.fixed-controls .fp-volume{display:block}
.flowplayer.fixed-controls .fp-controls{bottom:-30px;}
.is-fullscreen.flowplayer.fixed-controls .fp-controls{bottom:0}
.flowplayer.fixed-controls .fp-time em{bottom:-20px;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);}
.is-fullscreen.flowplayer.fixed-controls .fp-time em{bottom:10px}
.flowplayer.is-disabled .fp-progress{background-color:#999}
.flowplayer.is-flash-disabled{background-color:#333;}
.flowplayer.is-flash-disabled object.fp-engine{z-index:100}
.flowplayer.is-flash-disabled .fp-flash-disabled{display:block;z-index:101}
.flowplayer .fp-embed{position:absolute;top:10px;left:auto;right:50px;display:block;width:30px;height:30px;text-align:center;}
.is-rtl.flowplayer .fp-embed{right:auto;left:50px}
.flowplayer .fp-embed-code{position:absolute;display:none;top:10px;right:67px;background-color:#333;padding:3px 5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px #ccc;-moz-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;font-size:12px;}
.is-closeable.flowplayer .fp-embed-code{right:99px}
.flowplayer .fp-embed-code:before{content:'';width:0;height:0;position:absolute;top:2px;right:-10px;border:5px solid transparent;border-left-color:#333}
.is-rtl.flowplayer .fp-embed-code{right:auto;left:67px;}
.is-rtl.flowplayer .fp-embed-code:before{right:auto;left:-10px;border-left-color:transparent;border-right-color:#333}
.flowplayer .fp-embed-code textarea{width:400px;height:16px;font-family:monaco,"courier new",verdana;color:#777;white-space:nowrap;resize:none;overflow:hidden;border:0;outline:0;background-color:transparent;color:#ccc}
.flowplayer .fp-embed-code label{display:block;color:#999}
.flowplayer.is-embedding .fp-embed,.flowplayer.is-embedding .fp-embed-code{display:block;opacity:1;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}
.flowplayer.no-time .fp-embed{left:10px !important;}
.is-rtl.flowplayer.no-time .fp-embed{left:auto;right:10px !important}
.flowplayer.is-live .fp-timeline,.flowplayer.is-live .fp-duration,.flowplayer.is-live .fp-remaining{display:none}
.flowplayer .fp-context-menu{position:absolute;display:none;z-index:1001;background-color:#fff;padding:10px;border:1px solid #aaa;-webkit-box-shadow:0 0 4px #888;-moz-box-shadow:0 0 4px #888;box-shadow:0 0 4px #888;width:170px;}
.flowplayer .fp-context-menu li{text-align:center !important;padding:10px;color:#444 !important;font-size:11px !important;margin:0 -10px 0 -10px;}
.flowplayer .fp-context-menu li a{color:#00a7c8 !important;font-size:12.100000000000001px !important}
.flowplayer .fp-context-menu li:hover:not(.copyright){background-color:#eee}
.flowplayer .fp-context-menu li.copyright{margin:0;padding-left:110px;background-image:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/flowplayer.png");background-repeat:no-repeat;background-size:100px 20px;background-position:5px 5px;border-bottom:1px solid #bbb;}
@media (-webkit-min-device-pixel-ratio: 2){.flowplayer .fp-context-menu li.copyright{background-image:url("/DesktopModules/EasyDNNRotator/flowplayer/skin/img/flowplayer@2x.png")}
}@-moz-keyframes pulse{0%{opacity:0}
100%{opacity:1}
}@-webkit-keyframes pulse{0%{opacity:0}
100%{opacity:1}
}@-o-keyframes pulse{0%{opacity:0}
100%{opacity:1}
}@-ms-keyframes pulse{0%{opacity:0}
100%{opacity:1}
}@keyframes pulse{0%{opacity:0}
100%{opacity:1}
}.flowplayer.is-touch.is-mouseover .fp-progress:before{background-color:#00a7c8}
.flowplayer .fp-menu .fp-dropdown{right:-10px;left:auto;bottom:30px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.flowplayer .fp-menu .fp-dropdown:before{display:none}
.flowplayer .fp-play{width:30px}
.flowplayer.aside-time .fp-time{top:0;left:0}
.no-brand.flowplayer .fp-remaining,.no-brand.flowplayer .fp-duration{right:115px}
.flowplayer .fp-fullscreen,.flowplayer .fp-unload,.flowplayer .fp-close,.flowplayer .fp-embed{right:0;top:0;}
.is-rtl.flowplayer .fp-fullscreen,.is-rtl.flowplayer .fp-unload,.is-rtl.flowplayer .fp-close,.is-rtl.flowplayer .fp-embed{right:auto;left:0}
.flowplayer .fp-embed{right:32px;}
.is-rtl.flowplayer .fp-embed{right:auto;left:32px}
.flowplayer.is-closeable.is-ready .fp-fullscreen{right:32px}
.flowplayer.is-closeable.is-ready .fp-embed{right:64px}
.flowplayer.play-button .fp-play{display:block}
.flowplayer.play-button .fp-elapsed{left:27px;}
.is-rtl.flowplayer.play-button .fp-elapsed{right:27px}
.flowplayer.play-button .fp-timeline{margin-left:72px;}
.is-rtl.flowplayer.play-button .fp-timeline{margin-right:72px}
.is-long.flowplayer.play-button .fp-timeline{margin-left:102px;}
.is-rtl.is-long.flowplayer.play-button .fp-timeline{margin-right:102px}
.no-time.flowplayer.play-button .fp-timeline,.aside-time.flowplayer.play-button .fp-timeline{margin-left:27px;}
.is-rtl.no-time.flowplayer.play-button .fp-timeline,.is-rtl.aside-time.flowplayer.play-button .fp-timeline{margin-right:27px}
.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;
}
.chameleon_slider {
  position: relative;
  overflow: hidden;
  margin: auto;
  max-width: 100%;
}
.chameleon_slider * {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
.chameleon_slider a {
  color: #fff;
}
.chameleon_slider a img {
  border: none;
}
.chameleon_slider .loading_slider_overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  display: none;
}
.chameleon_slider .loading_slider_overlay p {
  display: block;
  color: #000;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 0 0 10px;
  position: relative;
  top: 50%;
}
.chameleon_slider .loading_slider_overlay .indicator {
  position: relative;
}
.chameleon_slider .exit_fullscreen {
  background: #f00;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 20px;
  height: 20px;
}
.chameleon_slider .main_panel {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .main_panel .media_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(data:image/png;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==) no-repeat;
}
.chameleon_slider .main_panel .items_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.chameleon_slider .main_panel .items_wrapper .item_container {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-engine,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-message {
  z-index: 0;
}
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui > .fp-embed,
.chameleon_slider .main_panel .items_wrapper .item_container > .flowplayer > .fp-player > .fp-ui > .fp-embed-code {
  display: none;
}
.chameleon_slider .main_panel .items_wrapper .item_container > img {
  max-width: none;
  max-height: none;
}
.chameleon_slider .main_panel .items_wrapper .item_container .fancy_effect_element {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .main_panel .preloading_item {
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  opacity: 0;
}
.chameleon_slider .main_panel.show_preload .preloading_item {
  opacity: 1;
  left: 0;
}
.chameleon_slider .main_panel.loading_effect .preloading_item {
  transition: opacity 0.4s ease-in-out;
  left: 0;
}
.chameleon_slider .autoplay_toggle {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-indent: -9999px;
}
.chameleon_slider a.navigation_button {
  display: block;
  text-indent: -9999px;
  outline: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .pagination {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 0 2px 2px;
  padding: 0;
}
.chameleon_slider .pagination .pages_container {
  overflow: hidden;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
}
.chameleon_slider .pagination .pages_container li {
  list-style-type: none;
  float: left;
  display: block;
  margin: 2px 2px 0 0;
  padding: 0;
  width: 10px;
  height: 10px;
  background: #fff;
}
.chameleon_slider .pagination .pages_container li:hover {
  background: #000;
  cursor: pointer;
}
.chameleon_slider .pagination .pages_container li.current {
  background: #f00;
}
.chameleon_slider .scrollable_box {
  text-align: left;
  background: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .scrollable_box .scrollbar {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  background: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  background: #F2F2F2;
}
.chameleon_slider .scrollable_box .scrollbar .track {
  height: 100%;
  width: 5px;
  position: relative;
}
.chameleon_slider .scrollable_box .scrollbar .track .thumb {
  background: #f00;
  position: absolute;
  top: 0;
  height: 20px;
  width: 100%;
}
.chameleon_slider .scrollable_box .viewport {
  overflow: hidden;
  padding: 0;
  margin: 10px;
}
.chameleon_slider .scrollable_box .viewport.scrollable {
  margin-right: 15px;
}
.chameleon_slider .scrollable_box .viewport .overview {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.chameleon_slider .scrollable_box .viewport .overview h2 {
  font-size: 25px;
  margin: 0 0 10px;
  padding: 0;
  color: #484848;
  font-weight: bold;
}
.chameleon_slider .scrollable_box .viewport .overview p {
  padding: 0;
  margin: 0 0 10px;
  line-height: 18px;
}
.chameleon_slider .thumb_wrapper,
.chameleon_slider .categories_wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .thumb_wrapper a.navigation,
.chameleon_slider .categories_wrapper a.navigation {
  position: absolute;
  top: 0;
  text-indent: -9000px;
  display: block;
  background: #f00;
  outline: none;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal,
.chameleon_slider .categories_wrapper a.navigation.horizontal {
  width: 15px;
  height: 100%;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal.next,
.chameleon_slider .categories_wrapper a.navigation.horizontal.next {
  right: 0;
}
.chameleon_slider .thumb_wrapper a.navigation.horizontal.prev,
.chameleon_slider .categories_wrapper a.navigation.horizontal.prev {
  left: 0;
}
.chameleon_slider .thumb_wrapper a.navigation.vertical,
.chameleon_slider .categories_wrapper a.navigation.vertical {
  height: 15px;
  width: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window,
.chameleon_slider .thumb_wrapper .categories_window,
.chameleon_slider .categories_wrapper .thumb_window,
.chameleon_slider .categories_wrapper .categories_window {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container,
.chameleon_slider .thumb_wrapper .categories_window .categories_container,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container,
.chameleon_slider .categories_wrapper .thumb_window .categories_container,
.chameleon_slider .categories_wrapper .categories_window .thumb_container,
.chameleon_slider .categories_wrapper .categories_window .categories_container {
  overflow: hidden;
  background: #000;
  position: relative;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container ul,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container ul,
.chameleon_slider .thumb_wrapper .categories_window .categories_container ul,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container ul,
.chameleon_slider .categories_wrapper .thumb_window .categories_container ul,
.chameleon_slider .categories_wrapper .categories_window .thumb_container ul,
.chameleon_slider .categories_wrapper .categories_window .categories_container ul {
  padding: 5px 5px 0 0;
  margin: 0 auto;
  list-style: none;
  list-style-position: inside;
  overflow: hidden;
  border: 0;
  float: left;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li,
.chameleon_slider .thumb_wrapper .thumb_window .categories_container ul li,
.chameleon_slider .thumb_wrapper .categories_window .thumb_container ul li,
.chameleon_slider .thumb_wrapper .categories_window .categories_container ul li,
.chameleon_slider .categories_wrapper .thumb_window .thumb_container ul li,
.chameleon_slider .categories_wrapper .thumb_window .categories_container ul li,
.chameleon_slider .categories_wrapper .categories_window .thumb_container ul li,
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li {
  float: left;
  margin: 0 0 5px 5px;
  position: relative;
  list-style: none;
  padding: 0;
  border: 0;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li {
  border: 1px solid #ccc;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: 0;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .thumb_preloading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon {
  padding: 0;
  margin: 0;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li img {
  display: block;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  background: none;
  font-size: 12px;
  width: 100%;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper .caption {
  padding: 3px;
  color: #fff;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li:hover {
  border: 1px solid #f00;
}
.chameleon_slider .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 1px solid #f00;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li {
  overflow: hidden;
  display: block;
  font-size: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li a.category {
  position: relative;
}
.chameleon_slider .categories_wrapper .categories_window .categories_container ul li a.category span {
  position: relative;
  top: 0;
  left: 0;
}
.chameleon_slider .autoplay_container {
  background: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.chameleon_slider .autoplay_container .indicator {
  background: #f00;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.chameleon_slider .social_buttons {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: none;
}
.chameleon_slider .social_buttons .social_button {
  padding: 0;
  margin: 0;
}
.chameleon_slider .social_buttons.horizontal .social_button {
  float: left;
}
.chameleon_slider .social_buttons_toggle {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.chameleon_slider .standalone_button {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: block;
}
.chameleon_slider .title_box {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: none;
  font-size: 12px;
  display: inline-block;
}
.chameleon_slider .title_box span {
  position: relative;
}

.slider_shadows_wrapper {
  position: relative;
  float: left;
}
.slider_shadows_wrapper .shadow {
  position: absolute;
  display: block;
  float: none;
}
/*!
 *  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";

.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;
  -webkit-transition: all 200ms ease-in 0s;
  -o-transition: all 200ms ease-in 0s;
  -moz-transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial;
  font-color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff;
  font-family: Arial;
  font-size: 18px;
  font-weight: normal;
  line-height: 47px;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
}
.eds_modalWrapper .eds_modalContent > h3:before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 44px;
}
.eds_modalWrapper .eds_modalContent input[type="text"],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
  -webkit-transition: box-shadow 200ms linear;
  -o-transition: box-shadow 200ms linear;
  -moz-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: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent input[type="text"],
  .eds_modalWrapper .eds_modalContent textarea,
  .eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type="submit"] {
  background: none #189fd3;
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px;
  color: #fff !important;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 48px;
  text-shadow: none !important;
  padding: 0 30px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  text-transform: none;
  margin: 0;
  height: auto;
  transition: all 100ms linear;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type="submit"]:hover {
  background: none #2cb3e7;
}
.eds_modalWrapper .eds_modalContent input[type="radio"] + label,
.eds_modalWrapper .eds_modalContent input[type="checkbox"] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .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: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type="text"],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .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: 768px), only screen and (max-device-width: 768px) {
  .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: 480px), only screen and (max-device-width: 480px) {
  .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 ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalWrapper .eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalWrapper .eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalWrapper .eds_modalContent ul li label span {
  font-weight: bold;
}
.eds_modalWrapper .eds_modalContent ul.eds_attendantsPrices li input[type="text"] {
  width: 35px;
}
.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: 480px), only screen and (max-device-width: 480px) {
  .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;
  transition: background 100ms linear;
  -webkit-transition: background 100ms linear;
  -o-transition: background 100ms linear;
  -moz-transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter:before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages:before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error:before {
  content: "";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type="radio"] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label::before, .eds_modalWrapper .eds_styledRadio input[type="radio"] + label:after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:hover:after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:checked + label:after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3:before {
  content: "";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3:before {
  content: "";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.chameleon_slider.NewsOne {
  font-family: Verdana, Helvetica, sans-serif;
  background: #ededed;
  border: 1px solid #d8d8d8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.chameleon_slider.NewsOne .loading_slider_overlay {
  background: #e8e8e8;
}
.chameleon_slider.NewsOne .loading_slider_overlay p {
  color: #fff;
  font-size: 16px;
}
.chameleon_slider.NewsOne .loading_slider_overlay .indicator {
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  margin: -25px 0 0 -25px;
  padding: 0;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/loading_white_bg.gif") no-repeat;
}
.chameleon_slider.NewsOne .main_panel {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.chameleon_slider.NewsOne .main_panel .media_link:hover {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/lightbox_button_bg.png") no-repeat center center;
}
.chameleon_slider.NewsOne .main_panel .preloading_item {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/loading_white_bg.gif") no-repeat center center #e8e8e8;
}
.chameleon_slider.NewsOne .main_panel.loading_item .preloading_item {
  background-color: rgba(232, 232, 232, 0.75);
}
.chameleon_slider.NewsOne .pagination {
  margin: 0 0 5px 5px;
}
.chameleon_slider.NewsOne .pagination .pages_container li {
  margin: 5px 5px 0 0;
  width: 12px;
  height: 12px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat -318px -158px;
}
.chameleon_slider.NewsOne .pagination .pages_container li:hover {
  background-position: -318px -170px;
}
.chameleon_slider.NewsOne .pagination .pages_container li.current {
  background-position: -318px -182px;
}
.chameleon_slider.NewsOne .autoplay_container {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_white_bg.png");
}
.chameleon_slider.NewsOne .autoplay_container .indicator {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_1.png");
}
.chameleon_slider.NewsOne .autoplay_toggle {
  width: 54px;
  height: 51px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat -210px -92px;
}
.chameleon_slider.NewsOne .autoplay_toggle:hover {
  background-position: -210px -143px;
}
.chameleon_slider.NewsOne .autoplay_toggle.pause {
  background-position: -264px -92px;
}
.chameleon_slider.NewsOne .autoplay_toggle.pause:hover {
  background-position: -264px -143px;
}
.chameleon_slider.NewsOne a.navigation_button {
  overflow: hidden;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat 0 0;
  height: 46px;
  width: 46px;
}
.chameleon_slider.NewsOne a.navigation_button.prev:hover {
  background-position: 0 -46px;
}
.chameleon_slider.NewsOne a.navigation_button.next {
  background-position: -46px 0;
}
.chameleon_slider.NewsOne a.navigation_button.next:hover {
  background-position: -46px -46px;
}
.chameleon_slider.NewsOne .title_box.current_item {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_1.png");
}
.chameleon_slider.NewsOne .title_box.current_gallery {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_2.png");
}
.chameleon_slider.NewsOne .title_box span {
  color: #fff;
  font-size: 16px;
  padding: 3px 15px 2px;
}
.chameleon_slider.NewsOne .scrollable_box {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_bg.png");
}
.chameleon_slider.NewsOne .scrollable_box .scrollbar {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/scroll_top_bg.png") no-repeat;
  right: 10px;
  width: 5px;
  padding: 4px 0 0;
  margin: 6px 0 10px;
}
.chameleon_slider.NewsOne .scrollable_box .scrollbar .track {
  padding: 0 0 4px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/scroll_bottom_bg.png") no-repeat bottom;
}
.chameleon_slider.NewsOne .scrollable_box .scrollbar .track .thumb {
  background: #363636;
  width: 1px;
  border: 1px solid #474747;
  border-top: 0;
  border-bottom: 0;
  margin: 0 0 0 1px;
}
.chameleon_slider.NewsOne .scrollable_box .viewport {
  margin: 10px 15px;
}
.chameleon_slider.NewsOne .scrollable_box .viewport.scrollable {
  margin-right: 20px;
}
.chameleon_slider.NewsOne .scrollable_box .viewport a {
  color: #fff;
}
.chameleon_slider.NewsOne .scrollable_box .viewport a:hover {
  color: #fff;
}
.chameleon_slider.NewsOne .scrollable_box .viewport h2 {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  font-family: Verdana, Helvetica, sans-serif;
}
.chameleon_slider.NewsOne .scrollable_box .viewport .overview, .chameleon_slider.NewsOne .scrollable_box .viewport p {
  font-size: 11px;
  line-height: 18px;
  color: #fff;
  font-family: Verdana, Helvetica, sans-serif;
}
.chameleon_slider.NewsOne .scrollable_box.item_info {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_2.png") repeat;
}
.chameleon_slider.NewsOne .scrollable_box.gallery_info {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_1.png") repeat;
}
.chameleon_slider.NewsOne .categories_wrapper {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/categories_bg.png") repeat-x #f2f2f2;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window {
  background: none;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container {
  background: none;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul {
  padding: 0;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul li {
  margin: 0;
  border-right: 1px solid #ebebeb;
  text-align: center;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul li a {
  text-decoration: none;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul li a span {
  color: #363636;
  font: 12px Verdana, Helvetica, sans-serif;
  text-decoration: none;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul li.on {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/category_bg.png") repeat-x #d6d6d6;
}
.chameleon_slider.NewsOne .categories_wrapper .categories_window .categories_container ul li:hover a span {
  color: #000;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.horizontal {
  margin-top: -8px;
  top: 50%;
  width: 30px;
  height: 16px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.horizontal.next {
  background-position: -142px -92px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.horizontal.next:hover {
  background-position: -142px -108px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.horizontal.prev {
  background-position: -117px -92px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.horizontal.prev:hover {
  background-position: -117px -108px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.vertical {
  margin-left: -8px;
  left: 50%;
  width: 17px;
  height: 29px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.vertical.next {
  background-position: -117px -148px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.vertical.next:hover {
  background-position: -134px -148px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.vertical.prev {
  background-position: -117px -124px;
}
.chameleon_slider.NewsOne .categories_wrapper a.navigation.vertical.prev:hover {
  background-position: -134px -124px;
}
.chameleon_slider.NewsOne .thumb_wrapper {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/shadow.png") no-repeat center 1px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat 0 0;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.horizontal {
  margin-top: -13px;
  top: 50%;
  width: 21px;
  height: 27px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.horizontal.next {
  background-position: -185px -92px;
  margin-right: 7px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.horizontal.next:hover {
  background-position: -185px -115px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.horizontal.prev {
  background-position: -168px -92px;
  margin-left: 7px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.horizontal.prev:hover {
  background-position: -168px -115px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.vertical {
  margin-left: -13px;
  left: 50%;
  width: 27px;
  height: 21px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.vertical.next {
  background-position: -151px -155px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.vertical.next:hover {
  background-position: -174px -155px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.vertical.prev {
  background-position: -151px -138px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation.vertical.prev:hover {
  background-position: -174px -138px;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window {
  background: none;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container {
  background: none;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul {
  padding: 15px 15px 0 0;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li {
  margin: 0 0 12px 12px;
  border: 2px solid #fff;
  box-shadow: 1px 1px 1px #ADADAD;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li .thumb_preloading {
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/preloader_thumb.gif") no-repeat center center #f8f8f8;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon {
  background: no-repeat center center;
  display: none;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.video {
  background-image: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/video_item_icon.png");
  display: block;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li .item_type_icon.audio {
  background-image: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/audio_item_icon.png");
  display: block;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li .caption_wrapper .caption {
  padding: 3px;
  color: #fff;
  font-size: 9px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_1.png");
  line-height: 11px;
  text-align: center;
}
.chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li:hover, .chameleon_slider.NewsOne .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 2px solid #787878;
}
.chameleon_slider.NewsOne .thumb_wrapper.not_transparent .thumb_window {
  background: #ededed;
}
.chameleon_slider.NewsOne .social_buttons_toggle {
  width: 34px;
  height: 27px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat 7px -92px;
  cursor: pointer;
}
.chameleon_slider.NewsOne .social_buttons_toggle:hover {
  background-position: -27px -92px;
}
.chameleon_slider.NewsOne .social_buttons_toggle.active {
  background-position: -27px -92px;
}
.chameleon_slider.NewsOne .social_buttons {
  padding: 10px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/transparent_black_1.png") repeat;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.chameleon_slider.NewsOne .social_buttons.vertical .social_button {
  margin: 0 0 5px;
}
.chameleon_slider.NewsOne .standalone_button {
  text-indent: -10000px;
  width: 28px;
  height: 28px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/buttons.png") no-repeat;
}
.chameleon_slider.NewsOne .standalone_button.email {
  background-position: 0 -120px;
}
.chameleon_slider.NewsOne .standalone_button.email:hover {
  background-position: -34px -120px;
}
.chameleon_slider.NewsOne .standalone_button.download {
  background-position: 0 -148px;
}
.chameleon_slider.NewsOne .standalone_button.download:hover {
  background-position: -34px -148px;
}
.chameleon_slider.NewsOne .standalone_button.fullscreen {
  background-position: 0 -176px;
}
.chameleon_slider.NewsOne .standalone_button.fullscreen:hover {
  background-position: -34px -176px;
}
.chameleon_slider.NewsOne .standalone_button.exit_fullscreen {
  width: 42px;
  height: 42px;
  background: url("/DesktopModules/EasyDNNRotator/controls/chameleonrotator/static/themes/NewsOne/images/fullscreenbuttons.png") no-repeat 0 -42px;
}
.chameleon_slider.NewsOne .standalone_button.exit_fullscreen:hover {
  background-position: -44px -42px;
}
.chameleon_slider.NewsOne.red .navigation_button.prev {
  background-position: -276px 0;
}
.chameleon_slider.NewsOne.red .navigation_button.prev:hover {
  background-position: -276px -46px;
}
.chameleon_slider.NewsOne.red .navigation_button.next {
  background-position: -322px 0;
}
.chameleon_slider.NewsOne.red .navigation_button.next:hover {
  background-position: -322px -46px;
}
.chameleon_slider.NewsOne.red .thumb_wrapper .thumb_window .thumb_container ul li:hover, .chameleon_slider.NewsOne.red .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 2px solid #ff0000;
}
.chameleon_slider.NewsOne.green .navigation_button.prev {
  background-position: -92px 0;
}
.chameleon_slider.NewsOne.green .navigation_button.prev:hover {
  background-position: -92px -46px;
}
.chameleon_slider.NewsOne.green .navigation_button.next {
  background-position: -138px 0;
}
.chameleon_slider.NewsOne.green .navigation_button.next:hover {
  background-position: -138px -46px;
}
.chameleon_slider.NewsOne.green .thumb_wrapper .thumb_window .thumb_container ul li:hover, .chameleon_slider.NewsOne.green .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 2px solid #56b319;
}
.chameleon_slider.NewsOne.blue .navigation_button.prev {
  background-position: -184px 0;
}
.chameleon_slider.NewsOne.blue .navigation_button.prev:hover {
  background-position: -184px -46px;
}
.chameleon_slider.NewsOne.blue .navigation_button.next {
  background-position: -230px 0;
}
.chameleon_slider.NewsOne.blue .navigation_button.next:hover {
  background-position: -230px -46px;
}
.chameleon_slider.NewsOne.blue .thumb_wrapper .thumb_window .thumb_container ul li:hover, .chameleon_slider.NewsOne.blue .thumb_wrapper .thumb_window .thumb_container ul li.on {
  border: 2px solid #1A7DF9;
}
