﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }



/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNnews/static/font-awesome/css/font-awesome.min.css");
.eds_news_NewsOne * {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_NewsOne .edn_module_box, .eds_news_NewsOne.eds_subCollection_tagCloud, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container, .eds_news_NewsOne.eds_subCollection_calendar .archive_list {
  margin-bottom: 10px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  border: 1px solid #cdcdcd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #f6f6f6;
  padding: 1px;
}
.eds_news_NewsOne .edn_module_box > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_tagCloud > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title, .eds_news_NewsOne.eds_subCollection_calendar .archive_list > h1.edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x 0 0 #dbdbdb;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  margin: 0;
}
.eds_news_NewsOne .edn_module_box > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_tagCloud > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container > h1.edn_module_title span, .eds_news_NewsOne.eds_subCollection_calendar .archive_list > h1.edn_module_title span {
  line-height: 1.25em;
  display: block;
  color: #4e4e4e;
  text-shadow: 1px 1px 2px #fff;
  font-size: 20px;
  padding: 5px 8px 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.eds_news_NewsOne .eds_openModal {
  cursor: pointer;
}
.eds_news_NewsOne .clear_content {
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu {
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title {
  background-color: #343434;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > h1.edn_module_title span {
  color: #f6f6f6;
  text-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper {
  padding: 0;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper ul {
  padding: 0;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li {
  list-style: none;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div {
  border: 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #dedede;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/item_bg.png") repeat-x 0 0 #f0f0f0;
  overflow: hidden;
  padding: 5px 4px 4px 100px;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon {
  display: block;
  float: right;
  text-indent: -10000px;
  margin: 0 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") no-repeat 0 0;
  height: 12px;
  width: 12px;
  margin: 2px 2px 0 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.rss:hover {
  background-position: -12px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/expand_collapse.png") no-repeat 4px 4px;
  height: 13px;
  width: 21px;
  margin: 2px 2px 0 4px;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse:hover {
  background-position: -13px 4px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse {
  background-position: 4px -8px;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div .icon.expand_collapse.collapse:hover {
  background-position: -13px -8px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > span {
  font-size: 12px;
  color: #333;
  display: inline;
  line-height: 15px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  display: inline;
  line-height: 15px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category span {
  color: #898989;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.category:hover {
  color: #B50909;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > img, .eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  float: left;
  margin: 0 7px 5px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image {
  float: left;
  display: block;
  margin: 0 7px 5px 0;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li > div > a.image > img {
  margin: 0;
  float: none;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper li.active > div > a.category {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li > div {
  padding-left: 10px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div {
  background-color: #d7d7d7;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li ul li > div .bullet {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/item_bullets.png") no-repeat 0 0;
  float: none;
  height: 9px;
  width: 9px;
  margin: 4px 3px 0 0;
  display: block;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_1 > div {
  padding-left: 20px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_2 > div {
  padding-left: 30px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_3 > div {
  padding-left: 40px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_4 > div {
  padding-left: 50px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_5 > div {
  padding-left: 60px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_6 > div {
  padding-left: 70px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_7 > div {
  padding-left: 80px;
}
.eds_news_NewsOne.eds_subCollection_categoryMenu .edn_module_box > .edn_category_menu_wrapper > li li.level_8 > div {
  padding-left: 90px;
}
.eds_news_NewsOne.eds_subCollection_search {
  margin: 0 0 10px;
  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_NewsOne.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_NewsOne.eds_subCollection_search .search_message {
  font: 14px Arial, Helvetica, sans-serif;
  color: #000;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .search_input {
  overflow: hidden;
  border: 1px solid #bdbdbd;
  width: 229px;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .input {
  float: left;
  overflow: hidden;
  height: 30px;
  padding: 0;
  margin: 0;
  background: #e6e6e6;
  -webkit-box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.eds_news_NewsOne.eds_subCollection_search .search_input .input input {
  background: transparent;
  width: 183px;
  padding: 7px 5px 6px;
  border: 0;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  color: #4d4d4d;
  line-height: 17px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search {
  display: block;
  width: 34px;
  height: 30px;
  text-indent: -10000px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/search/inside_button_bg.png") no-repeat 0 0 #fff;
  padding: 0;
  margin: 0;
  border: 0;
  border-left: 1px solid #BABABA;
  float: right;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: -1px 0 1px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: -1px 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: -1px 0 1px 0 rgba(0, 0, 0, 0.12);
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search span {
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input .do_search:hover {
  background-color: #E0E0E0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside {
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .input {
  border: 1px solid #bdbdbd;
  float: none;
  width: auto;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .input input {
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search {
  text-indent: 0;
  float: none;
  margin: 5px 2px 2px 0px;
  -webkit-box-shadow: 0 0 1px 0 #888;
  -moz-box-shadow: 0 0 1px 0 #888;
  box-shadow: 0 0 1px 0 #888;
  border: 1px solid #bdbdbd;
  width: auto;
  float: left;
  padding: 0 40px 0 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/search/outside_button_bg.png") no-repeat top right #fff;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search span {
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #7E7E7E;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-color: #E0E0E0;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search:hover span {
  color: #7E7E7E;
}
.eds_news_NewsOne.eds_subCollection_search .search_input.button_outside .do_search.right {
  float: right;
  margin-right: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #F6F6F6;
  border: 1px solid #CDCDCD;
  border-radius: 4px 4px 4px 4px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x scroll 0 0 #DBDBDB;
  border-radius: 3px 3px 0 0;
  margin: 1px;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title span {
  color: #4E4E4E;
  display: block;
  font-family: Arial, Helvetica, sans-serif, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.25em;
  padding: 5px 8px 6px;
  text-shadow: 1px 1px 2px #FFFFFF;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 10px;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div + span {
  padding-top: 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label > span {
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  border: solid 1px #BDBDBD;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #BDBDBD;
}
.eds_news_NewsOne.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, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b5b5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #bdbdbd;
  border-radius: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #ffffff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/select/selectArrow/predefined/select-pointer.png") no-repeat scroll right top;
  line-height: 28px;
  height: 30px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsOne.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, Helvetica, sans-serif;
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  border-left: 1px solid #bdbdbd;
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  right: 34px;
  top: 0;
  width: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_NewsOne.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 #bdbdbd;
  margin-top: 1px;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  position: relative;
  line-height: 1.7;
  padding-left: 17px;
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat scroll 0 -17px;
  content: "";
  display: inline-block;
  height: 17px;
  left: 0;
  margin: 2px 10px 0 0;
  position: absolute;
  width: 17px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  background-position: 0 0;
  content: "";
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label > span {
  line-height: 1.7;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat 0 -17px transparent;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  display: inline-block;
  padding: 1px 10px 1px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"] {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label > span {
  line-height: 1.6;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  margin: 2px 10px 0 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/advancedSearchForm/radioButtons/predefined/cf-radiobutton.png") no-repeat 0 -18px transparent;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before {
  content: "";
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 1px 10px 1px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #404040;
  line-height: 1.5;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"] {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  content: "";
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"] {
  border: solid 1px #BDBDBD;
  background: #fff none;
  color: #404040;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 2%;
  width: 95.9%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #404040;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 37px;
  position: relative;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 7px;
  top: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #727272;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: solid 1px #636363;
  background: none #bcbcbc;
  height: 7px;
  top: 5px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: 1px solid #727272;
  border-radius: 50%;
  background: #fff none;
  width: 17px;
  height: 17px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3), inset -3px -3px 5px rgba(0, 0, 0, 0.3);
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #CD1919;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial, Helvetica, sans-serif;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 16px;
  font: 10px/1 Arial, Helvetica, sans-serif;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #BDBDBD;
  border-radius: 0;
  background: #fff none;
  color: #404040;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 7px 2%;
  width: 100%;
  margin: 0;
  box-shadow: none;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #605F5F;
  background-color: #EFEEEE;
  border-style: solid;
  border-width: 1px;
  border-color: #BDBDBD;
  border-left: none;
  border-radius: 0;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
  margin: 15px 0 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  display: inline-block;
  padding: 4px 20px;
  background: #b1b1b1 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/advanced-search-submit-bg.png") left bottom repeat-x;
  border-radius: 3px;
  margin: 0 5px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  display: inline-block;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/advanced-search-icon.png") 100% 0 no-repeat;
  color: #f1f1f1;
  font: bold 14px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 28px 4px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #CDCDCD;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  padding: 4px 0;
  background-image: none;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: O;
  right: 0;
  background: #F6F6F6 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/searchInProgress.GIF") center center no-repeat;
  opacity: 0.8;
  width: 100%;
  z-index: 999;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > span label {
  display: block;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *,
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *::before,
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search *::after {
  box-sizing: border-box;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 25px 0 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  position: relative;
  z-index: 2;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_letter {
  background-color: #e4e4e4;
  color: #565555;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  opacity: 1;
  bottom: calc(100% + 5px);
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #cecece;
  border-color: #eee;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 Arial, Helvetica, sans-serif;
  display: inline-block;
  border: solid 1px #e4e4e4;
  text-decoration: none;
  color: #878787;
  transition: all 300ms;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  border-radius: inherit;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
  background-color: #fff;
  z-index: 2;
  transition: all 300ms;
}
.eds_news_NewsOne.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  overflow: hidden;
  position: absolute;
  color: #333;
  padding: 3px 6px;
  transition: all 300ms;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #fff;
  border: solid 1px #eee;
  color: #363636;
}
.eds_news_NewsOne .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_NewsOne .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsOne.eds_subCollection_tagCloud {
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags {
  padding: 0 0 10px 10px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a {
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #676767;
  line-height: 12px;
  display: inline-block;
  margin: 10px 10px 0 0;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a:hover {
  color: #222;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle1 {
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 14px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 16px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 18px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 20px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 22px;
}
.eds_news_NewsOne.eds_subCollection_tagCloud .tags a .tag-count {
  color: #898989;
  font-size: 12px;
  margin: 0 2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin: 5px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  border: solid 1px #BDBDBD;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
  width: 50%;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 30px;
  right: 34px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #BDBDBD;
}
.eds_news_NewsOne.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, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #404040;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  width: 116%;
  margin: 0 35px 0 0;
  box-shadow: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #000;
}
.eds_news_NewsOne.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_NewsOne.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/NewsOne/images/common/calendar/calendar_action_buttons.png");
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 12px;
  background-position: 0 -5px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 15px;
  background-position: -13px -1px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 12px;
  background-position: -26px -4px;
}
.eds_news_NewsOne.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 10px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table td {
  background-color: transparent;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/module_title_background.png") repeat-x 0 0 #dbdbdb;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 1px 1px 0 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  color: #4e4e4e;
  text-shadow: 1px 1px 2px #fff;
  font-size: 20px;
  line-height: 25px;
  padding: 5px 8px 6px;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #F6F6F6;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  color: #737373 !important;
  text-shadow: 1px 1px 0 #fff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  color: #222 !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .week_days {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/week_days_bg.png") repeat-x #CDCDCD;
  color: #fff;
  text-shadow: 1px 1px 1px #6D6D6D;
  font-size: 9px;
  padding: 7px 0 5px;
  border-bottom: 1px solid #F6F6F6;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day {
  border: 1px solid #F6F6F6;
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > span {
  color: #6F6F6F;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.25;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/day_bg.png") repeat-x bottom left #F6F6F6;
  padding: 8px 3px 7px;
  margin: 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day > a:hover {
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_posts > a {
  color: #fff;
  background-color: #cfcfcf;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.has_events > a {
  background-color: #FE852A;
  color: #fff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.other_month > span {
  color: #c8cccf;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.today > span {
  background-color: #dc0000 !important;
  color: #fff !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.selected > a {
  background-color: #575958 !important;
  color: #fff !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-red > a {
  color: #fff;
  background-color: #ff0000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-blue > a {
  color: #fff;
  background-color: #0000ff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-black > a {
  color: #fff;
  background-color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-green > a {
  color: #fff;
  background-color: #008000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-yellow > a {
  color: #6F6F6F;
  background-color: #ffff00;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-pink > a {
  color: #fff;
  background-color: #ffc0cb;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-gray > a {
  color: #fff;
  background-color: #808080;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-orange > a {
  color: #fff;
  background-color: #ffa500;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container .calendar_table .day.EDNcategorycolor-brown > a {
  color: #fff;
  background-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  background-color: transparent !important;
  padding: 0;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  padding: 2px 7px;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_NewsOne.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_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #adadad;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #fff;
  display: block;
  text-align: left;
  color: #707070 !important;
  text-decoration: none;
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 12px;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #f77601;
  background: #fff3e9;
  color: #ef5a00 !important;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_NewsOne.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list {
  margin: 0 0 10px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li {
  list-style: none;
  padding: 6px 10px 4px 25px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/article_icon.png") no-repeat 7px center;
  border-top: 1px solid #dedede;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li a {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list ul li:first-child {
  border: 0;
  padding-top: 7px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  display: block;
  position: absolute;
  left: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.export {
  top: 10px;
  right: 7px;
  height: 14px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/calendar_action_buttons.png") -13px -2px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss {
  top: 12px;
  right: 7px;
  height: 12px;
  width: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") -12px 0;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a.rss ~ a.export {
  right: 22px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list.events ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/event_clock.png") no-repeat 6px 9px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box {
  border: none;
  padding: 0;
  background: none;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  background-position: 7px 10px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse {
  display: block;
  float: right;
  text-indent: -10000px;
  margin: 0 0 0 4px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/expand_collapse.png") no-repeat 4px 4px;
  height: 13px;
  width: 21px;
  margin: 2px 2px 0 4px;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse:hover {
  background-position: -13px 4px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse {
  background-position: 4px -8px;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div .icon.expand_collapse.collapse:hover {
  background-position: -13px -8px;
}
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-year,
.eds_news_NewsOne.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > .edn_archive-month {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article_image {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 15px;
  right: 15px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 10px 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .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/NewsOne/images/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_NewsOne.eds_subCollection_news .article_image .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article_image .edn_galleryLink:hover:before {
  opacity: 0.8;
}
.eds_news_NewsOne.eds_subCollection_news .article_gallery {
  margin-top: 0;
  margin-bottom: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper {
  overflow: hidden;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a {
  float: right;
  font: 11px Arial, Helvetica, sans-serif;
  line-height: 13px;
  color: #444;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a > span {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/category_menu/rss.png") 0 0;
  padding: 0;
  margin: 0 2px 0 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a:hover {
  color: #000;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper > a:hover > span {
  background-position: 12px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article_rss_wrapper ~ .article_pager {
  margin-top: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png");
  height: 16px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png") left -32px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rate_stars.png") left -16px;
}
.eds_news_NewsOne.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs {
  text-align: left;
  margin: 0 0 10px;
  color: #363636;
  font: 11px Verdana;
  text-transform: uppercase;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs a {
  color: #363636;
  font: 11px Verdana;
  text-transform: uppercase;
}
.eds_news_NewsOne.eds_subCollection_news .bread_crumbs a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .category_info h1 {
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 26px;
  margin: 0 0 10px;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .category_info .description {
  font-size: 14px;
  margin: 3px 0 10px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: normal;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .category_info .description p {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .child_categories {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list {
  margin: 10px;
  padding: 0;
  border: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  background: #e1e1e1;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item {
  width: 30%;
  float: left;
  margin: 1.6%;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list .image {
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 0;
  line-height: 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .category.in_list .title {
  font-size: 17px;
  line-height: 21px;
  color: #333;
  padding: 4px 10px 5px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .link_to_original_RSS_article {
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article .link_to_original_RSS_article a {
  font: 12px Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article h1 {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font-size: 20px;
  color: #333;
  margin: 0 0 8px;
  font-weight: bold;
  letter-spacing: normal;
}
.eds_news_NewsOne.eds_subCollection_news .article h2.edn_subTitle {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font-size: 13px;
  color: #333;
  margin: 0 0 10px;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: normal;
}
.eds_news_NewsOne.eds_subCollection_news .article a {
  color: #CD1919;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container {
  border: 0;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  padding: 4px 0 0;
  margin: 0 0 15px;
  color: #7c7c7c;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container.clear_bottom {
  margin: 0;
  border-bottom: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container a {
  color: #fff;
  padding: 1px 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #b8b8b8;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 17px;
  margin: 0 4px 4px 0;
  display: inline-block;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .box_list_container a:hover {
  background: #787878;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text {
  display: block;
  color: #7c7c7c;
  font-size: 12px;
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text.no_margin {
  margin: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text > .separator {
  margin: 0 5px;
  color: #b8b8b8;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text a {
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article .meta_text a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .edn_eventDetails {
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article .edn_eventDetails .edn_eventPrice {
  float: right;
  margin: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date, .eds_news_NewsOne.eds_subCollection_news .article .event_location {
  margin: 10px 0;
  padding: 1px 0 0 21px;
  display: block;
  min-height: 15px;
  color: #3f3f3f;
  line-height: 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/event_clock.png") no-repeat 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date .export, .eds_news_NewsOne.eds_subCollection_news .article .event_location .export {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/export_icalendar.png") no-repeat 0 0;
  margin: 0 0 0 8px;
  font: 11px Arial, Helvetica, sans-serif;
  line-height: 17px;
  text-decoration: none;
  color: #e9020b;
  padding: 0 0 0 20px;
  height: 17px;
  display: inline-block;
  position: relative;
  top: -1px;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_date .export:hover, .eds_news_NewsOne.eds_subCollection_news .article .event_location .export:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article .event_location {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/location_marker.png") no-repeat 5px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list {
  margin: 0 0 20px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 {
  margin: 0 0 5px;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 a {
  color: #333;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.25em;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h1 a:hover {
  color: #CD0000;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list h2.edn_subTitle {
  margin: 0 0 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span {
  float: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .article_image {
  float: left;
  margin: 0 10px 10px 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .article_image img {
  display: block;
  border: 0;
  padding: 0;
  margin: 4px 0 0;
  max-width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .summary, .eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .summary p {
  color: #333;
  font: 13px Arial, Helvetica, sans-serif;
  margin: 0 0 10px;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span > .content > .date {
  font: 12px Arial, Helvetica, sans-serif;
  color: #555;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.span .meta_text {
  font-size: 11px;
  margin: 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box {
  float: left;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image {
  overflow: hidden;
  position: relative;
  line-height: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 0 0 5px;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image a img {
  max-width: 100%;
  height: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/on_image_text_bg.png");
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
  padding: 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .date {
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 13px;
  color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .comment_count {
  display: inline-block;
  height: 19px;
  width: 30px;
  text-align: center;
  font: 11px Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  color: #1a1a1a;
  margin: 3px 0 1px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/transparent_bubble.png") no-repeat;
  padding: 2px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box h1 a {
  font-size: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box > .date {
  font: 12px Arial, Helvetica, sans-serif;
  color: #555;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big {
  max-width: 49%;
  margin: 0 0 2% 2%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big .summary {
  font-size: 13px;
  color: #333;
  line-height: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big.edn_articleWrapper {
  max-width: 100%;
  margin: 0 10px 10px !important;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
  max-width: 32%;
  margin: 0 0 15px 2%;
}
.eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal .summary {
  font-size: 13px;
  color: #333;
  line-height: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links {
  padding: 15px;
  border: 2px dashed #dfdede;
  background-color: #f3f3f3;
  margin: 0 0 15px;
  clear: both;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents > h2,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles > h2,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links > h2 {
  font: 20px Arial, Helvetica, sans-serif;
  color: #333;
  margin-bottom: 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul {
  padding: 0 0 0 25px;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li {
  list-style: circle;
  margin: 3px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li a,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li a,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li a {
  font: 12px Arial, Helvetica, sans-serif;
  color: #676767;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li a:hover,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li a:hover,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li span,
.eds_news_NewsOne.eds_subCollection_news .article .related_articles ul li span,
.eds_news_NewsOne.eds_subCollection_news .article .edn_article_links ul li span {
  display: block;
  font-size: 11px;
  font-style: italic;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li {
  list-style: none;
}
.eds_news_NewsOne.eds_subCollection_news .article .article_documents ul li .document_icon {
  max-height: 12px;
  max-width: 12px;
  margin: 0 4px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_gallery {
  margin-top: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  height: auto;
  line-height: 0;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image > img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: auto;
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image.left_image {
  float: left;
  padding: 0 15px 15px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_image .eds_mediaWrapper {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article {
  font-size: 12px;
  color: #7c7c7c;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating {
  display: inline;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating .current_rating {
  margin: 0 5px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .rate_article .article_rating .EDN_article_rateit {
  position: relative;
  top: 2px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content, .eds_news_NewsOne.eds_subCollection_news .article.details .main_content p {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  font: 13px Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 22px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content {
  margin: 15px 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a,
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span {
  display: inline-block;
  background: #e7e7e7;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 0 #CDCDCD, inset 1px 1px 3px 0 white;
  border: 1px solid #cdcdcd;
  margin: 0 2px 5px 0;
  padding: 3px 7px 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a.active,
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span.active {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination a:hover {
  box-shadow: 0 0 2px #737373, inset 1px 1px 3px 0 white;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content .article_pagination span {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content a {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .main_content p {
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons {
  margin: 0 30px 10px 0;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons a {
  height: 30px !important;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons .addthis_button_compact,
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons .addthis_button_expanded {
  height: 20px !important;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .social_buttons .addthis_button_linkedin_counter {
  margin-right: 15px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton {
  float: left;
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/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: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery {
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_gallery ul li {
  list-style: none;
  float: left;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: 0;
  margin: 0 10px 10px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_map {
  border: 1px solid #ccc;
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .edn_article_map img {
  max-width: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments {
  margin: 20px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment h3 {
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  font: 16px Arial, Helvetica, sans-serif;
  color: #6b6b6b;
  margin: 15px 0 0;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box {
  background-color: #f3f3f3;
  border: 1px solid #d3d3d3;
  margin: 2px 0 0;
  padding: 25px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box .comment_info span {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25em;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.left {
  font: 14px Arial, Helvetica, sans-serif;
  width: 20%;
  padding: 7px 0 0;
  color: #6b6b6b;
  text-align: right;
  font-weight: bold;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.left span {
  margin: 0 5px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right {
  padding: 0 0 20px;
  width: 80%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right input.text {
  font: 16px Arial, Helvetica, sans-serif;
  border: 1px solid #bbbaba;
  padding: 5px 5px 4px;
  background: #fff;
  width: 70%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right .submit {
  display: inline-block;
  border: 0;
  text-decoration: none;
  padding: 6px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/add_button_bg.png") repeat-x bottom #929292;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right .submit span {
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: bold;
  color: #efefef;
  text-shadow: 0 -1px 1px #4B4B4B;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right .submit:hover {
  background-color: #D71313;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .add_comment .add_article_box table td.right textarea {
  font: 12px Arial, Helvetica, sans-serif;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 90%;
  height: 100px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .num_of_comment {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  padding: 3px 11px;
  font: 14px Arial, Helvetica, sans-serif;
  color: #5c5c5c;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .num_of_comment a {
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #5c5c5c;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  padding: 0;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes {
  margin: 10px 0 0 2%;
  width: 8%;
  float: left;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div {
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div input {
  position: relative;
  top: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .votes > div span {
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side {
  width: 90%;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .author {
  font-size: 12px;
  margin: 1px 0 0;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .date_time {
  font-size: 10px;
  color: #9A9A9A;
  font-family: Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 16px;
  height: 29px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/details_pointer.png") no-repeat transparent;
  position: relative;
  left: 1px;
  top: 48px;
  z-index: 1;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 16px;
  background: #f3f3f3;
  border: 1px solid #e1e1e1;
  min-height: 100px;
  padding: 10px 20px;
  font: 12px Verdana;
  color: #363636;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  font: 12px Verdana;
  color: #363636;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions {
  font-size: 10px;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions a {
  color: #9A9A9A;
  margin: 0 5px 0 0;
  font: 12px Arial, Helvetica, sans-serif;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side .actions a:hover {
  text-decoration: underline;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial, Helvetica, sans-serif;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  height: 33px;
  border: 0;
  text-decoration: none;
  padding: 0 8px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a span {
  display: inline-block;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 7px 6px 0 14px;
  color: #444;
  height: 26px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a:hover {
  background-position: right -33px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-position: 0 -33px;
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level0, .eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile {
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  line-height: 1.25em;
  margin: 0 0 15px;
  padding: 15px;
  border: 3px solid #e3e3e3;
  background: #eee;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss {
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/rss_18-18.png") no-repeat;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 5px;
  top: 5px;
  height: 18px;
  width: 18px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .author_rss:hover {
  background-position: -18px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_picture_container {
  float: left;
  font-size: 0;
  line-height: 0;
  margin: 0 15px 0 0;
  padding: 0;
  border: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_picture_container img {
  padding: 0;
  margin: 0;
  border: 2px solid #ccc;
  -webkit-box-shadow: 1px 1px 2px 0 #DEDEDE;
  -moz-box-shadow: 1px 1px 2px 0 #DEDEDE;
  box-shadow: 1px 1px 2px 0 #DEDEDE;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container h2 {
  padding: 0;
  border: 0;
  vertical-align: baseline;
  color: #555;
  font-weight: bold;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 1.25;
  margin: 0 0 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info {
  margin: 0;
  padding: 0;
  border: 0;
  color: #888;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 1.25;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info a {
  color: #676767;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .details_container .short_info a:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons {
  clear: both;
  padding: 5px 0 0 82px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button {
  margin: 0 5px 0 0;
  float: left;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio {
  display: inline-block;
  background: no-repeat #e5e5e5;
  border: 2px solid #d4d4d4;
  padding: 2px 5px 2px 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact span, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio span {
  color: #636363;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  text-decoration: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact:hover span, .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio:hover span {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.contact {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/contact_letter.png");
  background-position: 3px 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.full_bio {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/profile.png");
  background-position: 3px 3px;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: no-repeat;
  position: relative;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social:hover {
  background-position: -22px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.facebook {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/facebook_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.linked_in {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/linked_in_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.twitter {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/twitter_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.google_plus {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/google_plus_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.youtube {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/yt_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.instagram {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/inst_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button.social.website {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/link_button.png");
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box {
  border: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  margin: 0;
  padding: 10px 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.image {
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.image img {
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.title {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .article.sidebar_box > a.title:hover {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.big:first-child {
  margin-left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
  margin-left: 0;
  max-width: 32%;
}
.eds_news_NewsOne.eds_subCollection_news .articles_row.edn_isotopeLayout {
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action, .eds_news_NewsOne.eds_subCollection_news .edn_article_action {
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #ED2323;
  background: no-repeat;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action:hover, .eds_news_NewsOne.eds_subCollection_news .edn_article_action:hover {
  color: #CD0000;
}
.eds_news_NewsOne.eds_subCollection_news .admin_action.edit, .eds_news_NewsOne.eds_subCollection_news .edn_article_action.edit {
  padding-left: 16px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/pencil_small.png");
}
.eds_news_NewsOne.eds_subCollection_news .admin_action.publish_article, .eds_news_NewsOne.eds_subCollection_news .edn_article_action.publish_article {
  padding-left: 17px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/check_small.png");
}
.eds_news_NewsOne.eds_subCollection_news .article_pager {
  margin: 10px 0;
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a {
  display: inline-block;
  background: #e7e7e7;
  color: #696969;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 15px;
  box-shadow: 0 0 2px 0 #CDCDCD, inset 1px 1px 3px 0 white;
  border: 1px solid #cdcdcd;
  margin: 0 2px 5px 0;
  padding: 3px 7px 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a:hover {
  box-shadow: 0 0 2px #737373, inset 1px 1px 3px 0 white;
}
.eds_news_NewsOne.eds_subCollection_news .article_pager a.active {
  box-shadow: inset 1px 1px 3px 0 #ADADAD;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image {
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_wrapper {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_wrapper.no_text {
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image p.image_title,
.eds_news_NewsOne.eds_subCollection_news .in_article_image .image_description {
  clear: both;
  font: 11px Arial, Helvetica, sans-serif;
  color: #333;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image p.image_title {
  margin: 5px 0 2px !important;
  font-size: 12px;
  line-height: 14px !important;
  font-weight: bold !important;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.left {
  float: left;
  margin: 0 10px 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.right {
  float: right;
  margin: 0 0 10px 10px;
}
.eds_news_NewsOne.eds_subCollection_news .in_article_image.clear {
  clear: both;
  margin: 0 0 10px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 100%;
  text-align: center;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger {
  display: inline-block;
  margin: 0 auto;
  padding: 5px 20px;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25), inset 0 3px 6px -4px #fff;
  background: #ddd;
  cursor: pointer;
  -webkit-transition: box-shadow 200ms ease;
  -khtml-transition: box-shadow 200ms ease;
  -moz-transition: box-shadow 200ms ease;
  -ms-transition: box-shadow 200ms ease;
  -o-transition: box-shadow 200ms ease;
  transition: box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span {
  font: bold 13px/1.3 Arial, Helvetica, sans-serif;
  color: #7A7A7A;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  -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_NewsOne.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/NewsOne/images/common/loadingArticles.gif") center center no-repeat #ddd;
  box-shadow: inset 0 3px 6px -4px #fff;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 500ms ease;
  -khtml-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay > span {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.44), 0 3px 6px -4px #FFFFFF inset;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span {
  color: #595959;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_NewsOne.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table {
  margin: 15px 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr {
  border-style: solid;
  border-width: 2px 0;
  border-color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr:nth-child(even) td {
  background-color: #ebebeb;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 10px;
  color: #404040;
  background-color: #e0dede;
  vertical-align: top;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
  border-radius: 4px 0 0 4px;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value {
  border-radius: 0 4px 4px 0;
}
.eds_news_NewsOne.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_NewsOne.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_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/articleDetailsCustomFields/checkbox/predefined/cf-checkbox.png") no-repeat 0 -18px;
  float: left;
  width: 16px;
  height: 17px;
  margin: 3px 4px 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background-position: 0 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_registerEventDetails {
  margin: 0;
  padding: 0 0 0 18px;
  float: left;
  clear: both;
}
.eds_news_NewsOne.eds_subCollection_news .edn_registerEventDetails li {
  list-style-type: circle;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage {
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
  display: block;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  padding: 6px 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/comments/add_button_bg.png") repeat-x bottom #929292;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 18px;
  font-weight: bold;
  color: #efefef;
  text-shadow: 0 -1px 1px #4B4B4B;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #D71313;
}
.eds_news_NewsOne.eds_subCollection_news .edn_eventSeparator {
  border: none;
  border-bottom: 1px solid #dadada;
  outline: none;
  height: 0;
  margin: 10px 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #dadada;
  border-radius: 5px;
  overflow: hidden;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #EBEBEB;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fff;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F1F1F1;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin: 5px 0 15px;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label:after {
  display: none;
}
.eds_news_NewsOne.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, Helvetica, sans-serif;
  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_NewsOne.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_NewsOne.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar label:hover:after {
  opacity: 1;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:after {
  background-color: #d9534f;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:after {
  background-color: #f0ad4e;
}
.eds_news_NewsOne.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_NewsOne.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_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_NewsOne.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_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_NewsOne.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_NewsOne.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting {
  float: right;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip::before {
  content: "";
  bottom: calc(100% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #4c4c4c;
  position: absolute;
  transform: rotate(45deg);
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_NewsOne.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .admin_action,
.eds_news_NewsOne.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_NewsOne.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article a {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_location {
  padding-left: 0;
  background: none transparent;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date .export,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_location .export {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date a,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .meta_text a {
  color: #000;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .event_date.eds_viewsComments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .meta_text.eds_viewsComments {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .box_list_container,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .author_group_profile,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .article_documents,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .related_articles,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .edn_article_links,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .fb-comments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article #disqus_thread,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .rate_article,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .article_gallery,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .article_comments,
.eds_news_NewsOne.eds_subCollection_news.eds_print .article.details .edn_socialPrintWrapper {
  display: none;
}
.eds_news_NewsOne.eds_subCollection_search .article.in_list {
  margin: 20px 0 0;
}
.eds_news_NewsOne .fb-comments, .eds_news_NewsOne .fb-comments iframe[style], .eds_news_NewsOne .fb-comments > span {
  width: 100% !important;
}
.eds_news_NewsOne .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}

.EDN_search.theme_NewsOne {
  padding: 0px;
  border: 1px solid #cdcdcd;
  background-color: #f6f6f6;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_NewsOne ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_NewsOne ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333;
  border: solid 1px transparent;
}
.EDN_search.theme_NewsOne ul li span a {
  color: #333;
  text-decoration: none;
}
.EDN_search.theme_NewsOne ul li span a:hover {
  text-decoration: none;
  color: #000;
  text-decoration: none;
}
.EDN_search.theme_NewsOne .acSelect {
  background-color: #e4e4e4;
  color: #333;
}
.EDN_search.theme_NewsOne .acSelect a {
  color: #333;
}

/* IE 7 only */
*:first-child + html .eds_news_NewsOne.eds_subCollection_news .article.details .article_comments .comment_list .comment .right_side {
  width: 88%;
}
*:first-child + html .eds_news_NewsOne.eds_subCollection_news .article.in_list.box .article_image > span .date {
  position: relative;
  top: -6px;
}

.qtip.edn_calendarbox_NewsOne {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background: #f6f6f6;
  border: 1px solid #cdcdcd;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #1A1A1A;
  width: 500px;
  max-width: 95%;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title {
  border: 0;
  border-bottom: 1px solid #cdcdcd;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/title_gradient.png") repeat-x 0 bottom #fff;
  margin: 0;
  padding: 6px 15px 0;
  display: block;
  height: 19px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span {
  font: 12px Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span a {
  text-decoration: none;
  color: #111;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .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_NewsOne > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 10px 0;
  padding: 0;
  border: 0;
  border-radius: 5px;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article p {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title {
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  color: #333;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title a {
  font: 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.title a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: #111;
  margin-top: 5px;
  padding: 0 0 0 15px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_map_location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > a {
  float: right;
  clear: both;
  text-decoration: none;
  font: 12px Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 14px;
  font-weight: bold;
  margin: 3px 0 0;
  padding: 0 0 0 9px;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_arrow.png") no-repeat 0 2px;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px 15px 15px 30px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li {
  list-style: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsOne/images/common/calendar/tooltip/red_arrow.png") outside;
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > a {
  color: #333;
  font: 12px Arial, Helvetica, sans-serif;
  line-height: 14px;
  font-weight: bold;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsOne > .qtip-content > .wrapper > .article_list > li > p {
  color: #111;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial, Helvetica, sans-serif;
  line-height: 12px;
  font-weight: normal;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item {
    width: 48%;
    margin: 0 1% 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .category.in_list.catalog-item img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image {
    float: none;
    margin: 0 0 10px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.span > .content > .article_image img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big {
    float: none;
    max-width: 98%;
    margin: 0 1% 2% 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big img {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
    max-width: 98%;
    margin: 0 0 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal img {
    width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons {
    padding: 5px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .social-networks {
    margin-top: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .article.details .author_group_profile .profile_buttons .button {
    float: none;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
    max-width: 98%;
    margin: 0 0 15px 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_NewsOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_BlogTwo .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img, .EasyDNNSkin_BlogOne .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child img {
    width: 100%;
  }

  .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.big, .eds_news_NewsOne.eds_subCollection_news .article.in_list.box.normal {
    max-width: 100%;
    float: none;
    margin: 20px 0 0;
  }
  .eds_news_NewsOne.eds_subCollection_news .articles_row .article.in_list.box.normal:first-child {
    max-width: 100%;
  }
}



.c_DNN6_Header .Head {
    color:#4F4F4F; 
    font-size:18px; 
    line-height:24px; 
    padding:0 10px 0 0; 
    text-transform:uppercase; 
    }
    
.c_DNN6_Header .Title {
    margin:1em 0 .5em 0; 
    overflow:hidden; 
    }
    
.c_DNN6_Header .Title .TitleBar {
    margin:0 -100% 0 0; 
    vertical-align:middle; 
    width: 100%; 
    height: 20px; 
    }
    
.c_DNN6_SubTitle .Head {
    color:#4F4F4F; 
    font-size:18px; 
    line-height:30px; 
    padding:0 10px 0 0; 
    text-transform:uppercase; 
    }
    
.c_DNN6_SubTitle .Title {
    margin:1.35em 0 .5em 0; 
    overflow:hidden; 
    }
    
.c_DNN6_SubTitle .Title .TitleBar {
    margin:0 -100% 0 0; 
    vertical-align:middle; 
    width: 100%; 
    height: 24px; 
    }
    
.Head {
    color:#fff; 
    font-size:18px;
    border-bottom:none; 
    margin-bottom:0;
    font-weight:normal;
    }
    
#clearfix {
    width:100%; 
    float:left; 
    overflow:auto; 
    }

.Container {
    margin:2em 0 0 0; 
    padding:0; 
    }
    
.ctrFont .Head {
    font-family:'opensans', Arial, Tahoma; 
    }
    
.CntPadding { padding:0; }

/*========== H1Container CSS ===========*/
.H1Container_Title .Head {
    color:#6db001; 
    font-size:32px; 
    line-height:32px; 
    font-family:'opensans', Tahoma; 
    }
    
/*========== H2Container CSS ===========*/
.H2Container_Title .Head {
    color:#6db001; 
    font-size:26px; 
    line-height:24px; 
    font-family:'opensans', Tahoma; 
    }

/*========== FooterContainer CSS =======*/
.FooterTitle .Head {
    color:#eaeaea; 
    font-size:18px; 
    font-family:'opensans', Tahoma; 
    }
    
.FooterTitle h1 {
    line-height:40px; 
    padding-bottom:15px; 
    }

/*========== H3Container CSS ===========*/
.H3Container_Title .Head {
    color:#6db001; 
    font-size:20px; 
    font-family:'opensans', Tahoma; 
    }
    
.H3Container_Title h1 {
    line-height:36px; 
    }
 
/*========== H1TitleBorderContainer CSS */
.H1TitleContainer {
    border-bottom:1px solid #6db001; 
    }
    
.H1TitleContainer .Head {
    color:#6db001; 
    font-size:32px; 
    font-family:'opensans', Tahoma; 
    line-height:32px; 
    }
    
.H1ContentContainer {
    padding:10px 0 0 0; 
    }

/*========== H2TitleBorderContainer CSS */
.H2TitleContainer {
    border-bottom:1px solid #6db001; 
    }
    
.H2TitleContainer .Head {
    color:#6db001; 
    font-size:26px; 
    line-height:24px; 
    font-family:'opensans', Tahoma; 
    }
    
.H2ContentContainer {
    padding:10px 0 0 0; 
    }

/*========== H3TitleBorderContainer CSS */
.H3TitleContainer {
    border-bottom:1px solid #6db001; 
    }
    
.H3TitleContainer .Head {
    color:#6db001; 
    font-size:20px; 
    font-family:'opensans', Tahoma; 
    }
    
.H3TitleContainer h1 {
    line-height:39px; 
    }
    
.H3ContentContainer {
    padding:10px 0 0 0; 
    }
                    
/*========== Container01 ===============*/
.Container01Title {
    padding:0px 15px; 
    background:#6db001; 
    border-radius:22px; 
    -moz-border-radius:22px; 
    -webkit-border-radius:22px; 
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container01Title h1 {
    line-height:36px; 
    color:#fff; 
    font-size:18px; 
    font-family:Arial, Tahoma; 
    }
    
.Container01Content {
    padding-top:10px; 
    }

/*========== Container02 CSS ===========*/
.Container02 {
    background:#fff; 
    border:1px solid #cecfcf; 
    }
    
.Container02_Title h1 {
    line-height:36px; 
    font-size:18px; 
    padding:0 15px;
    background: #6db001; 
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6db001), to(#508100));
    background: -webkit-linear-gradient(#6db001, #508100); 
    background: -moz-linear-gradient(#6db001, #508100);
    background: -ms-linear-gradient(#6db001, #508100); 
    background: -o-linear-gradient(#6db001, #508100);
    background: linear-gradient(#6db001, #508100); 
    -pie-background: linear-gradient(#6db001, #508100);
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container02_content {
    padding:8px 10px; 
    }

/*========== Container03 CSS ===========*/
.Container03Title h1 {
    padding:0px 15px; 
    color:#fff; 
    font-size:18px; 
    line-height:36px; 
    background:#6db001; 
    }
    
.Container03Content {
    padding-top:10px; 
    }

/*========== Container04 CSS ===========*/
.Container04Title .Head {
    background:#6db001; 
    padding:3px 15px; 
    position:relative; 
    }
    
.Container04Title h1 {
    border-bottom:4px solid #6db001; 
    font-size:18px; 
    line-height:37px; 
    }
    
.Container04Content {
    padding:8px 0; 
    }

/*========== Container05 CSS ===========*/
.Container05 {
    background:#fff; 
    border:1px solid #cecfcf; 
    -webkit-border-radius:0 0 20px 20px; 
    -moz-border-radius:0 0 20px 20px; 
    -o-border-radius:0 0 20px 20px; 
    border-radius:0 0 20px 20px; 
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container05Content {
    padding:8px 10px; 
    }
    
.Container05Title h1 {
    padding:0px 15px; 
    line-height:36px; 
    font-size:18px;
    background: #6db001; 
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6db001), to(#508100));
    background: -webkit-linear-gradient(#6db001, #508100); 
    background: -moz-linear-gradient(#6db001, #508100);
    background: -ms-linear-gradient(#6db001, #508100); 
    background: -o-linear-gradient(#6db001, #508100);
    background: linear-gradient(#6db001, #508100); 
    -pie-background: linear-gradient(#6db001, #508100);
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }

/*========== Container06 CSS ===========*/
.Container06Title .Head {
    padding:3px 15px; 
    background:#6db001; 
    }
    
    .Container06Title h1 {
        border-top:4px solid #6db001; 
        font-size:18px; 
        line-height:34px; 
    }
    
.Container06Content {
    padding:8px 0; 
    }
                 
/*========== Container07 CSS ===========*/
.Container07 {
    background:#fff; 
    border:1px solid #cecfcf; 
    }
    
    .Container07Title h1 {
        font-size:18px; 
        line-height:29px; 
        border-top:4px solid #6db001; 
        border-bottom:4px solid #6db001; 
        font-size:18px; 
        padding:0 15px; 
        }
        
    .Container07Title .Head {
        color:#6db001; 
        }
        
    .Container07Content {
        padding: 8px 10px; 
        }

/*========== Container08 CSS ===========*/
.Container08 {
    background:#fff; 
    border:1px solid #cecfcf; 
    -webkit-border-radius:0 12px; 
    -moz-border-radius:0 12px; 
    border-radius:0 12px; 
    behavior: url("/Portals/_default/Skins/Favourite/CSS/PIE.htc");
    position:relative; 
    }
    
.Container08Title h1 {
    padding:0px 18px; 
    font-size:18px; 
    line-height:36px; 
    -webkit-border-radius: 0 12px 0 0; 
    -moz-border-radius:0 12px 0 0; 
    border-radius:0 12px 0 0;
    background: #6db001; 
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6db001), to(#508100));
    background: -webkit-linear-gradient(#6db001, #508100); 
    background: -moz-linear-gradient(#6db001, #508100);
    background: -ms-linear-gradient(#6db001, #508100); 
    background: -o-linear-gradient(#6db001, #508100);
    background: linear-gradient(#6db001, #508100); 
    -pie-background: linear-gradient(#6db001, #508100);
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container08Content {
    padding:8px 10px; 
    }

/*========== Container09 CSS ===========*/
.Container09 {
    background:#fff; 
    border:1px solid #cecfcf; 
    }
    
    .Container09Title h1 {
        font-size:18px; 
        border-left:6px solid #6db001; 
        border-right:6px solid #6db001; 
        font-size:18px; 
        padding:0 13px; 
        line-height:35px; 
        }
        
    .Container09Title .Head {
        color:#6db001; 
        }
        
    .Container09Title {
        border-bottom:1px solid #cecfcf; 
        }
        
    .Container09Content {
        padding: 8px 10px; 
        }

/*========== Container10 CSS ===========*/
.Container10 {
    border:1px solid #cecfcf; 
    -moz-border-radius:0px 0px 20px 20px; 
    -webkit-border-radius:0px 0px 20px 20px; 
    border-radius:0px 0px 20px 20px; 
    behavior: url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    }
    
    .Container10Title h1 {
        border-bottom:1px solid #cecfcf; 
        font-size:18px; 
        line-height:36px; 
        padding:0 15px; 
        }
        
    .Container10Title .Head {
        color:#6db001; 
        }
        
    .Container10Content {
        padding: 8px 10px; 
        }

/*========== Container11 CSS ===========*/
.Container11 {
    background:#fff; 
    border:1px solid #cecfcf; 
    -webkit-border-radius:20px 20px 0 0; 
    -moz-border-radius:20px 20px 0 0; 
    -o-border-radius:20px 20px 0 0; 
    border-radius:20px 20px 0 0; 
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container11Content {
    padding:8px 10px; 
    }
    
.Container11Title h1 {
    padding:0px 15px; 
    line-height:36px; 
    font-size:18px; 
    -webkit-border-radius:20px 20px 0 0; 
    -moz-border-radius:20px 20px 0 0; 
    border-radius:20px 20px 0 0;
    background: #6db001; 
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6db001), to(#508100));
    background: -webkit-linear-gradient(#6db001, #508100); 
    background: -moz-linear-gradient(#6db001, #508100);
    background: -ms-linear-gradient(#6db001, #508100); 
    background: -o-linear-gradient(#6db001, #508100);
    background: linear-gradient(#6db001, #508100); 
    -pie-background: linear-gradient(#6db001, #508100);
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
                  
/*========== Container12 CSS ===========*/
.Container12 {
    border:1px solid #cecfcf; 
    -webkit-border-radius:12px; 
    -moz-border-radius:12px; 
    border-radius:12px; 
    behavior: url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
    .Container12Content {
        padding:10px; 
        }

/*========== Container13 CSS ===========*/
.Container13 {
    border:1px solid #cecfcf; 
    }
    
    .Container13Content {
        padding:10px; 
        overflow:auto; 
        }
 
/*========== Container14 CSS ===========*/
.Container14 {
    background:#fff; 
    border:1px solid #cecfcf; 
    -webkit-border-radius:0 20px; 
    -moz-border-radius:0 20px; 
    border-radius:0 20px; 
    behavior: url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container14Title h1 {
    padding:0px 18px; 
    font-size:18px; 
    line-height:36px; 
    -webkit-border-radius: 0 20px 0 0; 
    -moz-border-radius:0 20px 0 0; 
    border-radius:0 20px 0 0;
    background: #6db001; 
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6db001), to(#508100));
    background: -webkit-linear-gradient(#6db001, #508100); 
    background: -moz-linear-gradient(#6db001, #508100);
    background: -ms-linear-gradient(#6db001, #508100); 
    background: -o-linear-gradient(#6db001, #508100);
    background: linear-gradient(#6db001, #508100); 
    -pie-background: linear-gradient(#6db001, #508100);
    behavior:url("/Portals/_default/Skins/Favourite/CSS/PIE.htc"); 
    position:relative; 
    }
    
.Container14Content {
    padding:8px 10px; 
    }



    
    
    








/* 
 * 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{
}


/* Standard Menu Reset */
body, nav, ul, li, a {
    margin: 0; 
    padding: 0; 
    } 
    
ul ul, ul ol, ol ol, ol ul {
    margin-left:0px; 
    margin-bottom:0px; 
    } 
    
body {
    font-family: "opensans", Helvetica, Arial, sans-serif; 
    }
    
a {
    text-decoration: none; 
    }
    
.nav {
    list-style: none; *zoom: 1; 
    } 
    
.nav ul {
    list-style: none;  
    }


/* Main Nav Style Code */

.nav a {
    padding:7px 14px;
    color:#333; 
    font:normal 16px/1.5em "opensans",Tahoma; 
    text-decoration:none; 
    -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s;   
    }
    
.nav li {
    position:relative; margin-left:4px; 
    } 
    
.nav > li {
    float:left;
    list-style:none;     
    }
     
.nav > li > a {
    border-bottom:5px solid #fff; line-height:70px;    
    }
         
.sf-sub-indicator {
    display:none; 
    }
 
 
/* Main current Nav Style Code */ 
  
.nav .current a, 
.nav .current a:visited, 
.nav .current a:active {
    color:#666; border-bottom:5px solid #25B8E2; background:#f3f3f2;
    -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; 
    }
 
.nav > li > a {
    display:block; 
    } 
    
    .nav > li > a:hover {
        color:#21c2f8; background:#f3f3f2; 
        }
        
    .nav > li:hover > a {
        color:#21c2f8; background:#f3f3f2; 
        }

.nav > li ul {
    min-width:200px; 
    position:absolute; 
    left:-9999px; 
    border-bottom:1px solid #cecfcf; 
    }
 
 .nav > li ul li ul {
    margin-top:0px;
    }
       
    .nav > li.hover > ul {
        left:0; 
        } 
        
    .nav li li.hover ul {
        left:100%; 
        top:0; 
        } 
    
.nav li li {
    list-style:none; padding-top:0px; padding-bottom:0px; margin-left:0px; 
    } 
        
/* Sub Nav Style Code */ 

.nav li li {
    border:1px solid #fff; border-bottom:0;
    }
       
.nav li li a {
    padding:3px 15px; 
    background:#f2f2f2; 
    color:#333; font-size:12px; font-family:"opensans", Tahoma; line-height:32px; font-weight:normal; 
    display: block; z-index:100;
    border-bottom: 1px solid #cecfcf; 
    }
    
    .nav li li a:hover {
        display: block; 
        background:#21c2f8; 
        color:#fff; 
        border-radius:0; 
        box-shadow:none; 
        }


/* Sub current Nav Style Code */ 

.nav .current ul li a, 
.nav .current ul li a:visited {
    background:#f2f2f2; 
    color:#333; 
    font-family:"opensans",Tahoma; 
    border-radius:0; box-shadow:none; 
    }
    
    .nav .current ul li a:hover {
        background:#21c2f8; 
        color:#fff; 
        }

.nav li.current ul li a,
.nav li.current ul li a:visited {
    border-bottom: 1px solid #cecfcf !important;
    }
            

#DeshtopMenu .nav a, 
#DeshtopRightMenu .nav a {
    padding:0 10px; line-height:50px;
    }
    
#DeshtopMenu .nav li li a, 
#DeshtopRightMenu .nav li li a {
    padding:3px 15px; line-height:34px; 
    }

#DeshtopMenu {
    margin-left:-10px; margin-top:15px; 
    }
    

#DeshtopRightMenu ul { text-align:center; }
#DeshtopRightMenu > .nav a { border-right:none; }
#DeshtopRightMenu .nav > li { display:inline-block; position:relative; list-style:none; float:none; }
#DeshtopRightMenu ul ul { text-align:left; }


@media screen and (max-width:1160px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a { padding:7px 10px; } 
}   
    
@media screen and (max-width:1060px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a {
        padding:7px 7px;
        font-size:14px; 
        } 
}

@media screen and (max-width:930px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a { padding:7px 5px; } 
}

@media screen and (max-width:830px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a { padding:7px 4px; font-size:13px; } 
}


@media screen and (max-width: 767px) {	
	nav#full { display:none; }
	div#mobile { background:#f9f9f9; display:block; border:1px solid #CCCCCC; border-bottom:none; }

	/* Top black bar that holds the toggle button */
	div#mobile #toggle-bar { line-height:36px; height:36px; border-bottom:1px solid #CCCCCC; }

	/* Toggle button #1 ("Menu") */
	div#mobile strong a { margin-left:14px; padding:5px 50px 5px 0; }
    div#toggle-bar a { color:#333; font-weight:normal; }
    div#toggle-bar a:hover { color:#333; text-decoration:none; }
    
	/* Toggle button #2 ("Navicon") */
	div#mobile .navicon { float:right; height:4px; width:38px; margin:0 18px; margin-top:8px; border-top:11px double #BFBFBF; border-bottom:4px solid #BFBFBF; font-size:0; }
       
    /* The dropdown menu */ 
    nav#mobile ul li { clear:both; list-style:none; background:#fff; } 
    nav#mobile ul li a { display:block; margin:0; padding:8px 12px; border-bottom:1px solid #bfbfbf; color:#333; } 
    nav#mobile ul ul { font-size:small; }
    nav#mobile ul ul li { background:#fff; } 
    nav#mobile ul ul a { padding-left:8px; color:#333; }
    nav#mobile ul li a:hover,nav#mobile ul ul a:hover { text-decoration:none; } 
    nav#mobile ul ul a:before { content: "-"; padding-right:6px; }  
    nav#mobile ul ul ul a:before { content: "- -"; padding-right:6px; }    
}





















.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 .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 .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 .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;
}

@media handheld, only screen and (max-width: 640px), only screen and (max-device-width: 640px) {
  .eds_galleryWrapper .chameleon_slider .thumb_wrapper {
    display: none !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.horizontal {
    bottom: 0 !important;
    top: auto !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.vertical ~ a.navigation_button.prev {
    left: 100px !important;
  }
  .eds_galleryWrapper .chameleon_slider .categories_wrapper.vertical ~ a.navigation_button.next {
    right: 100px !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper {
    bottom: 0;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper .item_container > img {
    top: auto !important;
  }
  .eds_galleryWrapper .chameleon_slider .main_panel .items_wrapper .item_container {
    height: 100% !important;
    width: 100% !important;
  }
  .eds_galleryWrapper .title_box {
    top: 10px !important;
    left: 10px !important;
    height: auto !important;
    max-width: calc(100% - 20px);
    bottom: auto !important;
  }
  .eds_galleryWrapper .title_box > span{
    top: 0 !important;
  }
  .eds_galleryWrapper .scrollable_box {
    display: none !important;
  }
  .eds_galleryWrapper a.navigation_button {
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto !important;
    margin-top: 0 !important;
  }
  .eds_galleryWrapper .media_link {
    background-position: center center !important;
  }
  .eds_galleryWrapper .media_link::after {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    background-position: center center !important;
  }
}


/* ------------------------------------------------------------------------
	This you can edit.
------------------------------------------------------------------------- */

	/* ----------------------------------
		Default Theme
	----------------------------------- */

	div.pp_default .pp_top,
	div.pp_default .pp_top .pp_middle,
	div.pp_default .pp_top .pp_left,
	div.pp_default .pp_top .pp_right,
	div.pp_default .pp_bottom,
	div.pp_default .pp_bottom .pp_left,
	div.pp_default .pp_bottom .pp_middle,
	div.pp_default .pp_bottom .pp_right { height: 13px; }
	
	div.pp_default .pp_top .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -78px -93px no-repeat; } /* Top left corner */
	div.pp_default .pp_top .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_x.png") top left repeat-x; } /* Top pattern/color */
	div.pp_default .pp_top .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -112px -93px no-repeat; } /* Top right corner */
	
	div.pp_default .pp_content .ppt { color: #f8f8f8; }
	div.pp_default .pp_content_container .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_y.png") -7px 0 repeat-y; padding-left: 13px; }
	div.pp_default .pp_content_container .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_y.png") top right repeat-y; padding-right: 13px; }
	div.pp_default .pp_content { background-color: #fff; } /* Content background */
	div.pp_default .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_next.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.pp_default .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_prev.png") center left no-repeat; cursor: pointer; } /* Previous button */
	div.pp_default .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") 0 -29px no-repeat; cursor: pointer; width: 28px; height: 28px; } /* Expand button */
	div.pp_default .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") 0 -56px no-repeat; cursor: pointer; } /* Expand button hover */
	div.pp_default .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") 0 -84px no-repeat; cursor: pointer; width: 28px; height: 28px; } /* Contract button */
	div.pp_default .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") 0 -113px no-repeat; cursor: pointer; } /* Contract button hover */
	div.pp_default .pp_close { width: 30px; height: 30px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") 2px 1px no-repeat; cursor: pointer; } /* Close button */
	div.pp_default #pp_full_res .pp_inline { color: #000; } 
	div.pp_default .pp_gallery ul li a { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/default_thumb.png") center center #f8f8f8; border:1px solid #aaa; }
	div.pp_default .pp_gallery ul li a:hover,
	div.pp_default .pp_gallery ul li.selected a { border-color: #fff; }

	div.pp_default .pp_gallery a.pp_arrow_previous,
	div.pp_default .pp_gallery a.pp_arrow_next { position: static; left: auto; }
	div.pp_default .pp_nav .pp_play,
	div.pp_default .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -51px 1px no-repeat; height:30px; width:30px; }
	div.pp_default .pp_nav .pp_pause { background-position: -51px -29px; }
	div.pp_default .pp_details { position: relative; }
	div.pp_default a.pp_arrow_previous,
	div.pp_default a.pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -31px -3px no-repeat; height: 20px; margin: 4px 0 0 0; width: 20px; }
	div.pp_default a.pp_arrow_next { left: 52px; background-position: -82px -3px; } /* The next arrow in the bottom nav */
	div.pp_default .pp_content_container .pp_details { margin-top: 5px; }
	div.pp_default .pp_nav { clear: none; height: 30px; width: 105px; position: relative; }
	div.pp_default .pp_nav .currentTextHolder{ font-family: Georgia; font-style: italic; font-color:#999; font-size: 11px; left: 75px; line-height: 25px; margin: 0; padding: 0 0 0 10px; position: absolute; top: 2px; }
	
	div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover { opacity:0.7; }

	div.pp_default .pp_description{ font-size: 11px; font-weight: bold; line-height: 14px; margin: 5px 50px 5px 0; }

	div.pp_default .pp_bottom .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -78px -127px no-repeat; } /* Bottom left corner */
	div.pp_default .pp_bottom .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite_x.png") bottom left repeat-x; } /* Bottom pattern/color */
	div.pp_default .pp_bottom .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/sprite.png") -112px -127px no-repeat; } /* Bottom right corner */

	div.pp_default .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/default/loader.gif") center center no-repeat; } /* Loader icon */

	
	/* ----------------------------------
		Light Rounded Theme
	----------------------------------- */


	div.light_rounded .pp_top .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.light_rounded .pp_top .pp_middle { background: #fff; } /* Top pattern/color */
	div.light_rounded .pp_top .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.light_rounded .pp_content .ppt { color: #000; }
	div.light_rounded .pp_content_container .pp_left,
	div.light_rounded .pp_content_container .pp_right { background: #fff; }
	div.light_rounded .pp_content { background-color: #fff; } /* Content background */
	div.light_rounded .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.light_rounded .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	div.light_rounded .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.light_rounded .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.light_rounded .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.light_rounded .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.light_rounded .pp_close { width: 75px; height: 22px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.light_rounded .pp_details { position: relative; }
	div.light_rounded .pp_description { margin-right: 85px; }
	div.light_rounded #pp_full_res .pp_inline { color: #000; } 
	div.light_rounded .pp_gallery a.pp_arrow_previous,
	div.light_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.light_rounded .pp_nav .pp_play { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.light_rounded .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }

	div.light_rounded .pp_arrow_previous { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.light_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.light_rounded .pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.light_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }

	div.light_rounded .pp_bottom .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.light_rounded .pp_bottom .pp_middle { background: #fff; } /* Bottom pattern/color */
	div.light_rounded .pp_bottom .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */

	div.light_rounded .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/loader.gif") center center no-repeat; } /* Loader icon */
	
	/* ----------------------------------
		Dark Rounded Theme
	----------------------------------- */
	
	div.dark_rounded .pp_top .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.dark_rounded .pp_top .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat; } /* Top pattern/color */
	div.dark_rounded .pp_top .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.dark_rounded .pp_content_container .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat-y; } /* Left Content background */
	div.dark_rounded .pp_content_container .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/contentPattern.png") top right repeat-y; } /* Right Content background */
	div.dark_rounded .pp_content { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat; } /* Content background */
	div.dark_rounded .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.dark_rounded .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	div.dark_rounded .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.dark_rounded .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.dark_rounded .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.dark_rounded .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.dark_rounded .pp_close { width: 75px; height: 22px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.dark_rounded .pp_details { position: relative; }
	div.dark_rounded .pp_description { margin-right: 85px; }
	div.dark_rounded .currentTextHolder { color: #c4c4c4; }
	div.dark_rounded .pp_description { color: #fff; }
	div.dark_rounded #pp_full_res .pp_inline { color: #fff; }
	div.dark_rounded .pp_gallery a.pp_arrow_previous,
	div.dark_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.dark_rounded .pp_nav .pp_play { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.dark_rounded .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }

	div.dark_rounded .pp_arrow_previous { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.dark_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.dark_rounded .pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.dark_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }

	div.dark_rounded .pp_bottom .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.dark_rounded .pp_bottom .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat; } /* Bottom pattern/color */
	div.dark_rounded .pp_bottom .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */

	div.dark_rounded .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_rounded/loader.gif") center center no-repeat; } /* Loader icon */
	
	
	/* ----------------------------------
		Dark Square Theme
	----------------------------------- */
	
	div.dark_square .pp_left ,
	div.dark_square .pp_middle,
	div.dark_square .pp_right,
	div.dark_square .pp_content { background: #000; }
	
	div.dark_square .currentTextHolder { color: #c4c4c4; }
	div.dark_square .pp_description { color: #fff; }
	div.dark_square .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/loader.gif") center center no-repeat; } /* Loader icon */
	
	div.dark_square .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.dark_square .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.dark_square .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.dark_square .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.dark_square .pp_close { width: 75px; height: 22px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.dark_square .pp_details { position: relative; }
	div.dark_square .pp_description { margin: 0 85px 0 0; }
	div.dark_square #pp_full_res .pp_inline { color: #fff; }
	div.dark_square .pp_gallery a.pp_arrow_previous,
	div.dark_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.dark_square .pp_nav { clear: none; }
	div.dark_square .pp_nav .pp_play { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.dark_square .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }
	
	div.dark_square .pp_arrow_previous { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.dark_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.dark_square .pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.dark_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
	
	div.dark_square .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.dark_square .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/dark_square/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */


	/* ----------------------------------
		Light Square Theme
	----------------------------------- */
	
	div.light_square .pp_left ,
	div.light_square .pp_middle,
	div.light_square .pp_right,
	div.light_square .pp_content { background: #fff; }
	
	div.light_square .pp_content .ppt { color: #000; }
	div.light_square .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.light_square .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.light_square .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.light_square .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.light_square .pp_close { width: 75px; height: 22px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.light_square .pp_details { position: relative; }
	div.light_square .pp_description { margin-right: 85px; }
	div.light_square #pp_full_res .pp_inline { color: #000; }
	div.light_square .pp_gallery a.pp_arrow_previous,
	div.light_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.light_square .pp_nav .pp_play { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.light_square .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }
	
	div.light_square .pp_arrow_previous { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.light_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.light_square .pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.light_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
	
	div.light_square .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.light_square .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_square/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	
	div.light_square .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/loader.gif") center center no-repeat; } /* Loader icon */


	/* ----------------------------------
		Facebook style Theme
	----------------------------------- */
	
	div.facebook .pp_top .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.facebook .pp_top .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/contentPatternTop.png") top left repeat-x; } /* Top pattern/color */
	div.facebook .pp_top .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.facebook .pp_content .ppt { color: #000; }
	div.facebook .pp_content_container .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/contentPatternLeft.png") top left repeat-y; } /* Content background */
	div.facebook .pp_content_container .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/contentPatternRight.png") top right repeat-y; } /* Content background */
	div.facebook .pp_content { background: #fff; } /* Content background */
	div.facebook .pp_expand { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.facebook .pp_expand:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.facebook .pp_contract { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.facebook .pp_contract:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.facebook .pp_close { width: 22px; height: 22px; background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.facebook .pp_details { position: relative; }
	div.facebook .pp_description { margin: 0 37px 0 0; }
	div.facebook #pp_full_res .pp_inline { color: #000; } 
	div.facebook .pp_loaderIcon { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/loader.gif") center center no-repeat; } /* Loader icon */
	
	div.facebook .pp_arrow_previous { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") 0 -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The previous arrow in the bottom nav */
		div.facebook .pp_arrow_previous.disabled { background-position: 0 -96px; cursor: default; }
	div.facebook .pp_arrow_next { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -32px -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The next arrow in the bottom nav */
		div.facebook .pp_arrow_next.disabled { background-position: -32px -96px; cursor: default; }
	div.facebook .pp_nav { margin-top: 0; }
	div.facebook .pp_nav p { font-size: 15px; padding: 0 3px 0 4px; }
	div.facebook .pp_nav .pp_play { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -1px -123px no-repeat; height: 22px; width: 22px; }
	div.facebook .pp_nav .pp_pause { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -32px -123px no-repeat; height: 22px; width: 22px; }
	
	div.facebook .pp_next:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/btnNext.png") center right no-repeat; cursor: pointer; } /* Next button */
	div.facebook .pp_previous:hover { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	
	div.facebook .pp_bottom .pp_left { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.facebook .pp_bottom .pp_middle { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/contentPatternBottom.png") top left repeat-x; } /* Bottom pattern/color */
	div.facebook .pp_bottom .pp_right { background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */


/* ------------------------------------------------------------------------
	DO NOT CHANGE
------------------------------------------------------------------------- */

	div.pp_pic_holder a:focus { outline:none; }

	div.pp_overlay {
		background: #000;
		display: none;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 10004;
	}
	
	div.pp_pic_holder {
		display: none;
		position: absolute;
		width: 100px;
		z-index: 10005;
	}

		
		.pp_top {
			height: 20px;
			position: relative;
		}
			* html .pp_top { padding: 0 20px; }
		
			.pp_top .pp_left {
				height: 20px;
				left: 0;
				position: absolute;
				width: 20px;
			}
			.pp_top .pp_middle {
				height: 20px;
				left: 20px;
				position: absolute;
				right: 20px;
			}
				* html .pp_top .pp_middle {
					left: 0;
					position: static;
				}
			
			.pp_top .pp_right {
				height: 20px;
				left: auto;
				position: absolute;
				right: 0;
				top: 0;
				width: 20px;
			}
		
		.pp_content { height: 40px; min-width: 40px; }
		* html .pp_content { width: 40px; }
		
		.pp_fade { display: none; }
		
		.pp_content_container {
			position: relative;
			text-align: left;
			width: 100%;
		}
		
			.pp_content_container .pp_left { padding-left: 20px; }
			.pp_content_container .pp_right { padding-right: 20px; }
		
			.pp_content_container .pp_details {
				float: left;
				margin: 10px 0 2px 0;
			}
				.pp_description {
					display: none;
					margin: 0 0 5px 0;
				}

				.pp_tools_and_sharing {
					margin: 0 10px;
					position: relative;
					top: 3px;
					overflow: hidden;
					clear: both;
				}

					.pp_tools_and_sharing .icon_link {
						display: block;
						width: 16px;
						height: 16px;
						float: left;
						margin: 2px 7px 0 0;
					}

						.pp_tools_and_sharing .icon_link.pp_image_down_link {
							background: url("/DesktopModules/EasyDNNGallery/images/download_imge.png") no-repeat
						}

						.pp_tools_and_sharing .icon_link.pp_image_print_link {
							background: url("/DesktopModules/EasyDNNGallery/images/print_image.png") no-repeat
						}

						.pp_tools_and_sharing .icon_link.pp_send_email_link {
							background: url("/DesktopModules/EasyDNNGallery/images/mailicon.png") no-repeat
						}

						.pp_tools_and_sharing .pp_social_tools {
							overflow: hidden;
						}

						.pp_tools_and_sharing .pp_social_tools div.box {
							margin: 0 0 3px !important;
							height: 20px;
							width: auto;
							float: left;
						}

				.pp_nav {
					clear: right;
					float: left;
					margin: 3px 10px 0 0;
				}
				
					.pp_nav p {
						float: left;
						margin: 2px 4px;
					}
					
					.pp_nav .pp_play,
					.pp_nav .pp_pause {
						float: left;
						margin-right: 4px;
						text-indent: -10000px;
					}
				
					a.pp_arrow_previous,
					a.pp_arrow_next {
						display: block;
						float: left;
						height: 15px;
						margin-top: 3px;
						overflow: hidden;
						text-indent: -10000px;
						width: 14px;
					}
		
		.pp_hoverContainer {
			position: absolute;
			top: 0;
			width: 100%;
			z-index: 2000;
		}
		
		.pp_gallery {
			display: none;
			left: 50%;
			margin-top: -50px;
			position: absolute;
			z-index: 10000;
		}
		
			.pp_gallery div {
				float: left;
				overflow: hidden;
			}
			
			.pp_gallery ul {
				float: left;
				height: 35px;
				margin: 0 0 0 5px;
				padding: 0;
				position: relative;
				white-space: nowrap;
			}
			
			.pp_gallery ul a {
				border: 1px #000 solid;
				border: 1px rgba(0,0,0,0.5) solid;
				display: block;
				float: left;
				height: 33px;
				overflow: hidden;
			}
			
			.pp_gallery ul a:hover,
			.pp_gallery li.selected a { border-color: #fff; }
			
			.pp_gallery ul a img { border: 0; }
			
			.pp_gallery li {
				display: block;
				float: left;
				margin: 0 5px 0 0;
				padding: 0;
			}
			
			.pp_gallery li.default a {
				background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/facebook/default_thumbnail.gif") 0 0 no-repeat;
				display: block;
				height: 33px;
				width: 50px;
			}
			
			.pp_gallery li.default a img { display: none; }
			
			.pp_gallery .pp_arrow_previous,
			.pp_gallery .pp_arrow_next {
				margin-top: 7px !important;
			}
		
		a.pp_next {
			background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;
			display: block;
			float: right;
			height: 100%;
			text-indent: -10000px;
			width: 49%;
		}
			
		a.pp_previous {
			background: url("/DesktopModules/EasyDNNGallery/images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;
			display: block;
			float: left;
			height: 100%;
			text-indent: -10000px;
			width: 49%;
		}
		
		a.pp_expand,
		a.pp_contract {
			cursor: pointer;
			display: none;
			height: 20px;	
			position: absolute;
			right: 30px;
			text-indent: -10000px;
			top: 10px;
			width: 20px;
			z-index: 20000;
		}
			
		a.pp_close {
			position: absolute; right: 0; top: 0; 
			display: block;
			line-height:22px;
			text-indent: -10000px;
		}
		
		.pp_bottom {
			height: 20px;
			position: relative;
		}
			* html .pp_bottom { padding: 0 20px; }
			
			.pp_bottom .pp_left {
				height: 20px;
				left: 0;
				position: absolute;
				width: 20px;
			}
			.pp_bottom .pp_middle {
				height: 20px;
				left: 20px;
				position: absolute;
				right: 20px;
			}
				* html .pp_bottom .pp_middle {
					left: 0;
					position: static;
				}
				
			.pp_bottom .pp_right {
				height: 20px;
				left: auto;
				position: absolute;
				right: 0;
				top: 0;
				width: 20px;
			}
		
		.pp_loaderIcon {
			display: block;
			height: 24px;
			left: 50%;
			margin: -12px 0 0 -12px;
			position: absolute;
			top: 50%;
			width: 24px;
		}
		
		#pp_full_res {
			line-height: 1 !important;
		}
		
			#pp_full_res .pp_inline {
				text-align: left;
			}
			
				#pp_full_res .pp_inline p { margin: 0 0 15px 0; }
	
		div.ppt {
			color: #fff;
			display: none;
			font-size: 17px;
			margin: 0 0 5px 15px;
			z-index: 9999;
		}

			div.pp_content .pp_details div.ppt {
				font-size: 14px;
				margin: 0 85px 5px 0;
				z-index: 9999;
				font-weight: bold;
			}

			div.pp_default .pp_content .pp_details div.ppt {
				color: #000;
				margin: 0 33px 5px 0;
			}

			div.facebook .pp_content .pp_details div.ppt {
				margin: 0 30px 5px 0;
			}

/* ------------------------------------------------------------------------
	Miscellaneous
------------------------------------------------------------------------- */
div.pp_default .pp_content_container .pp_ImageDownload
{

    margin-left: 35px;
    margin-top: 10px;
    
}

.pp_content_container .pp_ImageDownload a
{	
	
	font-weight:bold;		
	color: #333333;
}

div.dark_square .pp_content_container .pp_ImageDownload a
{	
	
	font-weight:bold;		
	color: #aaaaaa;
}

div.dark_rounded .pp_content_container .pp_ImageDownload a
{	
	
	font-weight:bold;		
	color: #aaaaaa;
}



/*!
 *  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/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNGallery/static/font-awesome/css/font-awesome.min.css");
/*Admin Menu */
.eds_galleryWrapper {
  position: relative;
}
.eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul,
.eds_galleryWrapper .eds_galleryManageMenu:hover > ul {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  opacity: 1;
  padding: 13px 13px 0;
  position: absolute;
  right: -33px;
  top: 45px;
  visibility: visible;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul,
  .eds_galleryWrapper .eds_galleryManageMenu:hover > ul {
    right: -20px;
  }
}
.eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li,
.eds_galleryWrapper .eds_galleryManageMenu:hover > ul > li {
  display: block;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li:first-child > a:after, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a:after,
  .eds_galleryWrapper .eds_galleryManageMenu:hover > ul > li:first-child > a:after {
    right: 27px;
  }
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu {
  text-align: left;
  position: static;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul {
  background-color: transparent;
  padding: 0;
  position: static;
  margin: 10px 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li {
  display: inline-block;
  margin-left: -1px;
  margin-bottom: 0;
  margin-top: -1px;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li > a {
  border-radius: 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a {
  border-radius: 3px 0 0 3px;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a:after {
  display: none;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:last-child > a {
  border-radius: 0 3px 3px 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenuTrigger {
  display: none;
}
.eds_galleryWrapper .eds_galleryManageMenu {
  position: absolute;
  right: 100px;
  top: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
  z-index: 99;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu {
    right: 15px;
    top: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
  transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li {
  list-style-type: none;
  margin: 0 0 13px;
  padding: 0;
  display: none;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a {
  display: block;
  white-space: nowrap;
  padding: 12px 25px;
  line-height: 1;
  font-size: 16px;
  font-family: "Arial";
  color: #189fd3;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: solid 1px #dadada;
  border-radius: 3px;
  background-color: #fff;
  text-align: left;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu > ul > li > a {
    font-size: 0;
    line-height: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:hover {
  color: #fff;
  background-color: #2b93dd;
  text-decoration: none;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:before {
  font-family: "FontAwesome";
  color: #aeaeae;
  padding-right: 10px;
  font-size: 14px;
  font-size: 21px !important;
  line-height: 1 !important;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:before {
    font-size: 0;
    line-height: 0;
    padding-right: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:hover:before {
  color: #fff;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryManageContent a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_gallerySettings a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryCropContent a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryDashboard a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a {
  position: relative;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a:after {
  position: absolute;
  top: -8px;
  right: 35px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #dadada transparent transparent #dadada;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a:hover:after {
  background-color: #2b93dd;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger {
  display: block;
  text-align: center;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger > span {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  height: 41px;
  width: 48px;
  background-color: #2b93dd;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger > span:before {
  font-size: 25px;
  color: #fff;
  font-family: "FontAwesome";
  line-height: 41px;
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger:hover {
  padding-bottom: 20px;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger:hover > span {
  background-color: #3fa7f1;
}


.PageUpdateProgress
    {
        background-image: url("/DesktopModules/EasyDnnGallery/css/'images/loader_bg.png'");
        background-repeat: no-repeat;
        background-position: center center;
        width: 50px;
        height: 50px;
        text-align: center;
        vertical-align: middle;
        position: fixed;
        bottom: 50%;
        left: 45%;
        text-align: center;
        z-index: 10002;
    }
    .PageUpdateProgress img
    {
        padding-top: 13px;
    }
    .TransparentBackground
    {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #2c2b2b;
        filter: alpha(opacity=60);
        opacity: 0.7;
        height: 100%;
        width: 100%;
        min-height: 100%;
        min-width: 100%;
        z-index: 10001;
    }


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type="text"] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  -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 !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent 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;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type="text"].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type="text"],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type="text"],
  .eds_modalWrapper .eds_modalContent textarea,
  .eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper 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;
}
.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;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type="text"],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type="text"],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type="text"],
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "";
}
.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_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-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;
}

.edNews_adminInfo {
  display: inline-block;
  margin: 1rem;
  border-width: 1px;
  border-style: solid;
  border: solid 1px #ababab;
  border-radius: 3px;
  padding: 5px 10px;
  line-height: 0;
  background-color: #fff;
  font: 12px/1 "Arial";
}
.edNews_adminInfo.edNews_info {
  border-color: #85bdf8;
  color: #85bdf8 !important;
}
.edNews_adminInfo.edNews_warning {
  border-color: #fa6900;
  color: #fa6900 !important;
}
.edNews_adminInfo.edNews_blockCenter {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.edNews_adminInfo .edNews_textCenter {
  text-align: center;
}
.edNews_adminInfo .edNews_inputGroup * {
  vertical-align: middle;
}
.edNews_adminInfo .edNews_inputGroup input + label {
  margin: 0 0 0 7px;
}

.eds_modalContent ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalContent ul li label span {
  font-weight: bold;
}

body.eds__modalWindowOpened {
  height: 100vh;
  overflow-y: hidden;
}

.personalBarContainer ~ div .eds_modalWrapper {
  left: 80px;
}

.news .user_dashboard {
  margin-bottom: 2rem;
  font-size: 0;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .user_dashboard {
    margin-bottom: 1rem;
  }
}
.news .user_dashboard::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32px;
  background-color: #f7f7f7;
  border-radius: 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .user_dashboard::before {
    height: 100%;
  }
}
.news .user_dashboard > div,
.news .user_dashboard a {
  display: inline-block;
}
.news .user_dashboard a {
  position: relative;
  font: 12px/32px Arial;
  color: #9b9b9b !important;
  text-decoration: none !important;
  text-align: center;
  padding: 0 0.4rem;
  transition: all 400ms;
  height: 32px;
  background-color: #f7f7f7;
  cursor: pointer;
  border: none;
  text-transform: none;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .user_dashboard a {
    font-size: 0;
    height: 40px;
  }
}
.news .user_dashboard a::before {
  display: inline-block;
  vertical-align: middle;
}
.news .user_dashboard a::before {
  font: 20px/0 "FontAwesome";
  transition: all 400ms;
  z-index: 1;
  color: #c9c9c9;
  padding-right: 0.2rem;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .user_dashboard a::before {
    font-size: 24px;
    padding-right: 0;
    line-height: 40px;
  }
}
.news .user_dashboard a:hover {
  color: #5f5f5f !important;
  background-color: #edeef0;
  text-decoration: none !important;
}
.news .user_dashboard a:hover::before {
  color: #5f5f5f;
}
.news .user_dashboard a:first-child {
  border-top-left-radius: 7px;
}
.news .user_dashboard a:first-child:hover {
  border-top-left-radius: 0;
}
.news .user_dashboard a:last-child {
  border-top-right-radius: 7px;
}
.news .user_dashboard a:last-child:hover {
  border-top-right-radius: 0;
}
.news .user_dashboard a.add_article::before {
  content: "";
}
.news .user_dashboard a.article_manager::before {
  content: "";
}
.news .user_dashboard a.event_manager::before {
  content: "";
}
.news .user_dashboard a.approve_articles::before {
  content: "";
}
.news .user_dashboard a.approve_comments::before {
  content: "";
}
.news .user_dashboard a.category_manager::before {
  content: "";
}
.news .user_dashboard a.dashboard::before {
  content: "";
}
.news .user_dashboard a.settings::before {
  content: "";
}
.news .user_dashboard a.author_profile::before {
  content: "";
}
.news .user_dashboard a.themeSettings::before {
  content: "";
}


.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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/lightbox_button_bg.png") no-repeat center center;
}
.chameleon_slider.NewsOne .main_panel .preloading_item {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_white_bg.png");
}
.chameleon_slider.NewsOne .autoplay_container .indicator {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_black_1.png");
}
.chameleon_slider.NewsOne .autoplay_toggle {
  width: 54px;
  height: 51px;
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_black_1.png");
}
.chameleon_slider.NewsOne .title_box.current_gallery {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_black_bg.png");
}
.chameleon_slider.NewsOne .scrollable_box .scrollbar {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_black_2.png") repeat;
}
.chameleon_slider.NewsOne .scrollable_box.gallery_info {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/transparent_black_1.png") repeat;
}
.chameleon_slider.NewsOne .categories_wrapper {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/themes/NewsOne/images/shadow.png") no-repeat center 1px;
}
.chameleon_slider.NewsOne .thumb_wrapper a.navigation {
  background: url("/DesktopModules/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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/EasyDNNNews/ChameleonGalleryPresets/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;
}

/*# sourceMappingURL=NewsOne.css.map */


/*
EasyDNNGallery CSS file

Instructions: To properly create theme the first ID selector (# EDG_5_gray_bg) must equal the name of the css file
(example: this file is called EDG_5_gray_bg.css and the first ID selector must called EDG_5_gray_bg).
 Names may be in its sole discretion,
 only important thing is  that the first ID selector is the same as css filename so the theme is correct.
 To quickly change the name of the first ID selector use the find / replace function in your editor.
*/


/* Lightbox Gallery */
#EDG_0_Shadow .EDGmain
{
	
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 6px;
	margin-left: 8px;

	
	position: relative;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/shadow.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	float: left;
	display: block;
	padding-bottom: 6px;
	padding-right: 6px;

}


#EDG_0_Shadow .titleCR {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left:5px;
	padding-right:5px;
	margin-bottom: 12px;
	color: #000000;
	font-weight: bold;
	float:left;
	display:block;

}

#EDG_0_Shadow .descriptionCR {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	position:relative;
}

#EDG_0_Shadow .EDGmain .socialSharingContainer
{
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	overflow: hidden;
	width: 100%;
}

	#EDG_0_Shadow .EDGmain .socialSharingContainer .buttons
	{
		overflow: hidden;
		visibility: visible;
		padding: 3px 3px 0;
		margin: 0 12px 0 1px;
		background: url("/DesktopModules/EasyDnnGallery/images/black_transparent_pixel.png") repeat;
		width: auto;
	}
	#EDG_0_Shadow .EDGmain .socialSharingContainer .buttons a img
	{
		background-color: transparent;
		border: 0 !important;
	}

		#EDG_0_Shadow .EDGmain .socialSharingContainer .buttons div,
		#EDG_0_Shadow .EDGmain .socialSharingContainer .buttons iframe
		{
			float: left !important;
			margin-bottom: 3px !important;
			overflow: hidden;
		}


/*Lighbox gallery - Image*/
#EDG_0_Shadow .EDGmain .EDGimage a
{

	text-decoration: none;
	float: left;

}
#EDG_0_Shadow .EDGmain .EDGimage a:hover {
	cursor: pointer;
}

#EDG_0_Shadow .EDGmain .EDGimage a img
{

	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	background-color:#ffffff;
	margin-right: 0;


}



#EDG_0_Shadow .EDGmain .EDGimage a:hover img {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;


}
#EDG_0_Shadow .EDGmain .EDGimage a input
{
	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	background-color:#ffffff;
	margin-right: 0;
}

#EDG_0_Shadow .EDGmain .EDGimage a:hover input {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;


}
#EDG_0_Shadow .EDGmain .EDGimage .imgborder {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;

}


#EDG_0_Shadow .EDGmain .EDGimage a .flag 
{
	
}

#EDG_0_Shadow .EDGmain .EDGimage a:hover .flag {
	
	/*
	position: absolute;
	bottom: 25px;
	float: left;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/open_2.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 50px;
	width: 100%;
	left: 0px;*/
}


#EDG_0_Shadow .EDGmain .EDGimage a .flagObject {
	/*position: absolute;
	float: right;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/flag_image.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 53px;
	width: 42px;
	top: 0px;
	right: 0px;
	display: inline-block;*/
}


#EDG_0_Shadow .EDGmain .EDGimage .title
{
	position: absolute;
	bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	float: left;
	text-align: center;
	left: 1px;
	right: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 15px;
	visibility: visible;
	margin-bottom: 12px;
	line-height: normal;
	white-space: normal;
}



#EDG_0_Shadow .EDGmain .EDGimage a .title {
	color: #fff;
	background: #000;
	filter:alpha(opacity=65);
	opacity:.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
}
#EDG_0_Shadow .EDGmain .EDGimage a:hover .title 
{
	color: #000;
	filter:alpha(opacity=65);
	opacity:.9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
	background-color: #ccc;
}

#EDG_0_Shadow .EDGmain .EDGimage .Description
{
	font-size: 9px;
	font-style: italic;
}


/*Lighbox gallery - Video*/
#EDG_0_Shadow .EDGmain .EDGvideo a
{

	text-decoration: none;
	float: left;

}
#EDG_0_Shadow .EDGmain .EDGvideo a:hover {
	cursor: pointer;
}

#EDG_0_Shadow .EDGmain .EDGvideo a img
{

	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	background-color:#ffffff;
	margin-right: 0;
	


}
#EDG_0_Shadow .EDGmain .EDGvideo a:hover img {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;


}

#EDG_0_Shadow .EDGmain .EDGvideo .imgborder {
	float: left;
	margin: 0;
	border: none;
	padding: 0px;
	border: 7px solid #313131;
}


#EDG_0_Shadow .EDGmain .EDGvideo a .flag 
{
	
}

#EDG_0_Shadow .EDGmain .EDGvideo a:hover .flag {
	
	/*
	position: absolute;
	bottom: 25px;
	float: left;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/open_2.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 50px;
	width: 100%;
	left: 0px;*/
}


#EDG_0_Shadow .EDGmain .EDGvideo a .flagObject {
	/*position: absolute;
	float: right;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/flag_image.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 53px;
	width: 42px;
	top: 0px;
	right: 0px;
	display: inline-block;*/
}


#EDG_0_Shadow .EDGmain .EDGvideo .title
{
	position: absolute;
	bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	float: left;
	text-align: center;
	left: 1px;
	right: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 15px;
	visibility: visible;
	margin-bottom: 12px;
	line-height: normal;
	white-space: normal;
}



#EDG_0_Shadow .EDGmain .EDGvideo a .title {
	color: #fff;
	background: #000;
	filter:alpha(opacity=80);
	opacity:.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
}
#EDG_0_Shadow .EDGmain .EDGvideo a:hover .title 
{
	color: #000;
	filter:alpha(opacity=65);
	opacity:.9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
	background-color: #ccc;
}

#EDG_0_Shadow .EDGmain .EDGvideo .Description
{
	font-size: 9px;
	font-style: italic;
}


/*Lighbox gallery - Audio*/
#EDG_0_Shadow .EDGmain .EDGaudio a
{

	text-decoration: none;
	float: left;

}
#EDG_0_Shadow .EDGmain .EDGaudio a:hover {
	cursor: pointer;
}

#EDG_0_Shadow .EDGmain .EDGaudio a img
{

	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	background-color:#ffffff;
	margin-right: 0;


}
#EDG_0_Shadow .EDGmain .EDGaudio a:hover img {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	


}

#EDG_0_Shadow .EDGmain .EDGaudio .imgborder {
	float: left;
	margin: 0;
	border: none;
	padding: 0px;
	border: 7px solid #313131;
}


#EDG_0_Shadow .EDGmain .EDGaudio a .flag 
{
	
}

#EDG_0_Shadow .EDGmain .EDGaudio a:hover .flag {
	
	/*
	position: absolute;
	bottom: 25px;
	float: left;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/open_2.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 50px;
	width: 100%;
	left: 0px;*/
}


#EDG_0_Shadow .EDGmain .EDGaudio a .flagObject {
	/*position: absolute;
	float: right;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/flag_image.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 53px;
	width: 42px;
	top: 0px;
	right: 0px;
	display: inline-block;*/
}


#EDG_0_Shadow .EDGmain .EDGaudio .title
{
	position: absolute;
	bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	float: left;
	text-align: center;
	left: 1px;
	right: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 15px;
	visibility: visible;
	margin-bottom: 12px;
	line-height: normal;
	white-space: normal;
}



#EDG_0_Shadow .EDGmain .EDGaudio a .title {
	color: #fff;
	background: #000;
	filter:alpha(opacity=80);
	opacity:.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
}
#EDG_0_Shadow .EDGmain .EDGaudio a:hover .title 
{
	color: #000;
	filter:alpha(opacity=65);
	opacity:.9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
	background-color: #ccc;
}

#EDG_0_Shadow .EDGmain .EDGaudio .Description
{
	font-size: 9px;
	font-style: italic;
}



/*END Lighbox gallery */



/*Gallery background  - if you want gallery without a background delete the settings, but leave empty class */
#EDG_0_Shadow .EDGbackground
{
	
	margin-right: auto;
	margin-left: auto;
}

#EDG_0_Shadow .EDGbackground .EDGcontent {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#EDG_0_Shadow .EDGbackground .EDGcontent table {
	margin-right: auto;
	margin-left: auto;
}

#EDG_0_Shadow .EDGbackground .EDGcontentbgrd
{

	padding-bottom: 0px;
	padding-top: 0px;

}
#EDG_0_Shadow .EDGbackground .EDGcornerbotleft {

} 
#EDG_0_Shadow .EDGbackground .EDGcornerbotright {

} 
#EDG_0_Shadow .EDGbackground .EDGcornertopleft {
	
} 
#EDG_0_Shadow .EDGbackground .EDGcornertopright {

} 
#EDG_0_Shadow .EDGbackground .EDGclear {font-size: 1px; height: 1px}


/*paging*/
#EDG_0_Shadow .buttonPrev
{
/*
	border-style: hidden;
	border-width: 0px;
	background: transparent url("/DesktopModules/EasyDnnGallery/Themes/images/btn5_left.png");
	background-repeat: no-repeat;
	width: 28px;
	height: 46px;
	margin-right:40px;
*/
display:none;
}

#EDG_0_Shadow .buttonPrev:hover
{
/*

	border-style: hidden;
	border-width: 0px;
	background: transparent url("/DesktopModules/EasyDnnGallery/Themes/images/btn5_left_hover.png");
	background-repeat: no-repeat;
	width: 28px;
	height: 46px;
	margin-right:40px;
*/
display:none;
}


#EDG_0_Shadow .buttonNext
{

/*
	border-style: hidden;
	border-width: 0px;
	background: transparent url("/DesktopModules/EasyDnnGallery/Themes/images/btn5_right.png");
	background-repeat: no-repeat;
	width: 28px;
	height: 46px;
*/
display:none;
	}
	
#EDG_0_Shadow .buttonNext:hover
{
/*
	border-style: hidden;
	border-width: 0px;
	background: transparent url("/DesktopModules/EasyDnnGallery/Themes/images/btn5_right_hover.png");
	background-repeat: no-repeat;
	width: 28px;
	height: 46px;
*/
display:none;
	}


#EDG_0_Shadow .EDGpager span
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #000000;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	padding: 4px 8px 4px 8px;
	border: 1px solid #C0C0C0;
	background-color: #D2D2D2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#EDG_0_Shadow .EDGpager a
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #333333!important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	padding: 4px 8px 4px 8px!important;
	border: 1px solid #CCCCCC!important;
	background-color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#EDG_0_Shadow .EDGpager a:hover
{
	/*width: 19px;
	height: 19px;*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #000000;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	padding: 4px 8px 4px 8px;
	border: 1px solid #C0C0C0;
	background-color: #D2D2D2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#EDG_0_Shadow .pagerbox
{
	margin-top:10px;
	margin-bottom:0px;
	text-align:center;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #4c4c4c;
	border-bottom-color: #2d2d2d;
	padding-top: 8px;
	padding-bottom: 8px;
	


}



/*Video gallery*/

#EDG_0_Shadow .VideoBodyEmbed
{
		border: 1px solid #cccccc;
	padding: 5px;
	
	margin-right: 0px;
	background-color: #ffffff;

} 



#EDG_0_Shadow .VideoBodySwf
{
		border: 1px solid #cccccc;
	padding: 5px;
} 

#EDG_0_Shadow .VideoBodyPlayer
{
	
		border: 1px solid #cccccc;
	padding: 5px;
	
} 


#EDG_0_Shadow .VideoTitle
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:bold;
	text-align: center;
	color: #ccc;
	line-height:normal;


} 

#EDG_0_Shadow .VideoDescription
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	text-align: center;
	color: #ccc;
	line-height:normal;
	margin-top:10px;

} 

#EDG_0_Shadow .VideoDescription a
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	color: #ccc;
	text-decoration:underline;
} 

#EDG_0_Shadow .VideoDescription a:hover
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	color: #ccc;
	text-decoration:none;
} 



/*Audio gallery*/

#EDG_0_Shadow .AudioTitle
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:bold;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 5px;
	color: #ccc;
	line-height:normal;


} 

#EDG_0_Shadow .AudioDescription
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 15px;
	color: #ccc;
	line-height:normal;

} 

#EDG_0_Shadow .AudioDescription a
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	color: #ccc;
	text-decoration:underline;
} 

#EDG_0_Shadow .AudioDescription a:hover
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	color: #ccc;
	text-decoration:none;
} 





/*MAIN Gallery Title*/

#EDG_0_Shadow .GalleryDescription
{
	font-family: "Times New Roman" , Times, serif;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 10px;
	color: #333333;
	font-style: italic;
	line-height: normal;
	display:block;
} 


#EDG_0_Shadow .EDGTitle
{
	/*margin-top:10px;
	margin-bottom:15px;*/
	text-align:center;
	line-height:normal;
	display:block;
}

#EDG_0_Shadow .EDGTitle .EDGTitleText
{
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	color: #333333;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: uppercase;
	line-height:normal;
}


/*SlideShow*/

#EDG_0_Shadow .SlideshowDescription
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	text-align: center;
	margin-top: 5px;
	color: #ccc;
	display:block;
	line-height:normal;


} 

#EDG_0_Shadow .SlideshowTitle
{

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #ccc;
	line-height:normal;


} 

#EDG_0_Shadow .slideshowtitledescbox
{
margin-top:10px;
margin-bottom:10px;
}


#EDG_0_Shadow .slideshow {
text-align: center;	
}
#EDG_0_Shadow .slideshowimg {
border: 2px solid #FFFFFF;	
}




#EDG_0_Shadow .EDGSlide
{
	

	margin-bottom:20px;
	
	position: relative;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/shadow.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	float: left;
	display: block;
	padding-bottom: 6px;
	padding-right: 6px;

}


#EDG_0_Shadow .EDGSlide .EDGimage a
{

	text-decoration: none;
	float: left;

}
#EDG_0_Shadow .EDGSlide .EDGimage a:hover {
	cursor: pointer;
}

#EDG_0_Shadow .EDGSlide .EDGimage a img
{

	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	margin-right: 0px;
	background-color: #ffffff;


}
#EDG_0_Shadow .EDGSlide .EDGimage a:hover img {
	float: left;
	border: 1px solid #cccccc;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;


}



#EDG_0_Shadow .EDGSlide .EDGimage a .flag 
{
	
}

#EDG_0_Shadow .EDGSlide .EDGimage a:hover .flag {
	
	/*
	position: absolute;
	bottom: 25px;
	float: left;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/open_2.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 50px;
	width: 100%;
	left: 0px;*/
}


#EDG_0_Shadow .EDGSlide .EDGimage a .flagObject {
	/*position: absolute;
	float: right;
	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/flag_image.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 53px;
	width: 42px;
	top: 0px;
	right: 0px;
	display: inline-block;*/
}


#EDG_0_Shadow .EDGSlide .EDGimage .title
{
	position: absolute;
	bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	float: left;
	text-align: center;
	left: 1px;
	right: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 15px;
	visibility: visible;
	margin-bottom: 12px;
	line-height: normal;
	white-space: normal;
}



#EDG_0_Shadow .EDGSlide .EDGimage a .title {
	color: #fff;
	background: #000;
	filter:alpha(opacity=80);
	opacity:.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
}
#EDG_0_Shadow .EDGSlide .EDGimage a:hover .title 
{
	color: #000;
	filter:alpha(opacity=65);
	opacity:.9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
	background-color: #ccc;
}

#EDG_0_Shadow .EDGSlide .EDGimage .Description
{
	font-size: 9px;
	font-style: italic;
}

#EDG_0_Shadow .btnGalleryBack
{
	border-style: hidden;
	border-width: 0px;
	background: transparent url("/DesktopModules/EasyDnnGallery/Themes/images/backblack.png");
	background-repeat: no-repeat;
	width: 36px;
	height: 36px;
	display:block;	
	margin-left:50px;	
}

#EDG_0_Shadow .nestedBreadCrumb
{
	margin-left:30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;

	}
	
	#EDG_0_Shadow .nestedBreadCrumb a
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration: underline;
	font-weight: bold;
}


	#EDG_0_Shadow .nestedBreadCrumb a:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration: none;
	font-weight: bold;
}	




/***Version 2.2.*****************/


#EDG_0_Shadow .TitleCarousel {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	clear: both;
	float:left;
	font-weight: bold;
	text-align: left;
	padding-left:10px;
}

#EDG_0_Shadow .DescriptionCarousel{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	clear: both;
	float:left;
	white-space:normal;
	bottom:0px;
	text-align: left;
	font-weight:normal;
	padding-left:10px;
	margin-bottom:10px;
}

#EDG_0_Shadow .DescriptionCarousel a
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration:underline;
	
	}
	
#EDG_0_Shadow .DescriptionCarousel a:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration:none;
	
	}	
	
	
/***Version 2.3.*****************/
/*** Lightbox1.ascx **/	

#EDG_0_Shadow a:link
{
	text-decoration:none!important;
	
	}


#EDG_0_Shadow .titleimage .title
{
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 13px;
	text-align: left;
	visibility: visible;
	line-height: normal;
	white-space: normal;
	display: block;
	color: #333333;
	text-decoration:none!important;
	line-height:normal;
}

#EDG_0_Shadow .titleimage .title a
{
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 13px;
	text-align: left;
	visibility: visible;
	line-height: normal;
	white-space: normal;
	display: block;
	color: #333333;
	text-decoration:none!important;
	line-height:normal;
}



#EDG_0_Shadow .DescriptionImage
{
	font-size: 12px;
	font-style: italic;
	white-space: normal;
	margin-bottom:10px;
	display:block;
	color: #333333;
	text-decoration:none!important;
	line-height:normal;
	text-align: left;

}

#EDG_0_Shadow .DescriptionImage a
{
	font-size: 12px;
	font-style: italic;
	white-space: normal;
	display:block;
	color: #333333;
	text-decoration:none!important;
	text-align: left;

}

#EDG_0_Shadow .NestedInfo
{
	font-size: 10px;
	font-style: normal;
	white-space: normal;
	margin-bottom:10px;
	display:block;
	color: #333333;
	text-decoration:none!important;
	line-height:normal;
	text-align: left;
	

}

#EDG_0_Shadow .ViewDetailsLink
{
	clear:both;
	display:block;
	text-align:left;
	padding-top:5px;
	
	}
	

#EDG_0_Shadow .ViewDetailsLink a
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	padding: 3px 8px 3px 8px;
	border: 1px solid #CCCCCC;
}

#EDG_0_Shadow .ViewDetailsLink a:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	padding: 3px 8px 3px 8px;
	border: 1px solid #C0C0C0;
	background-color: #D2D2D2;
}	

/**** version 2.6 ****/

#EDG_0_Shadow .EDGmain .EDGimage .shadowborder
{

	float: left;
	border: 1px solid #cccccc!important;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	background-color:#ffffff;


}

#EDG_0_Shadow .EDGboxslide a 
{
	color:#FFF; 
	font:12px Verdana,Tahoma, sans-serif; 
	font-weight:bold;
	display:block;
	width:100%;
	padding-bottom:5px;
	z-index:2;

				
	}
				
#EDG_0_Shadow .EDGboxslide a:hover
	{
	 text-decoration:underline!important;
	 color:Red;
	 padding-bottom:5px;
	 z-index:2;
	 display:block;

}	
				
				
#EDG_0_Shadow .EDGboxslide h3 
	{
	margin:0px;
	padding-top:5px;
	padding-bottom:5px;
	display:block;
	color:#FFF; 
	font:16px Arial, sans-serif; 			 
	font-weight: bold;  
	opacity: 1; 
	/* For IE 5-7 */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	/* For IE 8 */
	-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	z-index:2;
	
	
			                                
			                                
			                                }
			
#EDG_0_Shadow .EDGboxslide{ 		
	float:left; 
	overflow: hidden; 
	position: relative;
}

#EDG_0_Shadow .EDGboxslide p{ 
	padding: 0 10px; 
	color:#fff; 
	font-weight:bold; 
	font:12px Verdana, Arial, sans-serif; 
	z-index:2;
	display:block;
	text-align:left;
}
				
#EDG_0_Shadow .EDGboxcaption{ 
	float: left; 
	position: absolute; 


 	}
 	
 #EDG_0_Shadow .EDGboxcaption .EDGbgrdtext{ 
	left:0;
	position: absolute; 
	background: #000; 
	padding-bottom:2px;
	opacity: .5; 
	/* For IE 5-7 */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	/* For IE 8 */
	-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	white-space:normal;
	z-index:1;	
	display:inline;
 	
 	
 	}
 	
 
 #EDG_0_Shadow .EDGboxcaption .EDGslidetext
 {
 	clear:both;
 
	position: absolute; 
 	z-index:2;	
 	display:block;
 	text-align:center;
 	width:100%;
 	left:0;
 	
 	}
 
 	
 #EDG_0_Shadow .EDGboxcaption a.btnslide
 {
 	clear:both;
 	width:118px;
 	height:16px;
 	display:block;
 	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/btnslide1.png");
	background-repeat: no-repeat;
	background-position: center center;
	z-index:2;
	margin-left:8px;
	padding-top:5px;
	text-align:center;
	color:#ffffff;
 	
 	}
 
  #EDG_0_Shadow .EDGboxcaption a.btnslide:hover
 {
 	clear:both;
 	width:118px;
 	height:16px;
 	display:block;
 	background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/btnslide1_off.png");
	background-repeat: no-repeat;
	background-position: center center;
	z-index:2;
	margin-left:8px;
	padding-top:5px;
	text-align:center;
	color:#ffffff;
	text-decoration:none!important;
 	
 	}	
 	
 	
 	 #EDG_0_Shadow .EDGboxcaption .EDGboxbtn
 	 {
 	float: left; 
	position: absolute; 
 	z-index:2;	
 	 	
 }	
 
 
 #EDG_0_Shadow .playListItem a
{
	border: 1px solid #999999;
	display: block;
	padding: 7px;
	margin: 3px;
	color: #333333;
	background: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	/*width:250px;*/
}
    
#EDG_0_Shadow .playListItem a:hover
{
	border: 1px solid #999999;
	display: block;
	padding: 7px;
	margin: 3px;
	color: #333333;
	background: #F2F2F2;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	/*width:250px;*/
}




/* Version 3.1 */
/*Lightbox portfolio gallery */

/*----------- PAGINATION STYLES -----------*/
#EDG_0_Shadow .EDG_portfolio_pagination {
	float: left;
	margin-top: 20px;
}

#EDG_0_Shadow .EDG_portfolio_pagination ul{
	margin: 0;
	padding: 0;	
}

#EDG_0_Shadow .EDG_portfolio_pagination ul li {
	width: 15px;
	height: 15px;
	background-image: url("/DesktopModules/EasyDnnGallery/images/page_nav.png");
	background-repeat: no-repeat;
	float: left;
	list-style: none;
	margin-left: 3px;
	margin-right: 3px;
}

#EDG_0_Shadow .EDG_portfolio_pagination ul li:hover, #EDG_0_Shadow .EDG_portfolio_pagination ul li.selected {
	background-image: url("/DesktopModules/EasyDnnGallery/images/page_nav_active_black.png");
}


/*----------- CATEGORY FILTER STYLES -----------*/

#EDG_0_Shadow .EDG_portfolio_categories_classic_left{
	width:5px;
	height:38px;
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio/left_gray.png");
	float:left;
	background-repeat: no-repeat;
	z-index:1;
	position: relative;
}

#EDG_0_Shadow .EDG_portfolio_categories_classic_right{
	width:5px;
	height:38px;
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio/right_gray.png");
	float:right;		
	background-repeat: no-repeat;	
	z-index:0;
	position: relative;
}

#EDG_0_Shadow .EDG_portfolio_categories_classic {
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio/middle_gray.png");
	background-repeat: repeat-x;
	width: 100%;
	height: 38px;
	display: block;
	float: left;
	margin-bottom: 30px;
	position: relative;
	font-size: 13px;
	line-height: 1.5em;
	z-index:1;
	
}



#EDG_0_Shadow .EDG_portfolio_categories_classic ul {
		margin: 0;
	padding: 0;
	float: left;
	padding: 0px;
	position: relative;
	left: 0px;
	top: 0px;
	height: 37px;
	padding-left: 12px;
	float:left;
	
}

#EDG_0_Shadow .EDG_portfolio_categories_classic ul li {
		margin: 0;
	padding: 0;
	display: inline;
	position: relative;
	float: left;
	text-transform: uppercase;
	margin-right: 20px;
	margin-left: 20px;
	font-size: 11px;
	margin-top: 9px;
	text-shadow: 1px 1px #fff;
}

#EDG_0_Shadow .EDG_portfolio_categories_classic ul li.selected {
	color: #fff !important;
	text-shadow: 1px 1px #436e9c;
	position: relative;
	top: -1px;
}

#EDG_0_Shadow .EDG_portfolio_categories_classic ul li:hover a {
	text-decoration: none;
}

#EDG_0_Shadow .port_cat_active {
	float: left;
	height: 22px;
}

#EDG_0_Shadow .port_cat_l {
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio_hover_l_black.png");
	width: 11px;
	height: 22px;
	float: left;
	background-repeat: no-repeat;
}

#EDG_0_Shadow .port_cat_r {
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio_hover_r_black.png");
	width: 11px;
	height: 22px;
	float: left;
	background-repeat: no-repeat;
}

#EDG_0_Shadow .port_cat {
	background-image: url("/DesktopModules/EasyDnnGallery/images/portfolio_hover_bg_black.png");
	background-repeat: repeat-x;
	height: 22px;
	display: block;
	float: left;
	padding-top: 1px;
	color: #fff !important;
}

#EDG_0_Shadow .loading {
	width: 54px;
	height: 55px;
	background-image: url("/DesktopModules/EasyDnnGallery/images/ajax-loader.gif");
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right:auto;
	margin-top:80px;
}



#EDG_0_Shadow a.downloadlink
{
    background-position: left center;
    background-image: url("/DesktopModules/EasyDnnGallery/Themes/images/downloadarrow.png");
    background-repeat: no-repeat;
    color: #666666;
    text-decoration: none;
    font-size: 11px;
    padding-left: 13px;
    margin-bottom:7px;
    display:inline-block;
}

/*------------Version 3.9 -------------*/
/*----------- Custom title -----------*/

#EDG_0_Shadow .portfolio_gallery_container .portfolio_custom_title {
	margin: 0 0 10px;
	padding: 0;
}

#EDG_0_Shadow .portfolio_gallery_container h1.portfolio_custom_title
{
    font-size: 22px;
    font-weight: bold;
}


#EDG_0_Shadow .EDG_portfolio_categories_classic_arrow {
	position: relative;
	height: 24px;
	width: 25px;
	background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/galleries_navigation/light/navigation.png") no-repeat 0 0;
	z-index: 1;
	cursor: pointer;
	top: 50%;
	margin-top: -12px
}

	#EDG_0_Shadow .EDG_portfolio_categories_classic_arrow.left {
		float: left;
	}

		#EDG_0_Shadow .EDG_portfolio_categories_classic_arrow.left:hover {
			background-position: 0 -25px;
		}

	#EDG_0_Shadow .EDG_portfolio_categories_classic_arrow.right {
		float: right;
		background-position: -26px 0;
	}

		#EDG_0_Shadow .EDG_portfolio_categories_classic_arrow.right:hover {
			float: right;
			background-position: -26px -25px;
		}

/*----------- Dropdown Category Selector -----------*/

#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_dropdown {
	float: right;
	margin: 5px 7px 5px;
	position: relative;
	z-index: 150;
}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_selector {
		display: block;
		padding: 0 32px 0 0;
		margin: 0;
		border: none;
		color: #787878;
		height: 24px;
		background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/dropdown/Black_Style.png") no-repeat right top;
		line-height: 18px;
		width: 190px;
		position: relative;
		z-index: 151;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_selector span
{
    display: block;
    width: 184px;
    padding: 3px 0 4px 10px;
    margin: 0;
    overflow: hidden;
    height: 14px;
    color: #9d9d9d;
    font-size: 13px;
}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container {
		display: none;
		position: absolute;
		background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/category_dropdown_bottom_bg.png") no-repeat center bottom;
		padding: 0;
		margin: 0;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container ul
{
    padding: 5px 0 0;
    margin: 0;
    list-style-position: inside;
    list-style-type: none;
    border-right: 2px solid #c1bfbf;
    border-left: 2px solid #c1bfbf;
    width: 218px;
    position: relative;
    top: -5px;
    background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/bgrd_gray_tr.png") repeat center bottom;
}

			#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container ul li {
				padding: 0;
				margin: 0;
				list-style-position: outside;
				list-style-type: none;
			}

				#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container ul li a
{
    display: block;
    color: #979696;
    text-decoration: none;
    font-size: 13px;
    line-height: 18px;
    padding: 0 6px 5px 8px;
    border-bottom: 1px solid #c6c5c5;
    height: 16px;
    overflow: hidden;
    background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/dropdown/Black_Style.png") no-repeat -2px -50px;
    border-bottom-color: #D2D2D2;
}

					#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container ul li a:hover {
						background-position: -2px -25px;
						color: #fff;
					}

				#EDG_0_Shadow .portfolio_gallery_container .portfolio_categories_dropdown_container ul li span {
					display: none;
				}


/*----------- Portfolio Sideways Category Selector -----------*/

#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways {
	margin: 0 10px 0 0;
	padding: 0;
	background: none;
	border: 0;
}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways h1 {
		margin: 0 0 3px;
		padding: 1px;
		background: #fff;
		border: 1px solid #c8c8c8;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways h1 span {
			background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/galleries_navigation/light/sideways_menu_title_bg.png") repeat-x top center #c1c1c1;
			display: block;
			border: 0;
			font-weight: bold;
			font-size: 14px;
			color: #464646;
			font-family: Helvetica, Arial, sans-serif;
			text-transform: uppercase;
			margin: 0;
			padding: 4px 18px 3px;
		}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways ul {
		margin: 0;
		padding: 0;
		background: none;
		border: 0;
	}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways span.id {
		display: none;
	}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways li {
		list-style: none;
		margin: 0 0 2px;
		padding: 0;
	}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways a {
		display: block;
		margin: 0;
		padding: 5px 7px 3px 32px;
		color: #252525;
		background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/galleries_navigation/sideways_menu_arrow_left.png") no-repeat 20px center #e3e4e2;
		font-weight: normal;
		font-size: 12px;
		line-height: 15px;
		border: 1px solid #cecece;
		font-family: Helvetica, Arial, sans-serif;
		text-align: left;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways a:hover {
			background-color: #fff;
		}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways li.selected a {
		background-color: #fff;
	}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways.left {
		float: left;
	}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways.right {
		float: right;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways.right a {
			text-align: right;
			padding: 5px 32px 3px 7px;
			background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/galleries_navigation/sideways_menu_arrow_right.png") no-repeat right center #e3e4e2;
		}

			#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways.right a:hover {
				background-color: #fff;
			}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_gallery_categories_sideways.right h1 {
			text-align: right;
		}


/*----------- Navigation arrows -----------*/

#EDG_0_Shadow .portfolio_gallery_container .portfolio_navigation_arrows_container {
	position: relative;
}

	#EDG_0_Shadow .portfolio_gallery_container .portfolio_paggination_arrow {
		background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/arrows/Black_Circle.png") no-repeat;
		display: block;
		position: absolute;
		top: 0;
		width: 66px;
		height: 66px;
	}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_paggination_arrow.left {
			background-position: 0 0;
			float: left;
			left: -20px;
		}

			#EDG_0_Shadow .portfolio_gallery_container .portfolio_paggination_arrow.left:hover {
				background-position: 0 -66px;
			}

		#EDG_0_Shadow .portfolio_gallery_container .portfolio_paggination_arrow.right {
			background-position: -66px 0;
			float: right;
			right: -20px;
		}

			#EDG_0_Shadow .portfolio_gallery_container .portfolio_paggination_arrow.right:hover {
				background-position: -66px -66px;
			}


#EDG_0_Shadow .EDGmainContainer
{
	margin: 0;
	padding: 0;
	overflow: hidden;
	float: left;
}

/*--------------- Fullscreen mode -----------------*/

#EDG_0_Shadow.portfolio_gallery_fullscreen_container {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: #000;
	top: 0;
	left: 0;
	overflow: hidden;
}

	#EDG_0_Shadow.portfolio_gallery_fullscreen_container .portfolio_gallery_fullscreen_wrapper {
		width: 95%;
		height: 95%;
		margin: 0 auto;
		background: #fff;
		border: 4px solid #ccc;
		position: relative;
		top: 0;
	}

	#EDG_0_Shadow.portfolio_gallery_fullscreen_container .portfolio_gallery_fullscreen_main {
		margin: 0;
		padding: 10px;
		overflow: hidden;
	}

			#EDG_0_Shadow.portfolio_gallery_fullscreen_container .portfolio_gallery_fullscreen_main h1.portfolio_custom_title {
				margin: 0 0 7px;
				padding: 0;
				overflow: hidden;
				font-size: 26px
			}

			#EDG_0_Shadow.portfolio_gallery_fullscreen_container .portfolio_gallery_fullscreen_main .closeFullscreenBtn {
				display: block;
				width: 35px;
				height: 35px;
				background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/close_button.png") no-repeat;
				overflow: hidden;
				position: absolute;
				top: -10px;
				z-index: 200;
			}


/* Fullscreen button */

#EDG_0_Shadow .EasyDNNGallery_fullscreen_btn_container {
	padding: 3px 3px 0;
	overflow: hidden;
}

#EDG_0_Shadow .EasyDNNGallery_fullscreen_btn {
	background: url("/DesktopModules/EasyDnnGallery/Themes/portfolio/fullscreen_btn_bg.png") repeat-x;
	font-size: 11px;
	color: #363636;
	font-family: Arial;
	padding: 5px 5px 4px 27px;
	text-transform: uppercase;
	display: inline-block;
	line-height: 14px;
}


/* Social buttons */

#EDG_0_Shadow .edn_link_and_share_container {
	margin: 2px 0 2px 6px;
	overflow: hidden;
	float: right;
}

.edg_share_link_wrapper {
	overflow: hidden;
}

.edg_link_container {
	background: url("/DesktopModules/EasyDnnGallery/images/silver_gradient_bg.png") repeat-x #FFFFFF;
	padding: 3px 5px;
	border: 1px solid #cfcfcf;
	margin: 10px auto 5px;
}

	.edg_link_container input {
		font-size: 11px;
		color: #363636;
		background: none;
		padding: 0;
		margin: 0;
		width: 100%;
		border: 0;
	}

#EDG_0_Shadow .EasyDNNGallery_silver_button {
	background: url("/DesktopModules/EasyDnnGallery/images/silver_button_bg_right.png") no-repeat right 0;
	padding: 0;
	display: block;
	height: 20px;
}

	#EDG_0_Shadow .EasyDNNGallery_silver_button span {
		height: 16px;
		background: url("/DesktopModules/EasyDnnGallery/images/silver_button_bg_left.png") no-repeat 0 0;
		font-size: 12px;
		color: #707070;
		padding: 2px 6px 2px 8px;
		overflow: hidden;
		display: inline-block;
		margin: 0 2px 0 0;
	}

	#EDG_0_Shadow .EasyDNNGallery_silver_button:hover span {
		background-position: 0 -20px;
	}

	#EDG_0_Shadow .EasyDNNGallery_silver_button span img.icon {
		position: relative;
		top: -1px;
		margin: 0 3px 0 0;
		border: 0;
	}

#EDG_0_Shadow .EDGcontent.edg_streaming_video {
	float: left;
}

#EDG_0_Shadow .EDGcontent.edg_streaming_video .video_title {
	display: block;
	margin: 0 0 7px;
	padding: 0;
	font-size: 21px;
	color: #555;
	text-align: center;
}

#EDG_0_Shadow .EDGcontent.edg_streaming_video .video_description {
	display: block;
	margin: 10px 0 0;
	padding: 0;
	font-size: 15px;
	color: #555;
	text-align: center;
}

#EDG_0_Shadow .EDGcontent.edg_streaming_video .video_player_wrapper {
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	background: #e1e1e1;
	border: 1px solid #a4a4a4
}

	#EDG_0_Shadow .EDGcontent.edg_streaming_video .video_player_wrapper .video_player_container {
		display: block;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		background: url("/DesktopModules/EasyDnnGallery/Themes/images/streaming_video_play_button.png") no-repeat center center;
		cursor: pointer;
	}


@charset "UTF-8";
body.smbLightFixed {
  overflow: hidden;
}

.smbLightOverlayWrapper.modern {
  display: block;
  position: fixed;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  z-index: 99999;
  transition: opacity linear 0.2s;
}
.smbLightOverlayWrapper.modern.show {
  opacity: 1;
}
.smbLightOverlayWrapper.modern > .contentWrapper {
  display: block;
  position: absolute;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  opacity: 1;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper {
  position: absolute;
  display: none;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 0 3px 10px;
  border: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px 0 0 0;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper > div {
  display: block;
  margin: 0 0 1px;
  padding: 0;
  border: 0;
  height: 25px;
  width: 135px;
}
.smbLightOverlayWrapper.modern .socialButtonsWrapper.show {
  display: block;
}
.smbLightOverlayWrapper.modern .mainWrapper {
  display: block;
  background: #2F2F2F;
  border: 1px solid #fff;
  border-radius: 1px;
  margin: 52px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
  height: 50px;
  width: 50px;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper {
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div {
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.activeElement {
  left: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.audioVideo iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images img,
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images p {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  height: auto !important;
  max-height: none !important;
  width: auto !important;
  max-width: none !important;
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images img.activeElement {
  left: 0;
  height: 100% !important;
  width: 100% !important;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images p {
  text-align: center;
  font: 16px/20px Arial, sans-serif;
  top: 50%;
  margin: -10px 0 0;
  padding: 0 30px;
  height: auto;
  color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.smbLightOverlayWrapper.modern .mainWrapper .viewWrapper > div.images.imageNotLoaded > p {
  left: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .loadingOverlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/loader.gif") 500% 0 #2F2F2F no-repeat;
  z-index: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .loadingOverlay.inProgress {
  background-position: center center;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle {
  display: block;
  font: 17px/0.9 Arial, sans-serif;
  margin: 0 70px 10px 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  text-shadow: 1px 1px 0 #333;
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 0;
  right: 0;
  opacity: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span {
  display: block;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span.eds__SmbLight_lightboxTitle + .eds__SmbLight_lightboxDescription {
  margin-top: 7px;
}
.smbLightOverlayWrapper.modern .mainWrapper .itemTitle > span.eds__SmbLight_lightboxDescription {
  font-size: 12px;
  line-height: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation,
.smbLightOverlayWrapper.modern .mainWrapper .close,
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: absolute;
  bottom: auto;
  left: auto;
  right: auto;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation {
  top: 50%;
  width: 34px;
  height: 70px;
  background: #fff;
  margin-top: -35px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 12px;
  height: 20px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat -28px 0;
  margin: -10px 0 0 -6px;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.prev {
  right: 100%;
  border-radius: 4px 0 0 4px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.prev > span {
  background-position: -28px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.next {
  left: 100%;
  border-radius: 0 4px 4px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation.next > span {
  background-position: -28px -20px;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation:hover.prev > span {
  background-position: -40px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .navigation:hover.next > span {
  background-position: -40px -20px;
}
.smbLightOverlayWrapper.modern .mainWrapper .close {
  top: auto;
  bottom: 100%;
  right: 20px;
  width: 42px;
  height: 31px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  margin-bottom: 1px;
  opacity: 1;
}
.smbLightOverlayWrapper.modern .mainWrapper .close > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 14px;
  height: 15px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat 0 0;
  margin: -7px 0 0 -7px;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .close:hover {
  background: #ce0000;
}
.smbLightOverlayWrapper.modern .mainWrapper .close:hover > span {
  background-position: -14px 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger {
  top: 100%;
  width: 40px;
  height: 31px;
  right: 20px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger > span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 13px;
  height: 15px;
  background: url("/DesktopModules/EasyDNNNews/static/smbLight/themes/modern/images/icons.png") no-repeat 0 -15px;
  margin: -7px 0 0 -8px;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern .mainWrapper .socialButtonsTrigger:hover > span {
  background-position: -13px -15px;
}
.smbLightOverlayWrapper.modern .mainWrapper.audioItem .navigation {
  height: 30px;
  margin-top: -15px;
}
.smbLightOverlayWrapper.modern.smbPlus {
  top: auto;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  bottom: -1px;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper {
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper.positionAnimation {
  transition: transform ease-in-out 0.5s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper.swipeAnimation {
  transition: transform cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div {
  display: inline-block;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: relative;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.imageItem > img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.imageItem:before {
  content: "";
  font: 200px/1 FontAwesome;
  position: absolute;
  color: #6F6F6F;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  margin: -100px 0 0;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem {
  position: relative;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem > div, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.videoItem > div > iframe, .smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div > iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div {
  padding: 0 40px;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.audioItem > div > .audiojs .play-pause p {
  width: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.loading.imageItem > img {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .contentWrapper > div.loading.imageItem:before {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .mobileOverlay {
  background: none;
  height: 100%;
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: 0 -160px 110px -135px #000 inset, -115px 0 120px -100px #000 inset, 115px 0 120px -100px #000 inset;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  z-index: 1;
  transition: box-shadow ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation {
  margin: -27px 0 0;
  height: 54px;
  width: 30px;
  background: none;
  display: block;
  border: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  font-size: 0;
  line-height: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation > span {
  position: relative;
  top: 15px;
  left: 7px;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation > span:after {
  font-size: 20px;
  line-height: 1.3;
  font-family: FontAwesome;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation:hover > span:after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.prev {
  left: 0;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.prev > span:after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.next {
  right: 0;
  left: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .navigation.next > span:after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .close {
  margin: 0;
  height: 45px;
  width: 40px;
  background: none;
  display: block;
  border: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  font-size: 0;
  line-height: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .close > span {
  position: relative;
  top: 9px;
  left: 14px;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .close > span:after {
  font-size: 20px;
  line-height: 1.3;
  font-family: FontAwesome;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  content: "";
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .close:hover > span:after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .itemTitle {
  margin: 0;
  top: auto;
  bottom: 35px;
  font: 16px/1.3 Arial, sans-serif;
  color: #fff;
  text-align: left;
  position: absolute;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions {
  position: absolute;
  top: auto;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  padding: 5px 15px 10px;
  z-index: 2;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
  cursor: pointer;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span {
  font: 16px/1.3 Arial, sans-serif;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span:before, .smbLightOverlayWrapper.modern.smbPlus > .actions > span:after {
  font: 18px/1.3 FontAwesome;
  color: #fff;
  position: relative;
  left: -3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(0, 0, 0, 0.5);
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions > span:after {
  left: auto;
  right: -3px;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span:before, .smbLightOverlayWrapper.modern.smbPlus > .actions:hover > span:after {
  color: #aaa;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.commentsTrigger {
  left: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.commentsTrigger > span:before {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger {
  right: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger > span {
  padding: 0 3px 0 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger > span:after {
  transition: color ease-in-out 0.2s;
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger.liked > span:after {
  color: #ff3939;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.likeTrigger.liked:hover > span:after {
  color: #bb1919;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger {
  left: 50%;
  margin-left: -24px;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger > span {
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .actions.socialButtonsTrigger > span:before {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper {
  width: 150px;
  right: auto;
  left: 50%;
  margin-left: -75px;
  bottom: 45px;
  z-index: 3;
  border-radius: 5px;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper > div {
  margin-bottom: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus > .socialButtonsWrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent;
  border-style: solid;
  border-width: 10px 20px 0;
  left: 50%;
  margin: 0 0 0 -20px;
}
.smbLightOverlayWrapper.modern.smbPlus > .modalOverlay {
  background: rgba(0, 0, 0, 0.9);
  display: block;
  width: 100%;
  height: 100%;
  top: 100%;
  bottom: auto;
  left: auto;
  right: auto;
  position: absolute;
  opacity: 0;
  z-index: 3;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper {
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  height: 100%;
  border: 14px solid transparent;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 100%, 0);
  transition: transform ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > p.loading {
  margin: -15px 0 0;
  padding: 0;
  border: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  color: #666;
  position: absolute;
  top: 200%;
  left: auto;
  right: auto;
  bottom: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 20px 20px 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px 5px 0 0;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper {
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  padding-top: 40px;
  overflow-y: scroll;
  z-index: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper input,
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper textarea {
  margin: 0 0 20px;
  padding: 5px 10px;
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  line-height: 1.3;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper textarea {
  resize: vertical;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.error input,
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.error textarea {
  border-color: #e97f7f;
  color: #f00;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions {
  text-align: right;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions button {
  text-transform: uppercase;
  background: #a7a7a7;
  border: 0;
  padding: 5px 10px 4px;
  margin: 0 0 0 20px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  transition: opacity ease-in-out 0.2s, background ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.actions button:hover {
  background: #7B7B7B;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.captchaContainer > .captchaError {
  display: none;
  font-size: 14px;
  line-height: 1.3;
  color: #f00;
  padding: 10px 5px;
  margin: 0 0 5px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper > div.captchaContainer.error > .captchaError {
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.anonymCommentWrapper.addingAnonComment > div.actions .post {
  opacity: 0.4;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top {
  border: 0;
  border-bottom: 1px solid #dbdbdb;
  height: 25px;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span {
  font: 14px/1.3 Arial, sans-serif;
  color: #949494;
  position: relative;
  margin: 0;
  padding: 0 30px 0 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span:after {
  color: #c4c4c4;
  font: 18px/1.3 FontAwesome;
  position: absolute;
  display: block;
  top: -4px;
  left: auto;
  right: 10px;
  bottom: auto;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.comments:after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.likes:after {
  transition: color ease-in-out 0.2s;
  content: "";
  top: -3px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.likes.liked:after {
  color: #FF6D6D;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort {
  position: absolute;
  right: 10px;
  left: auto;
  top: auto;
  bottom: auto;
  cursor: pointer;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort:after {
  content: "";
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort.desc:after {
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort:hover {
  color: #5b5b5b;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .top > span.sort:hover:after {
  color: #8f8f8f;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 20px;
  right: 20px;
  border: 0;
  border-top: 1px solid #dbdbdb;
  padding: 0 65px 0 0;
  background: #fff;
  z-index: 1;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper:before {
  color: #c4c4c4;
  font: 33px/1 FontAwesome;
  position: absolute;
  display: block;
  top: 50%;
  left: auto;
  right: auto;
  bottom: auto;
  margin: -17px 0 0;
  content: "";
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > button {
  background: #a7a7a7;
  border: 0;
  border-radius: 2px;
  margin: -14px 0 0;
  padding: 5px 10px 4px;
  font: 14px/1.3 Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transition: background ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > button:hover {
  background: #7B7B7B;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper > textarea {
  color: #878787;
  font: 16px/1.3 Arial, sans-serif;
  margin: 0;
  padding: 10px 0 0 40px;
  border: 0;
  background: none;
  resize: none;
  width: 100%;
  height: 40px;
  box-shadow: none;
  box-sizing: border-box;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .newCommentWrapper.filledIn > button {
  background: #1287bd;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > .noComments {
  display: none;
  margin: -10px 0 0;
  padding: 0;
  border: 0;
  font: 16px/1.3 Arial, sans-serif;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  color: #747474;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul {
  margin: 0;
  padding: 0;
  border: 0;
  overflow-y: scroll;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li {
  display: block;
  margin: 0;
  padding: 10px 0 12px 60px;
  border: 0;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
  font: 0/0 Arial;
  min-height: 44px;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .authorAvatar {
  position: absolute;
  top: 12px;
  left: 0;
  right: auto;
  bottom: auto;
  border: 1px solid #adadad;
  display: block;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .authorAvatar > img {
  border: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .author {
  color: #1287bd;
  font: 12px/1.3 Arial, sans-serif;
  text-decoration: none;
  display: inline;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div > p {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  display: block;
  font: 12px/1.3 Arial, sans-serif;
  font-weight: normal;
  color: #000;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > div > p:first-child {
  margin: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li > .datetime {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: block;
  font: 11px/1.3 Arial, sans-serif;
  font-weight: normal;
  color: #949494;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > div.main > ul > li:last-child {
  border: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: auto;
  background: #dadada;
  padding: 0 10px 10px;
  margin: 0 0 0 -40px;
  border: 0;
  border-radius: 0 0 4px 4px;
  width: 60px;
  height: 25px;
  z-index: 2;
  transition: background ease-in-out 0.2s;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments:after {
  content: "";
  font: 18px/1 FontAwesome;
  color: #767676;
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  padding: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments:hover {
  background: #cbcbcb;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper > span.closeComments:hover:after {
  color: #3c3c3c;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.noComments > div.main > .noComments {
  display: block;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.showAnonymWindow > div.anonymCommentWrapper {
  left: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > p.loading {
  top: 50%;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > .top > span.sort {
  right: -100%;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > ul {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus > .commentsModalWrapper.loading > div.main > .newCommentWrapper {
  bottom: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus.modalActive > .modalOverlay {
  top: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.modalActive > .commentsModalWrapper {
  transform: translate3d(0, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.firstItem > .navigation.prev {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.lastItem > .navigation.next {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.videoActive > .contentWrapper, .smbLightOverlayWrapper.modern.smbPlus.audioActive > .contentWrapper {
  z-index: 2;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .mobileOverlay {
  box-shadow: 0 160px 110px -135px #000 inset, -115px 0 120px -100px #000 inset, 115px 0 120px -100px #000 inset, 0 -160px 110px -135px #000 inset;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation {
  width: 46px;
  height: 72px;
  margin-top: -36px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation > span {
  top: 9px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation > span:after {
  font-size: 45px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .navigation:hover > span:after {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.lastItem > .navigation.next {
  transform: translate3d(100%, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.firstItem > .navigation.prev {
  transform: translate3d(-100%, 0, 0px);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper {
  border-width: 0;
  border-radius: 0;
  width: 400px;
  transform: translate3d(0, 0, 0);
  transition: none;
  right: auto;
  left: 100%;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div {
  border-radius: 0;
  padding: 20px 10px 0;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.main > .top > span.sort {
  left: 50%;
  margin: 0 0 0 -21px;
  position: absolute;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.main > .newCommentWrapper {
  left: 10px;
  right: 10px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > div.anonymCommentWrapper {
  border-top: 37px solid #ffffff;
  padding: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments {
  padding: 0;
  margin: 0;
  left: auto;
  right: 10px;
  background: transparent !important;
  width: auto;
  height: auto;
  top: 9px;
  padding: 3px 21px 3px 5px;
  border-radius: 0;
  font: 17px/1.3 Arial, sans-serif;
  color: #c4c4c4;
  transition: color ease-in-out 0.2s;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments:after {
  font: 20px/1.3 FontAwesome;
  color: #c4c4c4;
  text-shadow: none;
  content: "";
  transition: color ease-in-out 0.2s;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  width: auto;
  display: inline;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments:hover {
  color: #9F9F9F;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .commentsModalWrapper > span.closeComments:hover:after {
  color: #9F9F9F;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.animateComments > .commentsModalWrapper {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent.moveComments > .commentsModalWrapper {
  transform: translate3d(-100%, 0, 0);
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .modalOverlay {
  display: none;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close {
  height: 45px;
  width: 45px;
  opacity: 0.5;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close > span {
  left: 10px;
  top: 5px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close > span:after {
  font-size: 29px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .close:hover > span:after {
  color: #fa3222;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions {
  padding: 8px 10px;
  top: 0;
  bottom: auto;
  opacity: 0.5;
  left: 50%;
  right: auto;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions > span:after, .smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions > span:before {
  font-size: 26px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover {
  opacity: 1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span:after, .smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions:hover > span:before {
  color: #fff;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.likeTrigger {
  margin: 0 0 0 50px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.commentsTrigger {
  margin: 0 0 0 -108px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.socialButtonsTrigger > span {
  position: relative;
  top: 2px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .actions.socialButtonsTrigger > span:before {
  left: -1;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent .socialButtonsWrapper {
  bottom: auto;
  top: 55px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent .socialButtonsWrapper:after {
  top: auto;
  bottom: 100%;
  border-color: transparent transparent rgba(0, 0, 0, 0.8);
  border-width: 0 20px 10px;
}
.smbLightOverlayWrapper.modern.smbPlus.desktopUserAgent > .itemTitle {
  bottom: 10px;
  font-size: 26px;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .mobileOverlay {
  box-shadow: none;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .navigation,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .close,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .actions,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .socialButtonsWrapper,
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .itemTitle {
  opacity: 0;
}
.smbLightOverlayWrapper.modern.smbPlus.fadeOutControls > .itemTitle {
  bottom: -100px;
}
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .navigation,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .close,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .actions,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .socialButtonsWrapper,
.smbLightOverlayWrapper.modern.smbPlus.hideControls > .itemTitle {
  display: none;
}
.smbLightOverlayWrapper.modern.initializing .mainWrapper .navigation,
.smbLightOverlayWrapper.modern.initializing .mainWrapper .close,
.smbLightOverlayWrapper.modern.initializing .mainWrapper .socialButtonsTrigger {
  display: none;
}
.smbLightOverlayWrapper.modern.initializing > .actions,
.smbLightOverlayWrapper.modern.initializing > .navigation,
.smbLightOverlayWrapper.modern.initializing > .itemTitle {
  opacity: 0 !important;
}


/*!
 * qTip2 - Pretty powerful tooltips - v2.0.1
 * http://qtip2.com
 *
 * Copyright (c) 2012 Craig Michael Thompson
 * Released under the MIT, GPL licenses
 * http://jquery.org/license
 *
 * Date: Mon Dec 31 2012 02:55 GMT+0000
 * Plugins: svg ajax tips modal viewport imagemap ie6
 * Styles: basic css3
 */

/* Core qTip styles */
.qtip, .qtip
{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 280px;
	min-width: 50px;
	font-size: 10.5px;
	line-height: 12px;
	direction: ltr;
}

.qtip-content
{
	position: relative;
	padding: 5px 9px;
	overflow: hidden;
	text-align: left;
	word-wrap: break-word;
}

.qtip-titlebar
{
	position: relative;
	padding: 5px 35px 5px 10px;
	overflow: hidden;
	border-width: 0 0 1px;
	font-weight: bold;
}

.qtip-titlebar + .qtip-content
{
	border-top-width: 0 !important;
}

/* Default close button class */
.qtip-close
{
	position: absolute;
	right: -9px;
	top: -9px;
	cursor: pointer;
	outline: medium none;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.qtip-titlebar .qtip-close
{
	right: 4px;
	top: 50%;
	margin-top: -9px;
}

* html .qtip-titlebar .qtip-close
{
	top: 16px;
}
/* IE fix */

.qtip-titlebar .ui-icon, .qtip-icon .ui-icon
{
	display: block;
	text-indent: -1000em;
	direction: ltr;
	vertical-align: middle;
}

.qtip-icon, .qtip-icon .ui-icon
{
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
}

.qtip-icon .ui-icon
{
	width: 18px;
	height: 14px;
	text-align: center;
	text-indent: 0;
	font: normal bold 10px/13px Tahoma,sans-serif;
	color: inherit;
	background: transparent none no-repeat -100em -100em;
}


/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.qtip-focus
{
}

/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.qtip-hover
{
}

/* Default tooltip style */
.qtip-default
{
	border-width: 1px;
	border-style: solid;
	border-color: #F1D031;
	background-color: #FFFFA3;
	color: #555;
}

.qtip-default .qtip-titlebar
{
	background-color: #FFEF93;
}

.qtip-default .qtip-icon
{
	border-color: #CCC;
	background: #F1F1F1;
	color: #777;
}

.qtip-default .qtip-titlebar .qtip-close
{
	border-color: #AAA;
	color: #111;
}


/*! Light tooltip style */
.qtip-light
{
	background-color: white;
	border-color: #E2E2E2;
	color: #454545;
}

.qtip-light .qtip-titlebar
{
	background-color: #f1f1f1;
}


/*! Dark tooltip style */
.qtip-dark
{
	background-color: #505050;
	border-color: #303030;
	color: #f3f3f3;
}

.qtip-dark .qtip-titlebar
{
	background-color: #404040;
}

.qtip-dark .qtip-icon
{
	border-color: #444;
}

.qtip-dark .qtip-titlebar .ui-state-hover
{
	border-color: #303030;
}


/*! Cream tooltip style */
.qtip-cream
{
	background-color: #FBF7AA;
	border-color: #F9E98E;
	color: #A27D35;
}

.qtip-cream .qtip-titlebar
{
	background-color: #F0DE7D;
}

.qtip-cream .qtip-close .qtip-icon
{
	background-position: -82px 0;
}


/*! Red tooltip style */
.qtip-red
{
	background-color: #F78B83;
	border-color: #D95252;
	color: #912323;
}

.qtip-red .qtip-titlebar
{
	background-color: #F06D65;
}

.qtip-red .qtip-close .qtip-icon
{
	background-position: -102px 0;
}

.qtip-red .qtip-icon
{
	border-color: #D95252;
}

.qtip-red .qtip-titlebar .ui-state-hover
{
	border-color: #D95252;
}


/*! Green tooltip style */
.qtip-green
{
	background-color: #CAED9E;
	border-color: #90D93F;
	color: #3F6219;
}

.qtip-green .qtip-titlebar
{
	background-color: #B0DE78;
}

.qtip-green .qtip-close .qtip-icon
{
	background-position: -42px 0;
}


/*! Blue tooltip style */
.qtip-blue
{
	background-color: #E5F6FE;
	border-color: #ADD9ED;
	color: #5E99BD;
}

.qtip-blue .qtip-titlebar
{
	background-color: #D0E9F5;
}

.qtip-blue .qtip-close .qtip-icon
{
	background-position: -2px 0;
}


/* Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-shadow
{
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded, .qtip-tipsy, .qtip-bootstrap
{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/* Youtube tooltip style */
.qtip-youtube
{
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 0 0 3px #333;
	-moz-box-shadow: 0 0 3px #333;
	box-shadow: 0 0 3px #333;
	color: white;
	border-width: 0;
	background: #4A4A4A;
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,black));
	background-image: -webkit-linear-gradient(top,#4A4A4A 0,black 100%);
	background-image: -moz-linear-gradient(top,#4A4A4A 0,black 100%);
	background-image: -ms-linear-gradient(top,#4A4A4A 0,black 100%);
	background-image: -o-linear-gradient(top,#4A4A4A 0,black 100%);
}

.qtip-youtube .qtip-titlebar
{
	background-color: #4A4A4A;
	background-color: rgba(0,0,0,0);
}

.qtip-youtube .qtip-content
{
	padding: .75em;
	font: 12px arial,sans-serif;
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
	-ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);";
}

.qtip-youtube .qtip-icon
{
	border-color: #222;
}

.qtip-youtube .qtip-titlebar .ui-state-hover
{
	border-color: #303030;
}


/* jQuery TOOLS Tooltip style */
.qtip-jtools
{
	background: #232323;
	background: rgba(0, 0, 0, 0.7);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
	background-image: -moz-linear-gradient(top, #717171, #232323);
	background-image: -webkit-linear-gradient(top, #717171, #232323);
	background-image: -ms-linear-gradient(top, #717171, #232323);
	background-image: -o-linear-gradient(top, #717171, #232323);
	border: 2px solid #ddd;
	border: 2px solid rgba(241,241,241,1);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 0 0 12px #333;
	-moz-box-shadow: 0 0 12px #333;
	box-shadow: 0 0 12px #333;
}

/* IE Specific */
.qtip-jtools .qtip-titlebar
{
	background-color: transparent;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)";
}
.qtip-jtools .qtip-content
{
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)";
}

.qtip-jtools .qtip-titlebar, .qtip-jtools .qtip-content
{
	background: transparent;
	color: white;
	border: 0 dashed transparent;
}

.qtip-jtools .qtip-icon
{
	border-color: #555;
}

.qtip-jtools .qtip-titlebar .ui-state-hover
{
	border-color: #333;
}


/* Cluetip style */
.qtip-cluetip
{
	-webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	background-color: #D9D9C2;
	color: #111;
	border: 0 dashed transparent;
}

.qtip-cluetip .qtip-titlebar
{
	background-color: #87876A;
	color: white;
	border: 0 dashed transparent;
}

.qtip-cluetip .qtip-icon
{
	border-color: #808064;
}

.qtip-cluetip .qtip-titlebar .ui-state-hover
{
	border-color: #696952;
	color: #696952;
}


/* Tipsy style */
.qtip-tipsy
{
	background: black;
	background: rgba(0, 0, 0, .87);
	color: white;
	border: 0 solid transparent;
	font-size: 11px;
	font-family: 'Lucida Grande' , sans-serif;
	font-weight: bold;
	line-height: 16px;
	text-shadow: 0 1px black;
}

.qtip-tipsy .qtip-titlebar
{
	padding: 6px 35px 0 10;
	background-color: transparent;
}

.qtip-tipsy .qtip-content
{
	padding: 6px 10;
}

.qtip-tipsy .qtip-icon
{
	border-color: #222;
	text-shadow: none;
}

.qtip-tipsy .qtip-titlebar .ui-state-hover
{
	border-color: #303030;
}


/* Tipped style */
.qtip-tipped
{
	border: 3px solid #959FA9;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background-color: #F9F9F9;
	color: #454545;
	font-weight: normal;
	font-family: serif;
}

.qtip-tipped .qtip-titlebar
{
	border-bottom-width: 0;
	color: white;
	background: #3A79B8;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
	background-image: -webkit-linear-gradient(top, #3A79B8, #2E629D);
	background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
	background-image: -ms-linear-gradient(top, #3A79B8, #2E629D);
	background-image: -o-linear-gradient(top, #3A79B8, #2E629D);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)";
}

.qtip-tipped .qtip-icon
{
	border: 2px solid #285589;
	background: #285589;
}

.qtip-tipped .qtip-icon .ui-icon
{
	background-color: #FBFBFB;
	color: #555;
}


/**
 * Twitter Bootstrap style.
 *
 * Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
 * Does not work with IE 7.
 */
.qtip-bootstrap
{
	/** Taken from Bootstrap body */
	font-size: 14px;
	line-height: 20px;
	color: #333333; /** Taken from Bootstrap .popover */
	padding: 1px;
	background-color: #ffffff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.qtip-bootstrap .qtip-titlebar
{
	/** Taken from Bootstrap .popover-title */
	padding: 8px 14px;
	margin: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.qtip-bootstrap .qtip-titlebar .qtip-close
{
	/** 			 * Overrides qTip2: 			 * .qtip-titlebar .qtip-close{ 			 *   [...] 			 *   right: 4px; 			 *   top: 50%; 			 *   [...] 			 *   border-style: solid; 			 * } 			 */
	right: 11px;
	top: 45%;
	border-style: none;
}

.qtip-bootstrap .qtip-content
{
	/** Taken from Bootstrap .popover-content */
	padding: 9px 14px;
}

.qtip-bootstrap .qtip-icon
{
	/** 		 * Overrides qTip2: 		 * .qtip-default .qtip-icon { 		 *   border-color: #CCC; 		 *   background: #F1F1F1; 		 *   color: #777; 		 * } 		 */
	background: transparent;
}

.qtip-bootstrap .qtip-icon .ui-icon
{
	/** 			 * Overrides qTip2: 			 * .qtip-icon .ui-icon{ 			 *   width: 18px; 			 *   height: 14px; 			 * } 			 */
	width: auto;
	height: auto; /* Taken from Bootstrap .close */
	float: right;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	color: #000000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.qtip-bootstrap .qtip-icon .ui-icon:hover
{
	/* Taken from Bootstrap .close:hover */
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.4;
	filter: alpha(opacity=40);
}


/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content, .qtip:not(.ie9haxors) div.qtip-titlebar
{
	filter: none;
	-ms-filter: none;
}


/* Tips plugin */
.qtip .qtip-tip
{
	margin: 0 auto;
	overflow: hidden;
	z-index: 10;
}

.qtip .qtip-tip, .qtip .qtip-tip .qtip-vml
{
	position: absolute;
	color: #123456;
	background: transparent;
	border: 0 dashed transparent;
}

.qtip .qtip-tip canvas
{
	top: 0;
	left: 0;
}

.qtip .qtip-tip .qtip-vml
{
	behavior: url(#default#VML);
	display: inline-block;
	visibility: visible;
}
/* Modal plugin */
#qtip-overlay
{
	position: fixed;
	left: -10000em;
	top: -10000em;
}

/* Applied to modals with show.modal.blur set to true */
#qtip-overlay.blurs
{
	cursor: pointer;
}

/* Change opacity of overlay here */
#qtip-overlay div
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}


/* IE6 Modal plugin fix */
.qtipmodal-ie6fix
{
	position: absolute !important;
}

