﻿@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez - Morteza Kermani
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/
    /*font: inherit;*/
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: Tahoma, sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    direction:rtl;/*dnnsoftware.ir*/
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 24px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}

/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 19px 0 20px;
    border-right: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-right: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-right: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 980px;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-right: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-right: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-right: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-right: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: right;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: right;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: left;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: right;
    margin-bottom: 0;
}

.dnnPagination {
    float: left;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: right;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-right: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: Tahoma, "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-right: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-right: 0;
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: right;
        margin-left: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            -webkit-box-shadow: none;
            -webkit-border-radius: 3px 0px 0px 3px;
            border-radius: 3px 0px 0px 3px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-right: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-left: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 0 0 3px;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    right: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    right: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    left: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: right;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: right;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-right: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: right;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 5px 0 0;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat right 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: right;
    position: relative;
    width: 32.075%;
    padding-left: 20px;
    margin-left: 18px;
    overflow: visible;
    text-align: left;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: left;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-right: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: right;
}

.dnnFormHelpContent span {
    display: block;
    word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    right: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    right: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    right: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    right: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    left: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        right: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 8px 0 25px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    background-color: transparent;
    border-right: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 5px 0 0;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: right;
    padding: 2px 6px 2px 6px;
    margin-left: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: Tahoma, helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: right;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: left;
        position: relative;
        margin: 0 5px 5px 0;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 10px 0 15px;
            margin-left: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: left center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: left center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            left: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 8px 6px 12px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-left: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 4px 0 5px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: right;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: right;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    right: 0;
    width: 200px;
    margin-right: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-right: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: right;
        border-right: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-right: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: right;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: left;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: right;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: right;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 0 0 10px;
        text-align: right;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: right;
}

    .dnnActions li {
        float: right;
        margin-left: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: right;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: right;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: right;
    padding-right: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        left: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 1px 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
	        border: none;
	        outline: none;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 0;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    left: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 0em 0em 1em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: right;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0em 0.5em 0.4em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: left;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
    cursor:sw-resize;/*dnnsoftware.ir*/
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: right;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-left: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: right;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: right;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: left;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: left;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.rtl.png") repeat-x;/*dnnsoftware.ir*/
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: right;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: right;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 20px 0 0;
    background: transparent url("/images/InstallWizardBG.rtl.png") repeat-x;/*dnnsoftware.ir*/
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-right: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 0 0 10px;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 0 0 20px;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.rtl.png") no-repeat;/*dnnsoftware.ir*/
    background-position: 100% -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-left: 1px solid #c9c9c9;
        text-align: right;
        padding-right: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-right: 10px;
        text-align: right;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-left: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 0 5px 5px;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-left: 35px;
        float:right;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: right;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-left: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: right;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl input[type=text] {
        direction:ltr;/*dnnsoftware.ir*/
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 0 0 10px;
        float: right;
    }

    .urlControl .urlControlLinkType {
        float: right;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: right;
            width: auto;
            margin-left: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-left: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: right;
}

.dnnFilePicker {
    display: block;
    float: right;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: right;
        width: 40px;
        margin-top: 8px;
        padding-right: 5px;
        text-align: right;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-left: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 0 0 10px;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 0 0 4px;
    width: auto !important;
    display: block !important;
    float: right !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: right;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: right;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            right: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-left: 10px;
    float: right;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-left: 15px;
    float: right;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: right;
    margin-left: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-left: 10px;
    float: right;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-left: 15px;
    float: right;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: right;
    margin-left: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-left: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-left: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-right: 3px;
        background: url("/images/down-icn.png") no-repeat left 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat left 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat left 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat left 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-right: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: right;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 3px 0 0;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    right: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: left;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 30px 0 0;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: right;
}

.right {
    float: left;
}

.dnnLeft {
    float: right;
}

.dnnRight {
    float: left;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: right;
}

.DNNAlignright {
    text-align: left;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
.DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	right: auto;
	left: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:right;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-right: 1px solid #1f1f1f;
	border-left: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:right;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:right;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-right: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }



/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: pointer;
    float: right;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: right;
}

.console.profile .console-none h3 {
    padding: 10px 40px 10px 8px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: right;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > label#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	left: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: right;
	margin: 0 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: right;
	margin: 10px 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 8px 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 8px 0 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: right;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 12px 0 5px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    left: 0;
    width: auto;
    border-radius: 0;
    text-align: left;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-left: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
    text-align:left; /*dnnsoftware.ir*/
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px; /*dnnsoftware.ir*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: 22px; /*dnnsoftware.ir*/
    float:left; /*dnnsoftware.ir*/
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/


/* ===========   dnnsoftware.ir   =========== */

.RadCalendar_Default a.rcPrev {
	background-position: -70px center !important;
}

.RadCalendar_Default a.rcNext {
	background-position: -15px center !important;
}

.jspDrag {
    right: -3px;
}
/*this is a class to style the design table*/

/* Edit View */
.LinksDesignTable
{
}
.MessageSuccees
{
    color: Green;
    font-weight: bold;
}
.MessageFailure
{
    color: Red;
    font-weight: bold;
}

/* Module View */

.link_module
{
}

.linklist
{
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: -1;
}

.linkitem
{
    list-style: none;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
#pp_position
{
    position: relative;
}
ul.linklist.Horizontal
{
}

li.linkitem.Horizontal
{
    display: inline-block;
    line-height: 2;
    float: left;
    margin: 0 15px 0 0;
}

.item_desc
{
    line-height: 1.3;
    margin: 0 0 0 20px;
    white-space: normal;
}

/*popup*/

.popup
{
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
    z-index: 999;
}
#ppwrap
{
    width: 202px;
    background: url("/DesktopModules/Links/img/top.gif") no-repeat top;
    padding: 17px 0 0 0;
}
#ppbottom
{
    width: 202px;
    background: url("/DesktopModules/Links/img/bottom.gif") no-repeat;
    height: 5px;
}
#ppbody
{
    width: 182px;
    padding: 10px;
    min-height: 30px;
    background: url("/DesktopModules/Links/img/body.gif") repeat-y #F8F8F8;
    color: #666;
    font-size: 11px;
    font-family: Arial;
}
#ppbody span
{
    white-space: pre-line;
}

/*friend panel*/
/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
body{direction:rtl;}
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
.clearfix:after{clear:both;}
.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
audio:not([controls]){display:none;}
html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
a:hover,a:active{outline:0;}
sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;}
#map_canvas img,.google-maps img{max-width:none;}
button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
button,input{*overflow:visible;line-height:normal;}
button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}
label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;}
input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
textarea{overflow:auto;vertical-align:top;}
@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:Tahoma,Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;}
a{color:#0088cc;text-decoration:none;}
a:hover,a:focus{color:#005580;text-decoration:underline;}
.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);}
.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;}
.row{margin-right:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;}
.row:after{clear:both;}
[class*="span"]{float:right;min-height:1px;margin-right:20px;}
.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
.span12{width:940px;}
.span11{width:860px;}
.span10{width:780px;}
.span9{width:700px;}
.span8{width:620px;}
.span7{width:540px;}
.span6{width:460px;}
.span5{width:380px;}
.span4{width:300px;}
.span3{width:220px;}
.span2{width:140px;}
.span1{width:60px;}
.offset12{margin-right:980px;}
.offset11{margin-right:900px;}
.offset10{margin-right:820px;}
.offset9{margin-right:740px;}
.offset8{margin-right:660px;}
.offset7{margin-right:580px;}
.offset6{margin-right:500px;}
.offset5{margin-right:420px;}
.offset4{margin-right:340px;}
.offset3{margin-right:260px;}
.offset2{margin-right:180px;}
.offset1{margin-right:100px;}
.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;}
.row-fluid:after{clear:both;}
.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;margin-right:2.127659574468085%;*margin-right:2.074468085106383%;}
.row-fluid [class*="span"]:first-child{margin-right:0;}
.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-right:2.127659574468085%;}
.row-fluid .span12{width:100%;*width:99.94680851063829%;}
.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;}
.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;}
.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;}
.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;}
.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;}
.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;}
.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;}
.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;}
.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;}
.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;}
.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;}
.row-fluid .offset12{margin-right:104.25531914893617%;*margin-right:104.14893617021275%;}
.row-fluid .offset12:first-child{margin-right:102.12765957446808%;*margin-right:102.02127659574467%;}
.row-fluid .offset11{margin-right:95.74468085106382%;*margin-right:95.6382978723404%;}
.row-fluid .offset11:first-child{margin-right:93.61702127659574%;*margin-right:93.51063829787232%;}
.row-fluid .offset10{margin-right:87.23404255319149%;*margin-right:87.12765957446807%;}
.row-fluid .offset10:first-child{margin-right:85.1063829787234%;*margin-right:84.99999999999999%;}
.row-fluid .offset9{margin-right:78.72340425531914%;*margin-right:78.61702127659572%;}
.row-fluid .offset9:first-child{margin-right:76.59574468085106%;*margin-right:76.48936170212764%;}
.row-fluid .offset8{margin-right:70.2127659574468%;*margin-right:70.10638297872339%;}
.row-fluid .offset8:first-child{margin-right:68.08510638297872%;*margin-right:67.9787234042553%;}
.row-fluid .offset7{margin-right:61.70212765957446%;*margin-right:61.59574468085106%;}
.row-fluid .offset7:first-child{margin-right:59.574468085106375%;*margin-right:59.46808510638297%;}
.row-fluid .offset6{margin-right:53.191489361702125%;*margin-right:53.085106382978715%;}
.row-fluid .offset6:first-child{margin-right:51.063829787234035%;*margin-right:50.95744680851063%;}
.row-fluid .offset5{margin-right:44.68085106382979%;*margin-right:44.57446808510638%;}
.row-fluid .offset5:first-child{margin-right:42.5531914893617%;*margin-right:42.4468085106383%;}
.row-fluid .offset4{margin-right:36.170212765957444%;*margin-right:36.06382978723405%;}
.row-fluid .offset4:first-child{margin-right:34.04255319148936%;*margin-right:33.93617021276596%;}
.row-fluid .offset3{margin-right:27.659574468085104%;*margin-right:27.5531914893617%;}
.row-fluid .offset3:first-child{margin-right:25.53191489361702%;*margin-right:25.425531914893618%;}
.row-fluid .offset2{margin-right:19.148936170212764%;*margin-right:19.04255319148936%;}
.row-fluid .offset2:first-child{margin-right:17.02127659574468%;*margin-right:16.914893617021278%;}
.row-fluid .offset1{margin-right:10.638297872340425%;*margin-right:10.53191489361702%;}
.row-fluid .offset1:first-child{margin-right:8.51063829787234%;*margin-right:8.404255319148938%;}
[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;}
[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:left;}
.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;}
.container:after{clear:both;}
.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
.container-fluid:after{clear:both;}
.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-right:.3em;}.btn-group:first-child{*margin-right:0;}
.btn-group+.btn-group{margin-right:5px;}
.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-right:5px;}
.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.btn-group>.btn+.btn{margin-right:-1px;}
.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;}
.btn-group>.btn-mini{font-size:10.5px;}
.btn-group>.btn-small{font-size:11.9px;}
.btn-group>.btn-large{font-size:17.5px;}
.btn-group>.btn:first-child{margin-right:0;-webkit-border-top-right-radius:4px;-moz-border-radius-topleft:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-right-radius:4px;}
.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-left-radius:4px;-moz-border-radius-topright:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-left-radius:4px;}
.btn-group>.btn.large:first-child{margin-right:0;-webkit-border-top-right-radius:6px;-moz-border-radius-topleft:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-right-radius:6px;}
.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-left-radius:6px;-moz-border-radius-topright:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-left-radius:6px;}
.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;}
.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;}
.btn-group>.btn-mini+.dropdown-toggle{padding-right:5px;padding-left:5px;*padding-top:2px;*padding-bottom:2px;}
.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;}
.btn-group>.btn-large+.dropdown-toggle{padding-right:12px;padding-left:12px;*padding-top:7px;*padding-bottom:7px;}
.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;}
.btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;}
.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;}
.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;}
.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;}
.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;}
.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;}
.btn .caret{margin-top:8px;margin-right:0;}
.btn-large .caret{margin-top:6px;}
.btn-large .caret{border-right-width:5px;border-left-width:5px;border-top-width:5px;}
.btn-mini .caret,.btn-small .caret{margin-top:8px;}
.dropup .btn-large .caret{border-bottom-width:5px;}
.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;}
.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.btn-group-vertical>.btn+.btn{margin-right:0;margin-top:-1px;}
.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 0 0 6px;-moz-border-radius:6px 0 0 6px;border-radius:6px 0 0 6px;}
.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 6px 6px 0;-moz-border-radius:0 6px 6px 0;border-radius:0 6px 6px 0;}
.nav{margin-right:0;margin-bottom:20px;list-style:none;}
.nav>li>a{display:block;}
.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;}
.nav>li>a>img{max-width:none;}
.nav>.pull-right{float:left;}
.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
.nav li+.nav-header{margin-top:9px;}
.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0;}
.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
.nav-list>li>a{padding:3px 15px;}
.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-left:2px;}
.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;}
.nav-tabs:after,.nav-pills:after{clear:both;}
.nav-tabs>li,.nav-pills>li{float:right;}
.nav-tabs>li>a,.nav-pills>li>a{padding-left:12px;padding-right:12px;margin-left:2px;line-height:14px;}
.nav-tabs{border-bottom:1px solid #ddd;}
.nav-tabs>li{margin-bottom:-1px;}
.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;}
.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;}
.nav-stacked>li{float:none;}
.nav-stacked>li>a{margin-left:0;}
.nav-tabs.nav-stacked{border-bottom:0;}
.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-left-radius:4px;-moz-border-radius-topright:4px;border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-moz-border-radius-topleft:4px;border-top-right-radius:4px;}
.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-left-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-right-radius:4px;}
.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;}
.nav-pills.nav-stacked>li>a{margin-bottom:3px;}
.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;}
.nav-tabs .dropdown-menu{-webkit-border-radius:0 6px 6px 0;-moz-border-radius:0 6px 6px 0;border-radius:0 6px 6px 0;}
.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
.nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;}
.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580;}
.nav-tabs .dropdown-toggle .caret{margin-top:8px;}
.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;}
.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;}
.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;}
.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);}
.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;}
.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;}
.tabbable:after{clear:both;}
.tab-content{overflow:auto;}
.tabs-below>.nav-tabs,.tabs-left>.nav-tabs,.tabs-right>.nav-tabs{border-bottom:0;}
.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;}
.tab-content>.active,.pill-content>.active{display:block;}
.tabs-below>.nav-tabs{border-top:1px solid #ddd;}
.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;}
.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;}
.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;}
.tabs-right>.nav-tabs>li,.tabs-left>.nav-tabs>li{float:none;}
.tabs-right>.nav-tabs>li>a,.tabs-left>.nav-tabs>li>a{min-width:74px;margin-left:0;margin-bottom:3px;}
.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;}
.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}
.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;}
.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-left-color:#ffffff;}
.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;}
.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0  04px 4px;border-radius:0 0 4px 4px;}
.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;}
.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-right-color:#ffffff;}
.nav>.disabled>a{color:#999999;}
.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;}
.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;}
.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;}
.navbar-inner:after{clear:both;}
.navbar .container{width:auto;}
.nav-collapse.collapse{height:auto;overflow:visible;}
.navbar .brand{float:right;display:block;padding:10px 20px 10px;margin-right:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}
.navbar-text{margin-bottom:0;line-height:40px;color:#777777;}
.navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;}
.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #f2f2f2;border-left:1px solid #ffffff;}
.navbar .btn,.navbar .btn-group{margin-top:5px;}
.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;}
.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;}
.navbar-form:after{clear:both;}
.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;}
.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
.navbar-search{position:relative;float:right;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:Tahoma,Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;left:0;right:0;z-index:1030;margin-bottom:0;}
.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;}
.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;}
.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
.navbar-fixed-top{top:0;}
.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);}
.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);}
.navbar .nav{position:relative;right:0;display:block;float:right;margin:0 0 0 10px;}
.navbar .nav.pull-right{float:left;margin-left:0;}
.navbar .nav>li{float:right;}
.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;}
.navbar .nav .dropdown-toggle .caret{margin-top:8px;}
.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;}
.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);}
.navbar .btn-navbar{display:none;float:left;padding:7px 10px;margin-right:5px;margin-left:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;}
.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;}
.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;right:9px;}
.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;right:10px;}
.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;}
.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;}
.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;}
.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:auto;left:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;}
.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:auto;left:13px;}
.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:auto;left:100%;margin-right:0;margin-left:-1px;-webkit-border-radius:6px 6px 6px 0;-moz-border-radius:6px 6px 6px 0;border-radius:6px 6px 6px 0;}
.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;}
.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;}
.navbar-inverse .brand{color:#999999;}
.navbar-inverse .navbar-text{color:#999999;}
.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;}
.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;}
.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;}
.navbar-inverse .divider-vertical{border-right-color:#111111;border-left-color:#222222;}
.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;}
.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;}
.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;}
.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;}
.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
.tooltip.top{margin-top:-3px;padding:5px 0;}
.tooltip.left{margin-right:3px;padding:0 5px;}
.tooltip.bottom{margin-top:3px;padding:5px 0;}
.tooltip.right{margin-right:-3px;padding:0 5px;}
.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}
.tooltip.top .tooltip-arrow{bottom:0;right:50%;margin-right:-5px;border-width:5px 5px 0;border-top-color:#000000;}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;}
.tooltip.bottom .tooltip-arrow{top:0;right:50%;margin-right:-5px;border-width:0 5px 5px;border-bottom-color:#000000;}
.popover{position:absolute;top:0;right:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:right;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;}
.popover.left{margin-right:10px;}
.popover.bottom{margin-top:10px;}
.popover.right{margin-right:-10px;}
.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;}
.popover-content{padding:9px 14px;}
.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}
.popover .arrow{border-width:11px;}
.popover .arrow:after{border-width:10px;content:"";}
.popover.top .arrow{right:50%;margin-right:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-right:-10px;border-bottom-width:0;border-top-color:#ffffff;}
.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;bottom:-10px;border-right-width:0;border-left-color:#ffffff;}
.popover.bottom .arrow{right:50%;margin-right:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-right:-10px;border-top-width:0;border-bottom-color:#ffffff;}
.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;border-left-width:0;border-right-color:#ffffff;bottom:-10px;}
.modal-backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;}
.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}
.modal{position:fixed;top:10%;right:50%;z-index:1050;width:560px;margin-right:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
.modal.fade.in{top:10%;}
.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;}
.modal-header h3{margin:0;line-height:30px;}
.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;}
.modal-form{margin-bottom:0;}
.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:left;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 6px 6px 0;-moz-border-radius:0 6px 6px 0;border-radius:0 6px 6px 0;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;}
.modal-footer:after{clear:both;}
.modal-footer .btn+.btn{margin-right:5px;margin-bottom:0;}
.modal-footer .btn-group .btn+.btn{margin-right:-1px;}
.modal-footer .btn-block+.btn-block{margin-right:0;}
.dropup,.dropdown{position:relative;}
.dropdown-toggle{*margin-bottom:-3px;}
.dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-left:4px solid transparent;border-right:4px solid transparent;content:"";}
.dropdown .caret{margin-top:8px;margin-right:2px;}
.dropdown-menu{position:absolute;top:100%;right:0;z-index:1000;display:none;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-left-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{left:0;right:auto;}
.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;}
.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;}
.open{*z-index:1000;}.open>.dropdown-menu{display:block;}
.dropdown-backdrop{position:fixed;right:0;left:0;bottom:0;top:0;z-index:990;}
.pull-right>.dropdown-menu{left:0;right:auto;}
.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";}
.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;right:100%;margin-top:-6px;margin-right:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:hover>.dropdown-menu{display:block;}
.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 0 5px 5px;-moz-border-radius:5px 0 5px 5px;border-radius:5px 0 5px 5px;}
.dropdown-submenu>a:after{display:block;content:" ";float:left;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 5px 5px 0;border-right-color:#cccccc;margin-top:5px;margin-left:-10px;}
.dropdown-submenu:hover>a:after{border-right-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{right:-100%;margin-right:10px;-webkit-border-radius:6px 6px 6px 0;-moz-border-radius:6px 6px 6px 0;border-radius:6px 6px 6px 0;}
.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px;}
.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.accordion{margin-bottom:20px;}
.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.accordion-heading{border-bottom:0;}
.accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
.accordion-toggle{cursor:pointer;}
.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
.carousel{position:relative;margin-bottom:20px;line-height:1;}
.carousel-inner{overflow:hidden;width:100%;position:relative;}
.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out right;-moz-transition:0.6s ease-in-out right;-o-transition:0.6s ease-in-out right;transition:0.6s ease-in-out right;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;}
.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;}
.carousel-inner>.active{right:0;}
.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;}
.carousel-inner>.next{right:100%;}
.carousel-inner>.prev{right:-100%;}
.carousel-inner>.next.right,.carousel-inner>.prev.left{right:0;}
.carousel-inner>.active.right{right:-100%;}
.carousel-inner>.active.left{right:100%;}
.carousel-control{position:absolute;top:40%;right:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{right:auto;left:15px;}
.carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);}
.carousel-indicators{position:absolute;top:15px;left:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:right;width:10px;height:10px;margin-right:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;}
.carousel-indicators .active{background-color:#fff;}
.carousel-caption{position:absolute;right:0;left:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);}
.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;}
.carousel-caption h4{margin:0 0 5px;}
.carousel-caption p{margin-bottom:0;}
.pull-right{float:left;}
.pull-left{float:right;}
.hide{display:none;}
.show{display:block;}
.invisible{visibility:hidden;}
.affix{position:fixed;}
.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;}
.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;}
.Kermani{display:none !important;}
.visible-phone{display:none !important;}
.visible-tablet{display:none !important;}
.hidden-desktop{display:none !important;}
.visible-desktop{display:inherit !important;}
@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;}
@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}@media (max-width:767px){body{padding-right:20px;padding-left:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:right;} .dl-horizontal dd{margin-right:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-right:0;} .thumbnails>li{float:none;margin-right:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-right:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-right:0;} .modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:right;} .form-horizontal .controls{margin-right:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-right:10px;padding-left:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-left:0;margin-right:0;} .modal{top:10px;right:10px;left:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-right:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:right;min-height:1px;margin-right:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-right:764px;} .offset11{margin-right:702px;} .offset10{margin-right:640px;} .offset9{margin-right:578px;} .offset8{margin-right:516px;} .offset7{margin-right:454px;} .offset6{margin-right:392px;} .offset5{margin-right:330px;} .offset4{margin-right:268px;} .offset3{margin-right:206px;} .offset2{margin-right:144px;} .offset1{margin-right:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;margin-right:2.7624309392265194%;*margin-right:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-right:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-right:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-right:105.52486187845304%;*margin-right:105.41847889972962%;} .row-fluid .offset12:first-child{margin-right:102.76243093922652%;*margin-right:102.6560479605031%;} .row-fluid .offset11{margin-right:96.96132596685082%;*margin-right:96.8549429881274%;} .row-fluid .offset11:first-child{margin-right:94.1988950276243%;*margin-right:94.09251204890089%;} .row-fluid .offset10{margin-right:88.39779005524862%;*margin-right:88.2914070765252%;} .row-fluid .offset10:first-child{margin-right:85.6353591160221%;*margin-right:85.52897613729868%;} .row-fluid .offset9{margin-right:79.8342541436464%;*margin-right:79.72787116492299%;} .row-fluid .offset9:first-child{margin-right:77.07182320441989%;*margin-right:76.96544022569647%;} .row-fluid .offset8{margin-right:71.2707182320442%;*margin-right:71.16433525332079%;} .row-fluid .offset8:first-child{margin-right:68.50828729281768%;*margin-right:68.40190431409427%;} .row-fluid .offset7{margin-right:62.70718232044199%;*margin-right:62.600799341718584%;} .row-fluid .offset7:first-child{margin-right:59.94475138121547%;*margin-right:59.838368402492065%;} .row-fluid .offset6{margin-right:54.14364640883978%;*margin-right:54.037263430116376%;} .row-fluid .offset6:first-child{margin-right:51.38121546961326%;*margin-right:51.27483249088986%;} .row-fluid .offset5{margin-right:45.58011049723757%;*margin-right:45.47372751851417%;} .row-fluid .offset5:first-child{margin-right:42.81767955801105%;*margin-right:42.71129657928765%;} .row-fluid .offset4{margin-right:37.01657458563536%;*margin-right:36.91019160691196%;} .row-fluid .offset4:first-child{margin-right:34.25414364640884%;*margin-right:34.14776066768544%;} .row-fluid .offset3{margin-right:28.45303867403315%;*margin-right:28.346655695309746%;} .row-fluid .offset3:first-child{margin-right:25.69060773480663%;*margin-right:25.584224756083227%;} .row-fluid .offset2{margin-right:19.88950276243094%;*margin-right:19.783119783707537%;} .row-fluid .offset2:first-child{margin-right:17.12707182320442%;*margin-right:17.02068884448102%;} .row-fluid .offset1{margin-right:11.32596685082873%;*margin-right:11.219583872105325%;} .row-fluid .offset1:first-child{margin-right:8.56353591160221%;*margin-right:8.457152932878806%;} input,textarea,.uneditable-input{margin-right:0;} .controls-row [class*="span"]+[class*="span"]{margin-right:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-right:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:right;min-height:1px;margin-right:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-right:1230px;} .offset11{margin-right:1130px;} .offset10{margin-right:1030px;} .offset9{margin-right:930px;} .offset8{margin-right:830px;} .offset7{margin-right:730px;} .offset6{margin-right:630px;} .offset5{margin-right:530px;} .offset4{margin-right:430px;} .offset3{margin-right:330px;} .offset2{margin-right:230px;} .offset1{margin-right:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;margin-right:2.564102564102564%;*margin-right:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-right:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-right:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-right:105.12820512820512%;*margin-right:105.02182214948171%;} .row-fluid .offset12:first-child{margin-right:102.56410256410257%;*margin-right:102.45771958537915%;} .row-fluid .offset11{margin-right:96.58119658119658%;*margin-right:96.47481360247316%;} .row-fluid .offset11:first-child{margin-right:94.01709401709402%;*margin-right:93.91071103837061%;} .row-fluid .offset10{margin-right:88.03418803418803%;*margin-right:87.92780505546462%;} .row-fluid .offset10:first-child{margin-right:85.47008547008548%;*margin-right:85.36370249136206%;} .row-fluid .offset9{margin-right:79.48717948717949%;*margin-right:79.38079650845607%;} .row-fluid .offset9:first-child{margin-right:76.92307692307693%;*margin-right:76.81669394435352%;} .row-fluid .offset8{margin-right:70.94017094017094%;*margin-right:70.83378796144753%;} .row-fluid .offset8:first-child{margin-right:68.37606837606839%;*margin-right:68.26968539734497%;} .row-fluid .offset7{margin-right:62.393162393162385%;*margin-right:62.28677941443899%;} .row-fluid .offset7:first-child{margin-right:59.82905982905982%;*margin-right:59.72267685033642%;} .row-fluid .offset6{margin-right:53.84615384615384%;*margin-right:53.739770867430444%;} .row-fluid .offset6:first-child{margin-right:51.28205128205128%;*margin-right:51.175668303327875%;} .row-fluid .offset5{margin-right:45.299145299145295%;*margin-right:45.1927623204219%;} .row-fluid .offset5:first-child{margin-right:42.73504273504273%;*margin-right:42.62865975631933%;} .row-fluid .offset4{margin-right:36.75213675213675%;*margin-right:36.645753773413354%;} .row-fluid .offset4:first-child{margin-right:34.18803418803419%;*margin-right:34.081651209310785%;} .row-fluid .offset3{margin-right:28.205128205128204%;*margin-right:28.0987452264048%;} .row-fluid .offset3:first-child{margin-right:25.641025641025642%;*margin-right:25.53464266230224%;} .row-fluid .offset2{margin-right:19.65811965811966%;*margin-right:19.551736679396257%;} .row-fluid .offset2:first-child{margin-right:17.094017094017094%;*margin-right:16.98763411529369%;} .row-fluid .offset1{margin-right:11.11111111111111%;*margin-right:11.004728132387708%;} .row-fluid .offset1:first-child{margin-right:8.547008547008547%;*margin-right:8.440625568285142%;} input,textarea,.uneditable-input{margin-right:0;} .controls-row [class*="span"]+[class*="span"]{margin-right:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} .thumbnails{margin-right:-30px;} .thumbnails>li{margin-right:30px;} .row-fluid .thumbnails{margin-right:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-right:10px;padding-left:10px;margin:0 -5px 0 0;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;right:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-right:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-right:10px;padding-left:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}
@charset "UTF-8";

body {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 18px;
}

/* DNN Body */
#Body {
    /* CSS3 */
    background: #efefef; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #efefef 0%, #e9e9e9 50%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#efefef), color-stop(50%,#e9e9e9), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #efefef 0%,#e9e9e9 50%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #efefef 0%,#e9e9e9 50%,#dfdfdf 100%); /* Opera 12+ */
    /*background: -ms-radial-gradient(center, ellipse cover,  #efefef 0%,#e9e9e9 50%,#dfdfdf 100%); */ /* IE10+ */
    background: radial-gradient(ellipse at center, #efefef 0%,#e9e9e9 50%,#dfdfdf 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#dfdfdf',GradientType=1);  IE6-9 fallback on horizontal gradient */
    min-height: 1px;
}

/*------------------------------------------------*/
/* FONT STYLE */
/*------------------------------------------------*/
body, th, td, table, h1, h2, h3, h4, h5, h6,
.Head, .SubHead, .SubSubHead,
.Normal, .NormalBold, .NormalRed, .NormalTextBox, .NormalDisabled,
a:link, a:visited, a:hover, input, .CommandButton {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
}

em {
    font-style: italic;
    letter-spacing: 0;
}

strong {
    color: #333;
    font-weight: bold;
}

small {
    font-size: 12px;
    letter-spacing: 0;
}

/*------------------------------------------------*/
/* HEADER STYLE */
/*------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 26px;
}

h2, h2 .Head {
    font-size: 18px;
}

h3, h3 .Head {
    font-size: 18px;
    color: #666;
}

h4, h4 .Head {
    font-size: 16px;
    color: #666;
}

h5, h5 .Head {
    font-size: 14px;
    color: #666;
}

h6, h6 .Head {
    font-size: 13px;
    color: #666;
}

/*------------------------------------------------*/
/* ANCHOR STYLE */
/*------------------------------------------------*/
a, a:link, a:visited, a:active {
    color: #3B96B6;
    text-decoration: none;
    outline: 0;
}

    a:hover {
        color: #D00;
        text-decoration: none;
        outline: 0;
    }

/* DNN Specific Selectors 
-------------------------------------*/
.CommandButton {
    font-size: 13px;
    color: #3d3d3d;
    font-weight: bold;
}

    .CommandButton:hover {
        color: #007cae;
    }

a.CommandButton:link {
    font-size: 13px;
    text-decoration: none;
    color: #3d3d3d;
    font-weight: bold;
}

a.CommandButton:hover {
    text-decoration: underline;
    color: #007cae;
}

/*------------------------------------------------*/
/* PARAGRAPH STYLE */
/*------------------------------------------------*/
p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: solid #c0c0c0;
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

/*------------------------------------------------*/
/* IMAGE STYLES */
/*------------------------------------------------*/
img {
    border: 0;
}

/* Image Align left 
    -------------------------------------*/
.imgLeft {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

/* Image Align right 
    -------------------------------------*/
.imgRight {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* Image with border 
    -------------------------------------*/
.imgBorder {
    border: solid 3px #fff;
}

/* Polaroid Image Style 
    -------------------------------------*/
.imgPolaroid {
    color: #a6a6a6;
    font-size: 12px;
    text-align: right;
    padding: 13px 13px 17px 13px;
    background-color: #fff;
    box-shadow: 0 1px 2px #ccc;
}

    .imgPolaroid img {
        margin-bottom: 12px;
    }

/*------------------------------------------------*/
/* lIST STYLE */
/*------------------------------------------------*/


/* Ordered List */
ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
    vertical-align: top;
}

ol ol {
    margin-top: 8px;
    margin-right: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}

/*------------------------------------------------*/
/* TABLE STYLE */
/*------------------------------------------------*/

/* Default Table Style */
table.tableDefault {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

    table.tableDefault th,
    table.tableDefault td {
        font-size: 12px;
        padding: 8px;
    }

    table.tableDefault th {
        font-weight: bold;
        text-align: right;
        border-bottom: solid 2px #aaa;
        background-color: #d7d7d7;
    }

    table.tableDefault td {
        border-bottom: solid 1px #d9d9d9;
    }

    table.tableDefault tr:nth-child(odd) {
        background: transparent;
    }

    table.tableDefault tr:nth-child(even) {
        background: #e3e4e6;
    }

.tableDefault tbody tr:hover td {
    color: #111;
}

/*------------------------------------------------*/
/* FORM STYLE
/*------------------------------------------------*/
input[type="text"], select, textarea, input[type="email"], input[type="search"], input[type="password"] {
    padding: 9px;
    margin-bottom: 20px;
    background: #f3f3f3;
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -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: #666;
    font-size: 13px;
}

/*------------------------------------------------*/
/* BUTTONS STYLE */
/*------------------------------------------------*/
/* Primary Style Button (blue)*/
button.primaryButton,
a.primaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, right top, right bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Secondary Style Button (darkgray) */
button.secondaryButton,
a.secondaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #666;
    background: -moz-linear-gradient(top, #8a8a8a 0%, #8a8a8a);
    background: -webkit-gradient(linear, right top, right bottom, from(#8a8a8a), to(#8a8a8a));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Alternative Style Button (darkgray with arrow) */
button.altButton,
a.altButton {
    display: inline-block;
    padding: 9px 22px 9px 32px;
    margin-bottom: 5px;
    background: #484848 url("/Portals/_default/Skins/Gravity/images/arrow.rtl.png") no-repeat 87% center;
    background: url("/Portals/_default/Skins/Gravity/images/arrow.rtl.png") no-repeat 87% center, -moz-linear-gradient(top, #3d3d3d 0%, #3d3d3d);
    background: url("/Portals/_default/Skins/Gravity/images/arrow.rtl.png") no-repeat 87% center, -webkit-gradient(linear, right top, right bottom, from(#3d3d3d), to(#3d3d3d));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffbf00;
    -moz-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    -webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

a.dnnPrimaryAction {
    color: #efefef;
}

a.dnnSecondaryAction {
    color: #555;
}

button.primaryButton:hover,
button.secondaryButton:hover,
a.primaryButton:hover,
a.secondaryButton:hover {
    cursor: pointer;
    cursor: hand;
    background-image: none;
    background-color: #D00;
}

button.altButton:hover,
a.altButton:hover {
    cursor: pointer;
    cursor: pointer;
    background: #D00 url("/Portals/_default/Skins/Gravity/images/arrow.rtl.png") no-repeat 87% center;
}

/*------------------------------------------------*/
/* SITE SPACING
/*------------------------------------------------*/
.spacingTop {
    margin-top: 30px;
}

.spacingRight {
    margin-left: 30px;
}

.spacingBottom {
    margin-bottom: 30px;
}

.spacingLeft {
    margin-right: 30px;
}

/*------------------------------------------------*/
/* SITE STRUCTURE */
/*------------------------------------------------*/
#userControls {
    height: 32px;
}
#userControls .language {
    min-height:0!important;
    display:inline;
}
.wrapper {
    margin: 0 Auto;
    width: 980px;
}

/*------------------------------------------------*/
/* SEARCH */
/*------------------------------------------------*/
#search {
    float: left;
    width: 209px;
    height: 32px;
}

    #search a.SearchButton:link,
    #search a.SearchButton:visited {
        display: inline-block;
        float: left;
        height: 32px;
        width: 32px;
        margin: 0;
        padding: 0;
        background: #333 url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center;
        text-indent: -9999px;
    }



    #search a.SearchButton:hover {
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, rgb(45,45,45); /* Old browsers */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, -moz-linear-gradient(top, rgba(45,45,45,1) 0%, rgba(86,86,86,1) 100%); /* FF3.6+ */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, -webkit-gradient(linear, right top, right bottom, color-stop(0%,rgba(45,45,45,1)), color-stop(100%,rgba(86,86,86,1))); /* Chrome,Safari4+ */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, -webkit-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Chrome10+,Safari5.1+ */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, -o-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Opera 11.10+ */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, -ms-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* IE10+ */
        background: url("/Portals/_default/Skins/Gravity/images/search.rtl.png") no-repeat center center, linear-gradient(to bottom, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* W3C */
    }

#dnn_dnnSearch_txtSearch {
    display: block;
    float: right;
    width: 160px;
    height: 32px;
    padding: 0 10px 0 5px;
    margin: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-right: 1px solid #ddd;
    color: #000;
    line-height: 32px;
    font-size: 11px;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

    #dnn_dnnSearch_txtSearch:active, #dnn_dnnSearch_txtSearch:focus {
        background: #ccc;
        box-shadow: inset 0px 3px 8px #999;
    }

/*------------------------------------------------*/
/* LOGIN */
/*------------------------------------------------*/
/*#login {
    float: left;
}*/

    #login .registerGroup,
    #login .registerGroup *,
    #login .loginGroup,
    #login .loginGroup * {
        display: block;
    }

    #login .registerGroup,
    #login .loginGroup {
        float: left;
        padding: 0;
        margin: 0;
    }

        #login .registerGroup li:first-child:hover {
            border-right: #222;
        }

        /* Register Group Styles */
        #login .registerGroup li {
            float: right;
        }

        #login .registerGroup .buttonGroup {
            margin: 0;
        }

        #login .registerGroup a,
        #login .loginGroup a {
            display: block;
            position: relative;
            height: 25px;
            min-width: 12px;
            padding: 7px 15px 0 15px;
            color: #333;
            font-size: 11px;
            vertical-align: middle;
        }

            #login .registerGroup a:hover,
            #login .loginGroup a:hover {
                background: rgb(45,45,45); /* Old browsers */
                background: -moz-linear-gradient(top, rgba(45,45,45,1) 0%, rgba(86,86,86,1) 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,rgba(45,45,45,1)), color-stop(100%,rgba(86,86,86,1))); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* IE10+ */
                background: linear-gradient(to bottom, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* W3C */
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d2d2d', endColorstr='#565656',GradientType=0 ); /* IE6-9 */
                color: #ddd;
                text-shadow: 0px -1px 0px #333333;
            }

            #login .registerGroup a:active,
            #login .loginGroup a:active {
                color: #fff;
                text-shadow: 0px -1px 0px #333333;
            }

            #login .registerGroup a:hover,
            #login .loginGroup a:hover {
                text-decoration: none;
            }

            #login .registerGroup a strong,
            #login .loginGroup a strong {
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                width: 100%;
                overflow: hidden;
                font-size: 11px;
                text-indent: -9999px;
            }

    #login .userMessages a,
    #login .userNotifications a {
        background-color: #333;
    }

    #login .userMessages strong {
        height: 100%;
        background: url("/Portals/_default/Skins/Gravity/images/icon_message.png") no-repeat center center;
    }

    #login .userNotifications {
        border-left: 1px solid #CCC;
    }

        #login .userNotifications strong {
            height: 100%;
            background: url("/Portals/_default/Skins/Gravity/images/icon_notification.rtl.png") no-repeat center center;
        }

    #login .registerGroup a span {
        display: inline-block;
        position: absolute;
        left: 2px;
        top: -9px;
        min-width: 7px;
        margin-left: 3px;
        background: rgb(59,150,182); /* Old browsers */
        text-align: center;
        font-size: 11px;
        color: #fff;
        text-shadow: 0px 1px 0px #333333;
    }

    #login .registerGroup .userProfileImg a {
        min-width: 25px;
        min-height: 32px;
        padding: 0;
        background: none;
    }

    #login .registerGroup a img {
        height: 32px;
        width: 32px;
        background: #333;
    }

    /* Login Group Styles */
    #login .loginGroup {
        border-left: 1px solid #CCC;
    }

        #login .loginGroup a {
            color: #333;
        }

    /* Number of message next to the message icon*/
    #login .userMessages a span,
    #login .userNotifications a span {
        display: inline-block;
        margin-top: 9px;
        margin-left: 0px;
        background-color: transparent;
        font-size: 10px;
    }

/*------------------------------------------------*/
/* SITE HEADER */
/*------------------------------------------------*/
#siteHeadouter {
    background: #fff;
    /* CSS3 */
    -webkit-box-shadow: 1px 50px 100px 0px #cacaca;
    box-shadow: 1px 50px 100px 0px #cacaca;
}

#siteHeadinner {
    padding: 36px 0;
}

#logo {
    float: right;
}

/* Language */
.language .language-object {
    /*float: left;*/
    display: inline-block;
    margin: 0;
    padding: 0;
}

    .language .language-object span {
        float: right;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-right: 5px;
        margin: 0;
    }

        .language .language-object span:first-child {
            padding-right: 8px;
        }

        .language .language-object span img {
            height: 12px;
            width: 17px;
            opacity: 0.3;
        }

        .language .language-object span:hover img {
            opacity: 1;
        }

    .language .language-object .Language.selected img {
        opacity: 1;
        border-color: #222;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
        box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
    }

/*------------------------------------------------*/
/* NAVIGATION */
/*------------------------------------------------*/

/* for Simple Menu, see Simple menu folder */

    .navbar{margin-bottom:0!important;}
    .navbar-inner{border:none!important; box-shadow:none!important; background:none transparent!important; padding-left:0!important;}
        .navbar .brand {padding:0!important;}

    /* Site Navigation */
    .nav-collapse {
	    float: left;
	    position:relative;
	    top: 18px;
    }
	
    .nav li { 
		position:relative; 
		list-style:none;
		margin: 0;
	}
	
    .nav li ul {
		margin-right:0;
	}
	
    .nav > li {
		float:right;
		height:30px;
		padding-top:5px;
		margin-left:2px;
	}
	
    .nav > li > a,
    .nav > li > span {
		display:block;
		padding:5px 15px 5px 0;
		font-size:14px;
		font-weight:bold;
		color:#666;
		text-decoration:none;		
	}
	
    .nav > li:hover > a,
    .nav > li.active > a  {
        color:#3B96B6;
        /* override default bootstrap nav pills styles*/
        background-color:transparent!important;
        box-shadow:none!important;
    }
    .nav > li:hover > a:active { color:#3B96B6;}
    .nav > li:hover > span { color:#3B96B6;}

    .nav > li > a .caret.hidden-desktop{
        border:none!important;
        background-image:url("/Portals/_default/Skins/Gravity/bootstrap/img/glyphicons-halflings-white.png");
        background-color:#333;
        background-position:-305px -110px!important;
        width:30px!important; line-height:30px!important; min-height:30px!important; height:auto;
        display:inline-block;
        margin:0!important;
        border-radius:3px;
    }
    .nav > li > a .caret.hidden-desktop:hover {
        background:url("/Portals/_default/Skins/Gravity/bootstrap/img/glyphicons-halflings-white.png") -305px -110px, linear-gradient(to bottom, #2D2D2D 0%, #565656 100%)!important;
    }

	/* Secondary level */
    .nav > li ul {  /* Styles for all sub levels */
		top:35px; 
		right:0; 
		padding: 15px 5px;
		display:none;
		position:absolute;
		z-index: 2;
		width:225px;
		background:#F5F7F7;
		border: 1px solid #cbcbcb;
		/* CSS3 */
		border-radius: 0px;
		/*box-shadow:inset 0px 1px 0px 0px rgba(255,255,255,1), 0px 0px 3px rgba(0,0,0,0.15);*/
		-webkit-box-shadow:  0px 2px 5px 0px rgba(0, 0, 0, 0.4);
		box-shadow:			 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
		-webkit-animation-duration: .25s;
		-webkit-animation-delay: .2s;
		-webkit-animation-timing-function: ease;
		-webkit-animation-fill-mode: both;
		-moz-animation-duration: .25s;
		-moz-animation-delay: .2s;
		-moz-animation-timing-function: ease;
		-moz-animation-fill-mode: both;
		-ms-animation-duration: .25s;
		-ms-animation-delay: .2s;
		-ms-animation-timing-function: ease;
		-ms-animation-fill-mode: both;
		animation-duration: .25s;
		animation-delay: .2s;
		animation-timing-function: ease;
		animation-fill-mode: both;
		
	}
	
    .nav-collapse:not(.in) .nav li:hover > ul { 
		display:block;
	}
    .nav-collapse .nav li > iframe{ display: none;z-index: 1 !important;}
    .nav-collapse:not(.in) .nav li:hover > iframe{ display: block;}

    .navbar .nav > li > .dropdown-menu:before{
        border:none!important;
    }
	
    .navbar .nav > li > .dropdown-menu:after {
		position:absolute!important;
		top:-15px!important; 
		right:20px!important;
		content:''!important;
		width:0px!important; 	
		height:0px!important; 
		border-right:15px solid transparent!important;  /* right arrow slant */
		border-left:15px solid transparent!important; /* left arrow slant */
		border-bottom:15px solid #F5F7F7!important; /* bottom, add background color here */
		font-size:0px!important;
		line-height:0px!important;
	}

    .nav .dropdown-menu > .active > a,
    .nav .dropdown-menu > .active > a:focus {
        background-color:transparent!important;
        background-image:none!important;
        color:#3B9FBF!important;
        outline:none;
    }
    .nav .dropdown-menu a {
		display:block;
		padding: 3px 15px;
		color:#3B9FBF;
		font-size: 13px;
		font-weight: normal;
		text-decoration:none;
		/* transition decleration */
		transition: 		all ease-in 100ms;
		-moz-transition: 	all ease-in 100ms; /* Firefox 4 */
		-webkit-transition: all ease-in 100ms; /* Safari and Chrome */
		-o-transition: 		all ease-in 100ms; /* Opera */
		-ms-transition: 	all ease-in 100ms; /* IE9? */
	}
    .nav .dropdown-menu > li > a:hover,
    .nav .dropdown-menu > .active > a:hover{
        background-color:transparent!important;
        background-image:none!important;
        color:#DD0000!important;
    }
    .nav-collapse:not(.in) .nav .dropdown-menu{
        border-radius:0!important;
    }
    .nav > li > ul li:hover {
		color:#D00;
		background: #F5F7F7;
	}
	
	/* Tertiary level */
    .nav li ul li ul {
		right:225px; 
		top:-8px;
		padding: 15px 5px;
		border-right: 1px solid #ddd;
	}

    /* Navigation button on mobile size */
    .nav-collapse.in {
        width:100%;
    }
    .navbar .btn-navbar {
        background-color: #333333!important;
        background-image: linear-gradient(to bottom, #333333, #333333)!important;
        cursor:pointer;
        margin-top:10px!important;
    }
    .navbar .btn-navbar:hover,
    .navbar .btn-navbar:active {
        background:linear-gradient(to bottom, #2D2D2D 0%, #565656 100%)!important;
    }


/*------------------------------------------------*/
/* BREADCRUMBS */
/*------------------------------------------------*/
#Breadcrumb {
    padding-top: 20px;
    padding-bottom: 12px;
    margin-bottom: 25px;
    border-bottom: solid 1px #c0c0c0;
}

    #Breadcrumb img {
        margin-right: 10px;
        margin-left: 10px;
    }

    #Breadcrumb a.breadcrumbLink:link,
    #Breadcrumb a.breadcrumbLink:visited {
        color: #666;
        font-size: 12px;
        font-weight: bold;
    }

    #Breadcrumb a.breadcrumbLink:hover {
        color: #3B96B6;
    }

/*------------------------------------------------*/
/* CONTENT PANES */
/*------------------------------------------------*/
.contentPane {
}

/* Content Pane - Home */
/* Removed for Bootstrap
.leftPane {
    float: right;
    width: 630px;
}

.sidebarPane {
    float: left;
    width: 320px;
}
*/

/* Content Pane - 2 columns */
/* Removed for Bootstrap
.twoColRightPane {
    float: left;
    width: 260px;
}

.twoColLeftPane {
    float: right;
    width: 690px;
}

.leftPaneLowerLeft {
    float: right;
    width: 400px;
}

.leftPaneLowerRight {
    float: left;
    width: 260px;
}
    */

/* Content Pane - 3 columns */
.threeColLeftPane,
.threeColCenterPane,
.threeColRightPane {
    float: right;
    width: 306px;
}

/* Content Pane - 3 columns Social */
.threeColSocialLeftPane {
    float: right;
    width: 110px;
}

.threeColSocialCenterPane {
    float: right;
    position: relative;
    width: 560px;
}

.threeColSocialRightPane {
    float: right;
    width: 250px;
}

/* Content Pane - Footer */
#footer {
    /*clear: both;*/
    height: 230px;
    margin-top: 70px;
    background: url("/Portals/_default/Skins/Gravity/images/globe.png") no-repeat;
}
/* Removed for Bootstrap

.footerPane {
    float: right;
    width: 136px;
}

    .footerPane,
    .footerPane .Normal {
        color: #808080;
    }

.footerPaneRight {
    float: left;
}
*/

/* Empty Panes */
.DNNEmptyPane {
    width: 0;
    margin: 0;
}

    .DNNEmptyPane.rightTwoCol + div {
        width: 100%;
    }

/* Copyright
    -------------------------------------*/
#copyright {
    font-size: 12px;
    color: #a6a6a6;
    margin-bottom: 25px;
}

    #copyright a:link,
    #copyright a:visited {
        font-size: 12px;
        color: #a6a6a6;
    }

    #copyright a:hover {
        color: #D00;
    }

    #copyright a.DNNMobileLink {
        color: #666;
        font-weight: bold;
    }

        #copyright a.DNNMobileLink:hover {
            color: #D00;
        }

    #copyright .pull-right {
        text-align:left;
    }

/*------------------------------------------------*/
/* SOCIAL STYLE */
/*------------------------------------------------*/
/* ----------------------------------*/
/* DNN Module: Console */
/* ----------------------------------*/
.threeColSocial .console {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.threeColSocial .console-none div {
    cursor: pointer;
    cursor: pointer;
    float: right;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: right;
}

.threeColSocial .console-none h3 {
    padding: 10px 40px 10px 8px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Portals/_default/Skins/Gravity/images/arrow.rtl.png") 95% center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.threeColSocial .console-none div div {
    display: none;
}

.threeColSocial .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}

/* ----------------------------------*/
/* DNN Module: ViewProfile Image */
/* ----------------------------------*/
#UserProfileImg img {
    width: 100px;
    height: auto;
    border: solid 3px #fff;
}

.threeColSocial .UserProfileControls ul {
    margin: 15px 0;
}

    .threeColSocial .UserProfileControls ul li {
        list-style-type: none;
        margin-bottom: 3px;
    }

/* ----------------------------------*/
/* DNN Module: Member Directory (Send A Message, Follow, Subscribe) */
/* ----------------------------------*/
.threeColSocialRightPane .DnnModule #mdMemberList {
    margin: 0 0 30px 0;
}

.threeColSocialRightPane #mdMemberList ul {
    margin: 10px 0 0 0;
}

.threeColSocialRightPane #mdMemberList li {
    margin-bottom: 0;
    -size: 12px;
    font-weight: bold;
    list-style-type: none;
}

.threeColSocialRightPane #mdMemberList > li {
    width: 216px;
    margin: 0;
    padding: 6px 17px;
    background: #d7d7d7;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background 0.15s ease-in-out;
    -moz-transition: background 0.15s ease-in-out;
    -o-transition: background 0.15s ease-in-out;
    -ms-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

    .threeColSocialRightPane #mdMemberList > li:hover {
        z-index: 2; /*bring current li to top for tooltip */
        background: #d7d7d7;
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    }

/* ----------------------------------*/
/* DNN Module: ViewProfile (Activity Feed) */
/* ----------------------------------*/
.threeColSocial .journalTools {
    max-width: 560px;
}

.threeColSocial .journalrow {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
    margin-bottom: 20px;
}

.threeColSocial .journalfooter {
    padding: 0;
    margin: 0;
}

.threeColSocial .journalrow div.journalitem p.journalfooter {
    font-size: 12px;
    padding: 0;
    margin-bottom: 0;
}

.threeColSocial .journalrow div.journalitem ul.jcmt {
    font-size: 12px;
}

.threeColSocial .journalrow div.journalitem .likes {
    padding: 2px 5px;
    background-color: #dbdbdb;
}

#journalEditor #journalContent .juser, .journalrow .juser {
    border: none;
    color: #3B96B6;
    background-color: transparent;
}

/* ----------------------------------*/
/* DNN Module: ViewProfile (Message) */
/* ----------------------------------*/
.threeColSocial #UserDisplayNameHeader h2 {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
}

/* dnnAdminTabNav Style*/
.threeColSocial #smMainContent .ui-corner-all {
    border-radius: 0;
}

.threeColSocial ul.dnnAdminTabNav {
    height: 38px;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial ul.dnnAdminTabNav li {
        margin-left: 1px;
    }

        .threeColSocial ul.dnnAdminTabNav li a {
            padding: 10px 15px;
            margin-bottom: 0px;
            border: none;
            background: #d7d7d7;
            -webkit-border-radius: 1px 0px 0px 1px;
            border-radius: 1px 0px 0px 1px;
            -webkit-border-radius: 0px;
            border-radius: 0px;
            color: #666;
            font-size: 12px;
            font-weight: bold;
            text-shadow: none;
        }

            .threeColSocial ul.dnnAdminTabNav li a:hover {
                background: #484848;
                color: #eee;
            }

        .threeColSocial ul.dnnAdminTabNav li.ui-tabs-active a {
            padding: 10px 15px;
            margin-top: 0px;
            background: #484848;
            color: #eee;
        }

/* Message & Notification number block*/
.threeColSocial .dnnAdminTabNav a span {
    display: inline;
    min-height: 12px;
    padding: 2px 6px;
    margin-left: 8px;
    background: rgb(59,150,182); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
    background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
    color: #eee;
    font-weight: normal;
    font-size: 11px;
}

/* Compose new message link */
.threeColSocial .dnnFormExpandContent {
    position: absolute;
    top: -40px;
    left: 0;
    height: 20px;
    font-size: 12px;
}

    .threeColSocial .dnnFormExpandContent a.ComposeMessage {
        font-size: 12px;
    }

/* compose button */
.threeColSocial a.dnnPrimaryAction {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, right top, right bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

    .threeColSocial a.dnnPrimaryAction:hover,
    .threeColSocial a.dnnPrimaryAction:active {
        cursor: pointer;
        cursor: hand;
        background-image: none;
        background-color: #D00;
    }

/* Message Control (Select, Actions, Inbox, Sent, Archived)*/
.threeColSocial .DnnModule .messageControls .dnnButtonGroup {
    margin-left: 0px; /* fixed Archived Button spacinging issue */
}

.threeColSocial .messageControls {
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .messageControls .messageFolders {
        float: left;
    }

/* number x-x of x */
.threeColSocial .messageFolders p {
    float: right;
    display: inline-block;
    padding: 8px 15px;
    margin: 0;
    color: #666;
    font-size: 12px;
}

    .threeColSocial .messageFolders p strong {
        color: #666;
        font-weight: bold;
    }

/* Messages / Notification Specific Button Styles
    -------------------------------------*/
/* Style for the Action menu bar*/
.threeColSocial .DnnModule-Messaging-Notifications .dnnTertiaryAction {
    width: auto!important;
    padding: 9px 10px;
    font-size: 12px;
}

/* Styles for select drop*/
.threeColSocial .DnnModule .selectDrop ul {
    top: 34px;
    min-width: 120px;
    padding: 10px 14px!important;
    border: 1px solid #c2c2c2;
    background: #e7e7e7;
    /*CSS3*/
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
}

/* Styles for select button on active state*/
.threeColSocial .selectDrop.active > a {
    background: #70b1c7;
    color: #eee;
    border-left: solid 0px #3B96B6;
    -webkit-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    -moz-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    box-shadow: inset 0px 1px 1px 0px #3B96B6;
}

/* when select drop down button is clicked toggle active class to show*/
.threeColSocial .selectDrop ul li {
    margin-bottom: 3px;
    font-size: 12px;
}

/* Remove corners and add dividers to buttons in button group */
.threeColSocial .dnnButtonGroup {
    background: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    list-style: none;
}

.threeColSocial ul.dnnButtonGroup > li {
    border-right: none;
}

.threeColSocial .dnnButtonGroup > li > a {
    border-right: 1px solid #ddd; /*light*/
    border-left: 1px solid #bbb; /*dark*/
    background-color: #d7d7d7;
    color: #666;
}

    /* Conversations button selected*/
    .threeColSocial .dnnButtonGroup > li > a.active {
        color: #eee;
        border-left: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

    /* Actions button hover*/
    .threeColSocial .dnnButtonGroup > li > a.disabled:hover {
        color: #eee;
        border-right: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

/* Select button hover */
.threeColSocial .alpha > a:hover {
    color: #eee;
    background-color: #70b1c7;
    border-left: 1px solid #3B96B6;
}

/*First Button styles of a button group */
.threeColSocial .alpha > a,
.threeColSocial .alpha > a:hover,
.threeColSocial .alpha > a.active {
    border-right: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*Last Button styles of a button group */
.threeColSocial .omega > a,
.threeColSocial .omega > a:active,
.threeColSocial .omega > a.active {
    border-left: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Archive Button */
.threeColSocial a.dnnSecondaryAction.ArchiveItems span {
    display: none; /* hide Archive text*/
}

.threeColSocial a.dnnSecondaryAction.ArchiveItems {
    height: 18px;
    min-width: 15px;
    margin-right: 5px;
    background: #d7d7d7 url("/Portals/_default/Skins/Gravity/images/icon_bin.png") no-repeat center center;
    border-radius: 0;
    -webkit-box-shadow: none;
    text-shadow: none;
    box-shadow: none;
    color: #666;
    border: none;
}

    .threeColSocial a.dnnSecondaryAction.ArchiveItems:hover {
        background: #70b1c7 url("/Portals/_default/Skins/Gravity/images/icon_bin.png") no-repeat center center;
    }

/*Archive, Sent, Archived buttons Hover*/
.threeColSocial .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
    background-color: #70b1c7;
    color: #eee;
}

/* Messages / Notification List Item
    -------------------------------------*/
/* Listing Styles */
.threeColSocial .smListings {
    font-size: 12px;
}

.threeColSocial .DnnModule .smListings ul {
    margin: 0;
}

.threeColSocial .smListings > ul > li {
    padding-top: 10px;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .smListings > ul > li.active {
        background: #f4f4f4; /* background color for active list items*/
    }

    .threeColSocial .smListings > ul > li:last-child {
        border-bottom: none;
    }

.threeColSocial .smListings [class^="ListCol-"] {
    padding: 1% 0 1% 1%;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-1 {
    min-width: 20px; /* Main message list: Checkbox column width on */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-2 {
    min-width: 65px; /* Main message list: Avatar column width AND Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-3 {
    width: 56%; /* Main message list: Message info column width AND Drilldown message list: Time column width */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 {
    font-size: 11px; /* Main message list: Time column */
}

.threeColSocial .smTimeStamped {
    font-size: 11px;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-1 {
    min-width: 65px; /* Drilldown message list: Avatar column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-2 {
    width: 56%; /* Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 {
    float: left; /* Drilldown message list: Time column */
    width: 25%;
    font-size: 12px;
}

.threeColSocial .hoverControls a {
    font-size: 12px; /* All lists: Archive & Reply links */
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .meta {
    margin-bottom: 5px; /* Drilldown message list: UserName link */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .meta a {
        font-weight: bold; /* Drilldown message list: UserName link */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .message {
    color: #999; /* Drilldown message list: Message text */
    margin: 0;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .subject {
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .subject {
    font-size: 13px; /* All lists: unread message subject */
    margin-bottom: 3px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .meta {
    margin-bottom: 8px; /* All lists: message From - Send to */
    line-height: 14px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .message {
    color: #999; /* All lists: Message text */
}

/*Column 3 Styles*/
.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li {
    margin-bottom: 0px; /* Drilldown message list: Time column */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li:first-child {
        color: #999; /* Drilldown message list: Time column */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-right: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-right: 8px; /* Main message list: Time column-Mark as Read block hover */
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }
/*Column 4 Styles*/
.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li {
    margin-bottom: 0px; /* All lists: Time column */
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li:first-child {
        color: #999; /* All lists: Time column */
    }

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-right: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-right: 8px; /* Main message list: Time column-Mark as Read block hover*/
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }

.threeColSocial .DnnModule-Messaging-Notifications .notificationControls {
    font-weight: bold; /* Main notifications list: Follow back & Dismiss links */
}

/* Message Header (subject & back button)
    -------------------------------------*/
.threeColSocial .messageHeader {
    padding: 0;
    margin: 0;
}

    .threeColSocial .messageHeader p {
        font-size: 13px;
        color: #666;
        float: right;
    }

        .threeColSocial .messageHeader p strong {
            color: #333;
        }

    .threeColSocial .messageHeader .returnLink {
        font-size: 12px;
        font-weight: bold;
    }

/* Show Previous Repies 
    -------------------------------------*/
.threeColSocial .morePrevMsgButton {
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border: solid 1px #c0c0c0;
    background: #d7d7d7;
    -webkit-box-shadow: inset 0px 0px 3px 0px #ccc;
    -moz-box-shadow: inset 0px 0px 3px 0px #ccc;
    box-shadow: inset 0px 0px 3px 0px #ccc;
}

/* Reply Form
    -------------------------------------*/
.threeColSocial textarea#replyMessage {
    width: 94%;
    height: 75px;
    color: #666;
    border: 1px solid #c0c0c0;
    background: #f4f4f4;
}

    .threeColSocial textarea#replyMessage:focus,
    .threeColSocial textarea#replyMessage:active {
        color: #666;
        background: #fff;
    }

/*------------------------------------------------*/
/* GENERIC CLASSES
    /*------------------------------------------------*/

/* Clear-fix for floated elements 
    -------------------------------------*/
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.right {
    float: left;
}

.left {
    float: right;
}

/*------------------------------------------------*/
/* HOMEPAGE */
/*------------------------------------------------*/

/* Welcome Message*/
.content_intro {
    padding-top: 30px;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

    .content_intro h1 span {
        font-weight: normal;
    }

    .content_intro a {
        font-size: 14px;
    }

/* Featured Product */
.content_featured {
    color: #999;
    vertical-align: top;
}

    .content_featured h2 .TitleH2 {
        display: block;
        margin-bottom: 30px;
    }

    .content_featured .normal {
        font-weight: normal;
    }

    .content_featured img {
        margin-bottom: 25px;
    }

    .content_featured a.primaryButton {
        margin-right: 25px;
    }

/* News */
.content_newslist ul {
    margin: 0;
}

    .content_newslist ul li {
        display:block;
        list-style-type: none;
        margin-bottom: 30px;
    }
    .content_newslist ul li:after {
        clear: both;
        content: ' ';
        display: block;
        font-size: 0;
        line-height: 0;
        visibility: hidden;
    }

        .content_newslist ul li.last {
            margin-bottom: 0;
        }

        .content_newslist ul li img {
            float: right;
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .content_newslist ul li h5 {
            margin-bottom: 5px;
        }

        .content_newslist ul li span,
        .content_newslist ul li strong {
            color: #a6a6a6;
        }

        .content_newslist ul li p {
            margin-top: 12px;
            margin-bottom: 12px;
        }

/* newslist with small thumbnail*/
.smallThumbnail img {
    width: 80px;
}

/* Ads 
    -------------------------------------*/
/* Ads - Copy Block Style */
.adContent {
    position: absolute;
    padding: 20px;
    background-color: #000;
    opacity: 0.7;
    color: #eee;
}

    .adContent h2 {
        margin-bottom: 5px;
        color: #eee;
        font-weight: normal;
    }

/* Ads - Style One: 400x270 */
/*  rewritten for Bootstrap
    .content_adstyleOne {
    position: relative;
    width: 400px;
    height: 270px;
    margin-left: 5px;
    color: #eee;
}*/
.content_adstyleOne {
    position: relative;
    margin-left: 0px;
    margin-bottom:18px;
    color: #eee;
}

    .content_adstyleOne .adContent {
        bottom: 0;
        left: -2%;
    }

/* Ads - Style Two: 570x130 */
/*  rewritten for Bootstrap
.content_adstyleTwo {
    position: relative;
    width: 570px;
    height: 130px;
    margin-bottom: 10px;
} */
.content_adstyleTwo {
    position: relative;
    margin-bottom: 18px;
}
    .content_adstyleOne img,
    .content_adstyleTwo img{width:100%;}

    .content_adstyleOne img{bottom:0; width:102%!important; max-width:102%;}

    .content_adstyleTwo .adContent {
        top: 0;
    }
    .content_adstyleTwo h2 {
        line-height:1;
    }

/* Footer 
    -------------------------------------*/
ul.footerlinks {
    margin: 0;
}

.footerlinks li {
    list-style: none;
    margin-bottom: 8px;
}

    .footerlinks li a:link,
    .footerlinks li a:visited {
        color: #808080;
    }

    .footerlinks li a:hover {
        color: #D00;
    }

ul.footerConnect {
    margin: 0px;
}

    ul.footerConnect li {
        display: inline-block;
        list-style-type: none;
        margin-left: 10px;
    }

/*------------------------------------------------*/
/* ABOUT US */
/*------------------------------------------------*/
/* Team 
    -------------------------------------*/
    .content_team  ul{ margin: 0 -12px; }

    .content_team  ul li {
	    display: inline-block;
	    width: 14%;
        margin:0 2% 40px 0;	
	    text-align: center;
	    list-style-type: none;
	}

    /*.content_team  ul li.last { margin-left: 0; }*/

    .content_team  ul li .teampic {
	    background-color: #bfbfbf;
    }

    .content_team  ul li img {
	    width: 100%;
    }

    .content_team  ul li span {
	    display: block;
	    font-weight: bold;
	    white-space: nowrap; 
    }

/*------------------------------------------------*/
/* OUR PRODUCTS */
/*------------------------------------------------*/

/* replaced with responsive CSS
    .content_products ul {
    margin: 0;
}

    .content_products ul li {
        display: inline-block;
        width: 31%;
        margin-left: 30px;
        margin-bottom: 45px;
        vertical-align: top;
        list-style-type: none;
    }

        .content_products ul li.last {
            margin-left: 0;
        }

        .content_products ul li img {
            margin-bottom: 25px;
        }*/
    .content_products ul { margin: 0 -1%; }

    .content_products ul li {
	    display: inline-block;
        width: 31.1%;
	    margin:0 1% 45px;
	    vertical-align: top;
	    list-style-type: none;
    }
    .content_products ul li p{ min-height: 72px;}
    /*.content_products ul li.last { margin-left: 0; }*/
    .content_products ul li img { margin-bottom: 25px; max-width:100%; width:100%;}

/*------------------------------------------------*/
/* CONTACT US */
/*------------------------------------------------*/
/* One Column Form
-------------------------------------*/
.form_oneCol label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form_oneCol input, .form_oneCol textarea {
    width: 94%;
}

/* Dealer Form 
    -------------------------------------*/
.form_dealer input {
    width: 200px;
    margin-bottom: 5px;
}

/*------------------------------------------------*/
/* Slide jquery
/*------------------------------------------------*/
#container {
    position: relative;
    z-index: 0;
    width: 980px;
    padding: 0px;
    margin: 0 auto;
}

#example {
    position: relative;
    width: 980px;
    height: 380px;
}

/* Slide -*/
#slides {
    position: absolute;
    z-index: 9;
    top: 0px;
    right: 0px;
}

.slides_container {
    display: none;
    position: relative;
    width: 980px;
    overflow: hidden;
}

    .slides_container a {
        display: block;
        width: 980px;
        height: 380px;
    }

        .slides_container a img {
            display: block;
        }

/* Next/Prev buttons 
    -------------------------------------*/
#slides .next, #slides .prev {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 9px;
    right: 12px;
    padding: 0;
    z-index: 12;
}

#slides .prev {
    background: transparent url("/Portals/_default/Skins/Gravity/images/right-arrow.png") center center no-repeat;
}

#slides .next {
    right: 96px;
    background: transparent url("/Portals/_default/Skins/Gravity/images/left-arrow.png") center center no-repeat;
}

/* Page link -*/
.pagination_wrap {
    display: inline-block;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 128px;
    height: 40px;
    opacity: 0.8;
    background-color: #222;
}

.pagination {
    position: absolute;
    z-index: 11;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 15px 40px;
}

    .pagination li {
        float: right;
        margin: 0 3px;
        list-style: none;
    }

        .pagination li a {
            float: right;
            display: block;
            width: 9px;
            height: 0;
            padding-top: 8px;
            background-image: url("/Portals/_default/Skins/Gravity/images/pagination.png");
            background-position: 0 0;
            overflow: hidden;
        }

        .pagination li.current a {
            background-position: 0 -9px;
        }


/* ****** BOOTSTRAP OVERRIDES ******* */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a{background-image:none!important; outline:none!important;}

/* remove min-height from bootstrap */
.row-fluid [class*='span']:not([class*='dnnSortable']) {
    min-height:0 !important;
}

/* Navbar */


/* Logo */
.brand.hidden-desktop {max-width:60%;}

.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {box-shadow:none!important; background-color:transparent!important; outline:none!important;}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {background-color:transparent!important; color:#D00!important; outline:none!important;}

.dropdown, .dropdown a {outline:none!important;}

.carousel-inner > a > img{max-width:100%!important;height:auto!important; width:100%!important;}
.carousel-inner img{max-width:100%!important;height:auto!important; width:100%!important;}
.carousel-control{top:auto!important; bottom:5%;}

.ControlContainer{width:940px!important;}

/* Media Queries */
/* Large desktop */
@media (min-width: 1200px) {
    select.status-options{display:none;}
    .ControlContainer{width:1170px!important;}
}
/* Portrait tablet to landscape and larger */
@media (min-width:768px){
    .carousel-control{ top:inherit; bottom:10px; height:20px; width:20px; border:none; border-radius:0; z-index:6; background-position:center center; background-repeat:no-repeat; background-color:transparent;}
    .carousel-indicators{ background:rgba(34, 34, 34,0.7); top:auto; bottom:0; padding:15px 30px 15px 35px; left:0; width:63px;}
    .carousel-indicators li{margin-bottom:0;}
    .carousel-control.left{ background-image:url("/Portals/_default/Skins/Gravity/images/left-arrow.png"); text-indent:-9999px; left:10px;}
    .carousel-control.right{ background-image:url("/Portals/_default/Skins/Gravity/images/right-arrow.png"); text-indent:-9999px; left:95px; right:auto;}

}
 
/* Portrait tablet to landscape and smaller */
@media (max-width: 979px) {
    .nav-collapse, .nav{width:100%;}
    .nav li {padding:0!important; min-height:30px!important; height:auto;}
    .nav-collapse .dropdown-menu { margin:0 4% 0 0!important; width:95%!important;}
    .nav-collapse .nav > li a,
    .nav-collapse .dropdown-menu a{padding:0 5px 0 0!important;line-height:30px!important; height:30px!important; border:1px solid #eee!important; margin-bottom:3px;}
    .nav-collapse .dropdown.open > a{background-color:#eee!important;}
    .nav > li > ul {position:relative!important; width:100%!important;}
    .nav{width:100%;}
    img {max-width:100%;}
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
    #Body{margin:0; padding:0;}
    #siteHeadouter > .container,
    #contentWrapper > .container{ width:94%; padding-right:2%; padding-left:2%;}
    .content_products ul li {width: 47.5%;}
    select.status-options{display:none;}
    .content_adstyleOne{ width:100%!important; max-width:100%;}
    .content_adstyleOne img{ width:103%!important; max-width:103%;}
    .content_adstyleOne .adContent {
        bottom: 0;
        left: -3%;
    }
    .content_adstyleOne,
    .content_adstyleTwo{
        margin-bottom:15px;
    }
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    #Body{margin:0; padding:0;}
    #siteHeadouter > .container,
    #contentWrapper > .container{ width:90%; padding-right:5%; padding-left:5%;}
    .content_products ul { margin: 0 -2%; }
    .content_products ul li {width: 45.5%; margin:0 2% 45px;}
    .adContent {padding-top:5px;}
    .adContent h2{font-size:18px;}
    .carousel-control{
        top:auto !important;
        bottom:20% !important;
    }
    .content_adstyleOne{ width:100%!important; max-width:100%;}
    .content_adstyleOne img{ width:100%!important; max-width:100%;}
    .content_adstyleOne .adContent {
        bottom: 0;
        left: 0%;
    }

}
 
/* Landscape phones and down */
@media (max-width: 480px) {
    #Body{margin:0; padding:0;}
    .content_products ul li {width: 98%;}
    .LoginPanel{width:90%!important;}

    /* DNN Social */
    .moduleSearch{width:inherit; float:none; padding-left:20px;}
        .moduleSearch input{ width:100%!important; margin-bottom:10px!important;}
        .moduleSearch > input[type="text"] + a { float:right; width:auto;}
    div.blog-list-title{width:inherit;}
    div[class*="status-container"]{padding:0 20px;}
    .link-wrap{display:none;}
    select.status-options{margin:20px 0;width:100%;}
    table.idea-list-table tbody td{padding:10px 5px!important;}
        .idea-list-vote-panel{width:auto;}
        .dnnSocialLink span{line-height:1; font-size:inherit;}
        .answer-list-tbl-container {padding:0;}
        table.answer-list-table td{padding-right:5px;}
        .status-expanded-container .profile-topContainer > .dnnRight > ul.profile-statistics > li {width:33%;}
        .status-expanded-container .profile-topContainer > .dnnRight > ul.profile-statistics{ width:200px;}
        .dnnSocialLink .profile-link {margin-top:50px;}
}

/* Container styles */

.DNNContainer_Title_h2 h2 .TitleH2 {
	display: block;
	margin-bottom: 25px;
}

.DNNContainer_Title_h3 h3 .TitleH3 {
	display: block;
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-bottom: solid 1px #c0c0c0;
}

.DNNContainer_Title_h4 h4 .TitleH4 {
	display: block;
	margin-bottom: 25px;
} 
.copyright-container{
	margin-bottom: 20px;
	text-align: center;
	background: url("/Portals/_default/Skins/Gravity/images/copyright-background.png") no-repeat center center;
}
.copyright-container a{
	color: #fff;
	font-family: Tahoma, Arial;
	font-size: 14px;
	background: url("/Portals/_default/Skins/Gravity/Images/icon-btn-sm-circle-arrow.png") no-repeat left 12px center;
	background-color: #aaaaaa;
	-webkit-border-radius: 3px;
    border-radius: 3px;
	margin: 0 12px;
	padding: 9px 16px 9px 36px;
}
.copyright-container a:hover{
	background-color: #666666;
}
.copyright-container > span.split{
	border-bottom: 1px solid #d9d9d9;
	display: inline-block;
	width: 20px;
	height: 0px;
	overflow: hidden;
	padding-top: 9px;
	vertical-align: top;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";

/* vietnamese */
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCP8zf_FOSsgRmwsS7Aa9k2w.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCD0LW-43aMEzIO6XUTLjad8.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCOgdm0LZdjqr5-oayXSOefg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCBUOjZSKWg4xBWp_C_qQx0o.woff2") format("woff2");
}
@font-face {
  font-family: "Francois One";
  font-style: normal;
  font-weight: 400;
  src: local("Francois One Regular"), local("FrancoisOne-Regular"), url("https://fonts.gstatic.com/s/francoisone/v10/bYbkq2nU2TSx4SwFbz5sCBa1RVmPjeKy21_GQJaLlJI.woff") format("woff");
}
.eds_news_NewsTwo {
  font-size: 12px;
  font-family: Arial;
}
.eds_news_NewsTwo * {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_NewsTwo h1, .eds_news_NewsTwo h2, .eds_news_NewsTwo h3 {
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
  letter-spacing: normal;
}
.eds_news_NewsTwo p {
  padding-bottom: 16px;
  margin: 0;
}
.eds_news_NewsTwo .edn_module_box, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list {
  margin: 0 0 10px 0;
  border: solid 2px #ebebeb;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title {
  background: #ebebeb;
  font-family: "Francois One", serif;
  font-size: 20px;
  line-height: 1.2;
  padding: 5px 10px;
  margin: 0px;
  letter-spacing: normal;
  font-weight: normal;
  color: #2f2f2f;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss {
  float: right;
  width: 12px;
  height: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rssEventsExportIcons/predefined/green_actions.png") no-repeat -26px 0;
  margin: 4px 0 0 5px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss.sidebar-news-module-rss, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss.sidebar-news-module-rss, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss.sidebar-news-module-rss {
  margin-top: 0;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss span, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss span, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss span {
  display: none;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .rss:hover, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .rss:hover, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .rss:hover {
  background-position: -26px -16px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export {
  float: right;
  width: 12px;
  height: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rssEventsExportIcons/predefined/green_actions.png") -13px 0;
  margin-top: 4px;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export span, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export span, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export span {
  display: none;
}
.eds_news_NewsTwo .edn_module_box > .edn_module_title .export:hover, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container > .edn_module_title .export:hover, .eds_news_NewsTwo.eds_subCollection_calendar .archive_list > .edn_module_title .export:hover {
  background-position: -13px -16px;
}
.eds_news_NewsTwo .eds_openModal {
  cursor: pointer;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud {
  margin: 0 0 20px 0;
  border: solid 2px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud > .edn_module_title {
  background: #ebebeb;
  font-family: "Francois One", serif;
  font-size: 20px;
  padding: 5px 10px;
  margin: 0px;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: normal;
}
.eds_news_NewsTwo .clear-content {
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none;
  -khtml-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.eds_news_NewsTwo.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/indicator.gif") !important;
  background-position: 85% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input {
  border: solid 2px #676767;
  background-color: #fff;
  height: 33px;
  position: relative;
  padding-left: 32px;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input > .input input[type="text"] {
  line-height: 33px;
  height: 33px;
  float: left;
  width: 100%;
  padding: 0 0 0 7px;
  border: none;
  color: #a9a8a8;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  box-shadow: none;
  margin: 0;
  background: none transparent;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input .do_search {
  float: left;
  width: 32px;
  height: 33px;
  display: block;
  background-color: transparent;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  border-style: none;
  border-width: 0;
  border-color: transparent;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input .do_search span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  background: none transparent !important;
  padding: 0;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside > .input input[type="text"] {
  line-height: 33px;
  height: 33px;
  float: left;
  width: 96%;
  padding: 0 0 0 2%;
  border: solid 2px #676767;
  background-color: #fff;
  color: #a9a8a8;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search {
  float: right;
  clear: both;
  width: 125px;
  height: 33px;
  display: block;
  background: #ebebeb url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png") no-repeat center right;
  border: solid 1px #676767;
  padding-left: 10px;
  position: relative;
  margin: 15px 3px;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search span {
  display: inline;
  line-height: 33px;
  font-size: 14px;
  color: #828282;
  font-family: Arial;
  font-weight: bold;
  text-shadow: 1px 1px 1px #fff;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_search .search_input.button_outside .do_search:hover {
  background-color: #f1f1f1;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch {
  border: 2px solid #EBEBEB;
  margin: 0 0 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch:after {
  content: "";
  clear: both;
  width: 100%;
  display: table;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title {
  background: #EBEBEB url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/advanced-search-title-icon.png") no-repeat 95% 4px;
  margin: 0;
  padding: 5px 10px;
  position: relative;
  line-height: 24px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edn_module_title > span {
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-weight: normal;
  letter-spacing: normal;
  padding: 0;
  text-transform: none;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 5px 10px 15px;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div + span {
  padding-top: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 28px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d4d4d4;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  color: #848484;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  -webkit-appearance: none;
  width: 116%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  color: #363636;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b5b5;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #ffffff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/select-pointer.png") no-repeat scroll right top;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  height: 30px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
  font-family: Arial;
  font-size: 12px;
  padding-left: 6px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  border-left: 1px solid #d4d4d4;
  bottom: 0;
  content: "";
  display: block;
  height: 28px;
  position: absolute;
  right: 28px;
  top: 0;
  width: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  margin-top: 1px;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
  font-size: 13px;
  color: #333;
  font-family: Arial;
  line-height: 1.3;
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #B5B5B5;
  margin: 2px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  content: "";
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat center center #72A819;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  margin: 0;
  font-size: 13px;
  color: #333;
  font-family: Arial;
  line-height: 1.3;
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label:before,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #B5B5B5;
  margin: 2px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName {
  font-weight: bold;
  font-family: Arial;
  font-size: 13px;
  color: #333;
  line-height: 2;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  padding: 2px 10px 2px 0;
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"] {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before {
  content: "";
  background: #72A819 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/radioButtons/predefined/checked.png") no-repeat center center;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 2px 10px 2px 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName {
  font-weight: bold;
  font-family: Arial;
  font-size: 13px;
  color: #333;
  line-height: 2;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"] {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  content: "";
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/advancedSearchForm/checkBoxes/predefined/cf-checkbox.png") no-repeat center center #72A819;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label > span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label > span {
  color: #333;
  font-family: Arial;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.3;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"] {
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff none;
  color: #848484;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 5px 2%;
  width: 95.9%;
  margin: 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  display: block;
  font-weight: bold;
  color: #333333;
  font-family: Arial;
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 9px;
  top: 5px;
  border-style: solid;
  border-width: 3px 4px;
  border-color: #e8e8e8;
  background-color: #d2d2d2;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.4) inset;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: none;
  background: none #87bf1f;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.2) inset;
  height: 9px;
  top: 8px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/rangeslider-pointer.png") no-repeat 0 0;
  width: 18px;
  height: 18px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 4px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #5e9700;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial;
  top: 26px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 20px;
  font: 10px/1 Arial;
  color: #777;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #fff none;
  color: #848484;
  font-family: "$defaultFont";
  font-size: 12px;
  line-height: 1.2;
  padding: 7px 2%;
  width: 100%;
  margin: 0;
  box-shadow: none;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #5e9700;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/search-icon.png") 0 0 no-repeat #e5e5e5;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  line-height: 33px;
  padding: 0 10px 0 37px;
  text-decoration: none;
  box-shadow: 1px 1px 1px #fff inset;
  margin-top: 10px;
  display: inline-block;
  transition: background 0.3s ease-in-out;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset span {
  font: 13px/1 Arial;
  text-shadow: 1px 1px 1px #fff;
  color: #333333;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover span {
  color: #000;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
  padding: 0 10px;
  margin-left: 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.8;
  width: 100%;
  z-index: 999;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-top: 25px;
  padding-bottom: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField:after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-top: -3px;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin-top: 0;
}
.eds_news_NewsTwo.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit {
  margin-left: 0;
}
.eds_news_NewsTwo .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsTwo .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul {
  padding: 0;
  margin: 0;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div {
  padding: 5px 0 4px 58px;
  border: solid 1px #fff;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div a {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .category {
  font-weight: normal;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: normal;
  display: inline;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .category:hover {
  color: #598f00;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li div .image {
  float: left;
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
  margin: 0 5px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.opened > div > a.category {
  color: #609509;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_0 div {
  padding-left: 6px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_1 div {
  padding-left: 12px;
  background: #f5f4f4;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_1 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_2 div {
  padding-left: 26px;
  background: #fcfafa;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_2 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_3 div {
  padding-left: 33px;
  background: #f5f5f5;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_3 div:hover {
  background: #eaeaea;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_4 div {
  padding-left: 40px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.level_5 div {
  padding-left: 47px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li.active > div > a.category {
  font-weight: bold;
  color: #609509;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .articlecount {
  font-weight: normal;
  padding: 0px 6px;
  background: #72a819;
  border-radius: 12px;
  float: right;
  color: #fff;
  font-size: 10px;
  margin-right: 4px;
  height: 19px;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .articlecount:hover {
  text-decoration: none;
  background: #a2a2a2;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/categoryMenuRssIcon/predefined/green_rss.png") no-repeat 0 0;
  float: left;
  width: 12px;
  height: 16px;
  text-indent: -9999px;
  margin: -2px 7px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .rss:hover {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 0;
  width: 19px;
  height: 19px;
  text-indent: -9999px;
  margin-right: 4px;
  cursor: pointer;
  display: inline-block;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_categoryMenu .edn_module_box ul li .expand_collapse.collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 -19px;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud {
  font-size: 0;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags {
  padding: 9px;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a {
  color: #737373;
  font-size: 12px;
  font-family: Arial;
  margin: 0 4px 4px 0;
  text-decoration: none;
  white-space: pre-wrap;
  border: solid 1px #dddddd;
  background: #ebebeb;
  border-radius: 4px;
  padding: 4px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a span {
  font-size: 10px;
  background: #fff;
  border: solid 1px #d3d4d4;
  border-radius: 7px;
  padding: 0px 5px;
  height: 10px;
  line-height: 10px;
  margin: 0 0 0 5px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a:hover {
  color: #fff;
  background: #98cf45;
  border-color: #98cf45;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a:hover span {
  border-color: #7cba1d;
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle2 {
  padding: 1px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle2 {
  font-size: 13px;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle3 {
  font-size: 14px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle4 {
  font-size: 15px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle5 {
  font-size: 16px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle6 {
  font-size: 17px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle7 {
  font-size: 18px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle8 {
  font-size: 19px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle9 {
  font-size: 20px;
}
.eds_news_NewsTwo.eds_subCollection_tagCloud .tags a.TagStyle10 {
  font-size: 30px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect {
  margin: 10px 0;
  text-align: center;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  border: solid 1px #d4d4d4;
  border-radius: 3px;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/calendar/monthQuickSelection/selectArrow/predefined/select-pointer.png") no-repeat top right;
  overflow: hidden;
  position: relative;
  width: 50%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 28px;
  right: 28px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #d4d4d4;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select {
  background: none transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 6px 0 6px 6px;
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  color: #848484;
  border: none;
  border-radius: 0;
  outline: none;
  height: 16px;
  -webkit-appearance: none;
  width: 116%;
  margin: 0 30px 0 0;
  box-shadow: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-family: Arial;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  color: #363636;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 2px 3px;
  line-height: 0;
  border: 0;
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a {
  margin: 0 0 0 5px;
  display: inline-block;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/calendar_action_buttons.png");
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a > span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month {
  width: 12px;
  height: 16px;
  background-position: 0 0px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month:hover {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export {
  width: 12px;
  height: 16px;
  background-position: -13px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export:hover {
  background-position: -13px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_rss {
  width: 12px;
  height: 16px;
  background-position: -26px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.articles_rss:hover {
  background-position: -26px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.events_rss {
  width: 18px;
  height: 16px;
  background-position: -39px 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .top_calendar_actions > a.events_rss:hover {
  background-position: -39px -16px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container {
  margin: 0 0 20px 0;
  border: none;
  font-family: Arial;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table {
  border: solid 1px #ebebeb !important;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  background-color: #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  color: #2f2f2f;
  font-family: "Francois One", serif;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months {
  padding: 12px 2%;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/callendar-arrows.png") no-repeat 0 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 0;
  text-indent: -9999px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  background-position: 0 -20px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/callendar-arrows.png") no-repeat 0 -40px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a:hover {
  background-position: 0 -60px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.week_days {
  background-color: #72a819;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-bottom: solid 2px #ebebeb;
  line-height: 1.3;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day {
  border-top: solid 1px #ebebeb;
  border-right: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > span {
  color: #111111;
  padding: 8px 6px;
  display: block;
  text-decoration: none;
  background-color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.day > a:hover {
  background-color: #72a819;
  color: #fff !important;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts > a {
  background-color: #ebebeb;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/day_has_posts-bg.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts > a:hover {
  background-color: #72a819;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/today-has-posts.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_posts.today > a {
  background-color: #72a819;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/today-has-posts.png");
  background-repeat: no-repeat;
  background-position: top right;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events > a {
  background-color: #ffea00;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.today > a {
  font-weight: bold;
  color: #000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.other_month > a {
  background-color: #fff8d5 !important;
  color: #b2b2b2 !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.has_events.other_month > a:hover {
  background-color: #72a819 !important;
  color: #fff !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.today > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.today > span {
  background-color: #72a819;
  color: #fff !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.other_month > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.other_month > span {
  color: #b2b2b2;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #111;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container .calendar_table td.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
  vertical-align: top;
  background-color: #fff !important;
  padding: 0;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  display: block;
  padding: 3px 7px 1px;
  margin: 0;
  border: 0;
  text-align: left;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #EDEDED;
  background-color: rgba(0, 0, 0, 0.05);
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin: 0;
  padding: 2px 5px;
  background: #f9f9f9 !important;
  display: block;
  text-align: left;
  color: #3c3c3c !important;
  text-decoration: none;
  font: 10px Arial;
  line-height: 12px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #ffd202;
  background: #fff !important;
  color: #3c3c3c !important;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box {
  margin: 0;
  padding: 0;
  border: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li {
  border-top: solid 1px #ebebeb;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div {
  border: solid 1px #fff;
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div:hover {
  background-color: #EAEAEA;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat scroll 0 0 transparent;
  cursor: pointer;
  float: left;
  height: 19px;
  margin-right: 4px;
  text-indent: -9999px;
  width: 19px;
  margin: 5px 5px 0 5px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .expand_collapse.collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/expand-collapse.png") no-repeat 0 -19px;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-month {
  color: #3c3c3c;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 7px 9px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-year:hover,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_archive-month:hover {
  color: #72a819;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_year_article_count {
  font-weight: normal;
  padding: 0px 6px;
  background: #72a819;
  border-radius: 12px;
  float: right;
  color: #fff;
  font-size: 10px;
  margin: 6px 9px 0;
  height: 19px;
  line-height: 19px;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li > div .edn_year_article_count:hover {
  text-decoration: none;
  background-color: #A2A2A2;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li.active > div > a.edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li.active > div > a.edn_archive-month {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li > div {
  padding-left: 40px;
  background-color: #F5F4F4;
}
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li .edn_archive-year,
.eds_news_NewsTwo.eds_subCollection_calendar .archive_list .edn_module_box li ul li .edn_archive-month {
  font-weight: normal;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li {
  line-height: 14px;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li a {
  color: #3C3C3C;
  text-decoration: none;
  font-weight: normal;
  background: transparent;
  padding: 10px 9px 8px 28px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/event_clock.png") no-repeat 9px 11px;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li a:hover {
  color: #598f00;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_calendar .events ul li span {
  color: #598f00;
  font-weight: normal;
  margin-left: 5px;
  font-size: 11px;
  font-style: italic;
}
.eds_news_NewsTwo.eds_subCollection_news a,
.eds_news_NewsTwo.eds_subCollection_news .admin_action,
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a {
  text-decoration: none;
  color: #5e9700;
}
.eds_news_NewsTwo.eds_subCollection_news a:hover,
.eds_news_NewsTwo.eds_subCollection_news .admin_action:hover,
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a:hover {
  text-decoration: underline;
  color: #5e9700;
}
.eds_news_NewsTwo.eds_subCollection_news .admin_action.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin: 0 2px;
}
.eds_news_NewsTwo.eds_subCollection_news .admin_action.publish, .eds_news_NewsTwo.eds_subCollection_news .admin_action.publish_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article .summary,
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content,
.eds_news_NewsTwo.eds_subCollection_news .edn_articleSummary {
  font-family: Arial;
  color: #2f2f2f;
  line-height: 20px;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article {
  margin: 0 0 20px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article img {
  float: left;
  margin: 4px 14px 10px 0;
  padding: 3px;
  background-color: #fcfcfc;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .article .summary {
  padding: 0 0 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  letter-spacing: normal;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 a {
  color: #121212;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
  line-height: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .article h2 a:hover {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_news .article .article-subtitle {
  color: #898989;
  font-family: Arial;
  font-weight: normal;
  line-height: 18px;
  font-size: 14px;
  margin: -7px 0 13px 0;
  padding: 0;
  letter-spacing: normal;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content {
  margin-bottom: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ol {
  margin: 0 0 16px 16px;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ol li ol {
  padding: 3px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ul {
  margin: 0 0 16px 16px;
  padding-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content ul ul {
  padding: 3px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .EDN_article_content p {
  padding: 0 0 16px 0;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured {
  position: relative;
  z-index: 1;
  color: #fff;
  float: left;
  margin: 0 15px 5px 0;
  max-width: 100%;
  line-height: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured img {
  border-top: solid 5px #dadada;
  border-right: solid 5px #dadada;
  border-bottom: solid 5px #dadada;
  position: relative;
  max-width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date {
  position: absolute;
  left: 0px;
  bottom: 4px;
  background: #dadada;
  font-family: Arial;
  font-size: 14px;
  color: #2f2f2f;
  padding: 6px 13px 3px 13px;
  text-align: center;
  line-height: 14px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  width: auto;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong {
  font-size: 30px;
  line-height: 30px;
  color: #2f2f2f;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .eds_mediaWrapper {
  max-width: 100%;
  float: left;
  margin: 0 15px 5px 0;
  position: relative;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .eds_mediaWrapper .edn_galleryLink {
  bottom: 0;
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 5px;
  right: 5px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink:before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/photo-24-32.png") no-repeat 0 0;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  content: "";
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_galleryLink:hover:before {
  opacity: 0.8;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details > iframe {
  width: 100% !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .date-no-image {
  color: #3f3f3f;
  font-size: 12px;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details h1 {
  margin: 0px 0 15px 0;
  font-family: "Francois One", Arial, serif;
  font-size: 24px;
  color: #121212;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: normal;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article-subtitle {
  color: #898989;
  font-family: Arial;
  font-weight: normal;
  line-height: 18px;
  font-size: 14px;
  margin: -15px 0 13px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date,
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_location {
  margin: 0 0 7px 3px;
  padding: 0 0 0 17px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/eventDetails/eventIcons/predefined/green_event_icons.png") no-repeat;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date {
  background-position: 0 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_date .export {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/eventDetails/eventIcons/predefined/green_event_icons.png") no-repeat 0 -41px;
  font-size: 11px;
  padding: 2px 0 2px 21px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .event_location {
  background-position: 0 -19px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image {
  margin-bottom: 10px;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image.left {
  margin: 4px 19px 10px 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image.right {
  margin: 4px 0 10px 19px;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_wrapper img {
  padding: 3px;
  border: solid 1px #dadada;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_title {
  color: #444;
  font-size: 14px;
  font-weight: bold;
  margin: 4px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .in_article_image .image_description {
  font-size: 11px;
  color: #464646;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-text-wraper {
  margin-top: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper {
  border: solid 1px #ECECEC;
  padding: 3px;
  margin-bottom: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/authorGroupInfo/background/predefined/green_pattern.png") #8bc42e;
  padding: 12px 16px 6px 16px;
  color: #fff;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with {
  font-style: italic;
  overflow: hidden;
  padding-bottom: 10px;
  font-size: 11px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with strong {
  float: left;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/connect-with-icons.png");
  background-repeat: no-repeat;
  color: #fff;
  float: left;
  height: 16px;
  margin: 2px 2px 0 4px;
  padding-left: 16px;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.facebook {
  background-position: 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.twitter {
  background-position: 0 -16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.linked_in {
  background-position: 0 -48px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.google_plus {
  background-position: 0 -32px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.author_rss {
  background-position: 0 -108px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.contact {
  background-position: 0 -64px;
  padding-left: 21px;
  margin-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.contact span {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.full_bio {
  background-position: 0 -80px;
  padding-left: 21px;
  margin-left: 16px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button.full_bio span {
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .connect-with .button span {
  display: none;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details img {
  float: left;
  margin: 4px 13px 10px 0;
  padding: 3px;
  background: #fcfcfc;
  border: solid 1px #69a409;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .author-display-name {
  font-family: Arial;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 18px;
  font-size: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .author-display-name .author_rss {
  display: inline-block;
  width: 12px;
  height: 12px;
  text-indent: -9999px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/white-rss.png") no-repeat 0 0;
  margin-left: 8px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details p {
  line-height: 18px;
  padding-bottom: 3px;
  color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .other-posty-by {
  font-weight: bold;
  font-style: italic;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .details-wraper .author-details .other-posty-by a {
  color: #fff;
  text-decoration: underline !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details {
  margin: 13px 0;
  color: #7d7d7d;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details .separator {
  margin: 0 13px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p {
  padding-bottom: 3px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags {
  padding-top: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags a {
  color: #777777;
  padding: 2px 4px;
  background: #ebebeb;
  margin-right: 4px;
  border-radius: 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .meta-details p.newstwo-tags a:hover {
  background: #87c02a;
  color: #fff;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin {
  margin: 16px 30px 16px 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin a {
  height: 30px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_compact,
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_expanded {
  height: 20px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .social-media-plugin .addthis_button_linkedin_counter {
  margin-right: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_printButton {
  float: left;
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 4px 5px 4px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  line-height: 0;
  font-size: 0;
  margin: 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_map {
  margin: 20px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_map img {
  max-width: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery {
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul {
  padding: 0;
  margin: 16px 0 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li {
  float: left;
  margin: 4px;
  padding: 0;
  list-style-type: none;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li img {
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .edn_article_gallery > ul > li img:hover {
  border-color: #828282;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments {
  margin: 25px 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment h3 {
  font: 16px Arial;
  color: #2f2f2f;
  margin: 15px 0 0;
  font-weight: bold;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box {
  border: solid 1px #dadada;
  padding: 3px;
  background: #fcfcfc;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box .comment_info span {
  font: 12px Arial;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 22px 0 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.left {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #2f2f2f;
  text-shadow: 1px 1px 1px #fff;
  font-weight: bold;
  width: 17%;
  padding: 7px 15px 0 0;
  text-align: right;
  vertical-align: top;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right {
  padding: 0;
  width: 80%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right input.text {
  font: 16px Arial;
  padding: 5px 11px;
  background: #d3d3d3;
  width: 70%;
  color: #2f2f2f;
  border: solid 1px #bfbfbf;
  box-shadow: inset 1px 1px 0px 0px #8E8D97;
  margin: 0 0 16px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right .submit {
  display: inline-block;
  background-color: #5e9700;
  height: 35px;
  line-height: 35px;
  border: solid 1px #fff;
  text-decoration: none;
  padding: 0 21px;
  color: #fff;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 22px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right .submit:hover {
  background-color: #67a402;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .add_comment .add_article_box table td.right textarea {
  font: 12px Arial;
  border: none;
  padding: 5px 11px;
  background: #d3d3d3;
  width: 90%;
  height: 100px;
  color: #2f2f2f;
  box-shadow: inset 1px 1px 0px 0px #8E8D97;
  border: solid 1px #bfbfbf;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .num_of_comment {
  background: #fcfcfc;
  border: 1px solid #dadada;
  padding: 5px 15px;
  font: 14px Arial;
  color: #2f2f2f;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .num_of_comment a {
  font: 14px Arial;
  font-weight: bold;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list {
  margin: 15px 0 0;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 80px;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes {
  margin-top: 10px;
  width: 7%;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
  padding-top: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details {
  width: 15%;
  text-align: center;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .author {
  font-size: 11px;
  font-weight: bold;
  color: #666;
  margin: 3px 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container {
  float: left;
  width: 85%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .arrow {
  float: left;
  width: 26px;
  height: 31px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_pointer.png") no-repeat transparent;
  position: relative;
  left: 13px;
  top: 13px;
  z-index: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content {
  margin: 0 0 0 25px;
  background: #fcfcfc;
  border: 1px solid #dadada;
  min-height: 85px;
  padding: 3px;
  font: 12px Arial;
  color: #939393;
  font-size: 12px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content > div {
  min-height: 65px;
  background: #efefef;
  padding: 10px 11px;
  margin: 0;
  background: #e4e4e4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_bg.png") repeat-x 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content .date_time {
  font-size: 11px;
  color: #a1a1a1;
  margin: 0;
  padding: 0;
  color: #a1a1a1;
  text-shadow: 1px 1px 1px #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .content_container .content p {
  margin: 0;
  padding: 0 0 5px;
  background: none;
  border: none;
  font: 12px Arial;
  color: #1d1d1d;
  text-shadow: 1px 1px 1px #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions {
  font: 11px Arial;
  margin: 2px 0 3px;
  float: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a {
  color: #929191;
  margin: 0 5px 0 0;
  float: left;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a.reply {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/actions-comment-replay.png") no-repeat center right;
  padding-right: 15px;
  margin-right: 6px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .right_side .actions a:hover {
  color: #444;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial;
  border: 1px solid #bfbfbf;
  padding: 5px;
  background: #fff;
  width: 80%;
  height: 100px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions a {
  display: block;
  height: 16px;
  line-height: 16px;
  border: 0;
  text-decoration: none;
  padding: 4px 8px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/input-button-bg.png") repeat-x 0 0;
  font-weight: bold;
  border: solid 1px #b3b3b3;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment .edit_comment .actions a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level1 {
  margin-left: 40px;
  padding-top: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level0, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level {
  margin-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level1 .arrow, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level2 .arrow, .eds_news_NewsTwo.eds_subCollection_news .article-details .article_comments .comment_list .comment.level3 .arrow {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/comment_pointer_replay.png") no-repeat transparent !important;
  top: -12px !important;
  left: 35px !important;
}
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_news .article_rss_wrapper a {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/articlesRssIcon/predefined/green-rss.png") no-repeat 0 2px transparent;
  padding-left: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box {
  overflow: hidden;
  margin: 0;
  border-top: solid 1px #ebebeb;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box.odd > a {
  background: #eeeeee;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a {
  color: #333333;
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  overflow: hidden;
  line-height: 15px;
  background: #f9f9f9;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a > img {
  margin: 1px 10px 0 0;
  border: solid 1px #dadada;
  padding: 3px;
  background-color: #fcfcfc;
  border-radius: 3px;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a:hover {
  text-decoration: none;
  color: #fff !important;
  background-color: #86bf29;
}
.eds_news_NewsTwo.eds_subCollection_news .article.sidebar_box > a:hover > img {
  border-color: #69a409;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles,
.eds_news_NewsTwo.eds_subCollection_news .article_documents,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links {
  border: solid 1px #dbdbdb;
  padding: 3px;
  background: #ececec;
  margin: 0 0 20px;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles > h2,
.eds_news_NewsTwo.eds_subCollection_news .article_documents > h2,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links > h2 {
  font-weight: normal;
  color: #72a819;
  font-size: 18px;
  font-family: Arial;
  padding: 12px 0 0 15px;
  background: #fff;
  margin: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul {
  margin: 0;
  background: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li {
  list-style-type: none;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li a,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li a {
  color: #5E9700;
  text-decoration: none;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a:hover,
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li a:hover,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li a:hover {
  color: #5E9700;
  text-decoration: underline;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul {
  padding: 9px 16px 20px;
  background: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/list-bullet.png") no-repeat 0 4px;
  padding: 3px 0 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a {
  color: #2f2f2f;
  text-decoration: none !important;
}
.eds_news_NewsTwo.eds_subCollection_news .related_articles ul li a:hover {
  color: #72a819;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul {
  padding: 9px 16px 14px 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li {
  list-style-type: none;
  padding: 0 0 5px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li > img {
  width: 16px;
  height: 16px;
  margin: -3px 7px 0 0;
  border: none !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul {
  padding: 9px 16px 14px 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/list-bullet.png") no-repeat 0 4px;
  padding: 3px 0 0 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .article_documents ul li span,
.eds_news_NewsTwo.eds_subCollection_news .edn_article_links ul li span {
  margin-left: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  background-color: #f2f2f2;
  border: solid 1px #dadada;
  padding: 10px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 5px;
  vertical-align: top;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 4px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li .EDN_cf_checkbox_icon {
  margin-top: 2px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 15px;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background-color: #b5b5b5;
  float: left;
  width: 13px;
  height: 13px;
  margin: 3px 4px 0 0;
}
.eds_news_NewsTwo.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon {
  background: #72a819 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/articleDetailsCustomFields/checkboxBackground/predefined/cf-checkbox.png") no-repeat center center;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
  margin: 15px 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 100%;
  text-align: center;
  display: block;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger {
  display: inline-block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer {
  padding: 3px;
  display: inline-block;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span {
  display: inline-block;
  background-color: #ebebeb;
  padding: 5px 20px;
  font: normal 14px/1.3 Arial;
  color: #a19e9e;
  text-shadow: 1px 1px 0 #fff;
  -webkit-transition: color;
  -khtml-transition: color;
  -moz-transition: color;
  -ms-transition: color;
  -o-transition: color;
  transition: color;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/loadingArticles.gif") center center no-repeat #fff;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay > span {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span {
  color: #636363;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_registerEventDetails {
  margin: 0 0 0 15px;
  padding: 0;
  float: left;
  clear: both;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventPrice {
  float: right;
  margin: 7px;
  font-family: "Francois One", Arial, serif;
  font-size: 22px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  margin: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  float: right;
  padding: 8px 20px;
  line-height: 1;
  background: none #76a220;
  border: solid 1px #4d7a03;
  box-shadow: 0 25px 25px -25px #9eca48 inset, 0 0 0 1px #fff inset;
  color: #fff;
  font-weight: bold;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  box-shadow: 0 -25px 25px -25px #9eca48 inset, 0 0 0 1px #fff inset;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_eventSeparator {
  border: none;
  border-bottom: 1px solid #dadada;
  outline: none;
  height: 0;
  margin: 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background-color: #EBEBEB;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fff;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F1F1F1;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border: none;
  border-bottom: solid 1px #dadada;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  color: #838383;
  font-size: 12px;
  border: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin: 10px 0;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label:after {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar label:hover:after {
  opacity: 1;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:after {
  background-color: #d9534f;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:after {
  background-color: #f0ad4e;
}
.eds_news_NewsTwo.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .admin_action,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_date .export {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_date,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .event_location {
  background: none transparent;
  padding-left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .edn_socialPrintWrapper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .article_gallery,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .meta-text-wraper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .meta-details,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .details-wraper,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .article_comments,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .fb-comments,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details #disqus_thread,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article-details .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news.eds_print .related_articles,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .article_documents,
.eds_news_NewsTwo.eds_subCollection_news.eds_print .edn_article_links {
  display: none;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  -webkit-transition: all 500ms ease;
  -khtml-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  -webkit-transition: padding 600ms ease;
  -khtml-transition: padding 600ms ease;
  -moz-transition: padding 600ms ease;
  -ms-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #2f2f2f;
  font-family: "Francois One", serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage:after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -webkit-transition: left 500ms ease, opacity 800ms;
  -khtml-transition: left 500ms ease, opacity 800ms;
  -moz-transition: left 500ms ease, opacity 800ms;
  -ms-transition: left 500ms ease, opacity 800ms;
  -o-transition: left 500ms ease, opacity 800ms;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage:after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -webkit-transition: right 500ms ease, opacity 800ms;
  -khtml-transition: right 500ms ease, opacity 800ms;
  -moz-transition: right 500ms ease, opacity 800ms;
  -ms-transition: right 500ms ease, opacity 800ms;
  -o-transition: right 500ms ease, opacity 800ms;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_NewsTwo.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}
.eds_news_NewsTwo .meta-text-wraper {
  border: solid 1px #dadada;
  padding: 3px;
  background-color: #fcfcfc;
  clear: both;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text {
  background: #ebebeb;
  padding: 2px;
  overflow: hidden;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div {
  float: left;
  height: 26px;
  line-height: 26px;
  color: #777777;
  margin-right: 18px;
  padding-left: 29px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 0;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author a {
  color: #777777;
  text-decoration: none;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.author a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.newstwo-comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 -37px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/meta-box-icons.png") no-repeat 0 -74px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating .article_rating {
  display: inline-block;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png");
  height: 16px;
  top: 3px;
  left: 2px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png") left -32px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/images/rateitStars/predefined/green_rate_stars.png") left -16px;
}
.eds_news_NewsTwo .meta-text-wraper .meta_text > div.rating div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_NewsTwo .user_dashboard {
  background: #f5f4f4 url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/user_dashboard_bg.png") 0 0 repeat-x;
  border: 1px solid #f1efef;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
}
.eds_news_NewsTwo .user_dashboard:hover {
  background-color: #fbfbfb;
  border-color: #e1e1e1;
}
.eds_news_NewsTwo .user_dashboard a {
  display: block;
  float: left;
  color: #2f2f2f !important;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 4px 0 0 35px;
  height: 21px;
  margin: 0 10px 0 0;
  text-decoration: none;
}
.eds_news_NewsTwo .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_NewsTwo .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_NewsTwo .user_dashboard a.event_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/event_manager.png") no-repeat 0 1px;
  padding-left: 35px;
}
.eds_news_NewsTwo .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_NewsTwo .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_NewsTwo .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_NewsTwo .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_NewsTwo .user_dashboard a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .article_pager,
.eds_news_NewsTwo .article_pagination {
  text-align: center;
  padding: 15px;
}
.eds_news_NewsTwo .article_pager table,
.eds_news_NewsTwo .article_pagination table {
  margin: 15px auto;
}
.eds_news_NewsTwo .article_pager span,
.eds_news_NewsTwo .article_pagination span {
  background: #aaaaaa;
  color: #fff !important;
  border: solid 1px #cbcbcb;
  line-height: 23px;
  border-radius: 15px;
  padding: 4px 8px;
  margin: 0 2px;
  font-weight: bold;
}
.eds_news_NewsTwo .article_pager a,
.eds_news_NewsTwo .article_pagination a {
  display: inline;
  border: solid 1px #cbcbcb;
  line-height: 23px;
  border-radius: 15px;
  padding: 4px 8px;
  margin: 0 2px;
  text-decoration: none !important;
  font-family: Arial;
  font-size: 12px;
  color: #aaaaaa !important;
  font-weight: bold;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.eds_news_NewsTwo .article_pager a:hover,
.eds_news_NewsTwo .article_pagination a:hover {
  background: #efefef;
  text-decoration: none;
}
.eds_news_NewsTwo .article_pager a.active,
.eds_news_NewsTwo .article_pagination a.active {
  background: #aaaaaa !important;
  color: #fff !important;
}
.eds_news_NewsTwo .featured-multi {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 100%;
  border-top: solid 5px #dadada;
  border-right: solid 5px #dadada;
  border-bottom: solid 5px #dadada;
}
.eds_news_NewsTwo .featured-multi img {
  position: relative;
  max-width: 100%;
}
.eds_news_NewsTwo .featured-multi .newstwo-date {
  position: absolute;
  left: 0px;
  bottom: 0;
  background: #dadada;
  font-family: Arial;
  font-size: 14px;
  color: #2f2f2f;
  padding: 6px 13px 2px 13px;
  text-align: center;
  line-height: 14px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  width: auto;
  height: auto;
}
.eds_news_NewsTwo .featured-multi .newstwo-date strong {
  font-size: 30px;
  line-height: 30px;
}
.eds_news_NewsTwo .featured-multi .intro {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/intro-bg.png");
  padding: 2% 2% 1% 2%;
}
.eds_news_NewsTwo .featured-multi .intro h2 {
  color: #fff;
  margin-bottom: 13px;
  padding: 0;
}
.eds_news_NewsTwo .featured-multi .intro h2 a {
  color: #fff;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 24px;
}
.eds_news_NewsTwo .featured-multi .intro h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .featured-multi .intro > div {
  margin-left: 53px;
  line-height: 14px;
  overflow: hidden;
  height: 59px;
}
.eds_news_NewsTwo .featured-multi .intro > div p {
  margin: 0;
}
.eds_news_NewsTwo .featured-multi.no-image {
  color: #2f2f2f !important;
  border: none;
}
.eds_news_NewsTwo .featured-multi.no-image h2 {
  margin-bottom: 13px;
  padding: 0;
}
.eds_news_NewsTwo .featured-multi.no-image h2 a {
  color: #2f2f2f;
  text-decoration: none;
  font-size: 24px;
  font-family: "Francois One", Arial, serif;
}
.eds_news_NewsTwo .featured-multi.no-image h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .featured-multi.no-image .newstwo-date {
  float: left;
  position: relative;
  margin: 3px 15px 10px 0;
}
.eds_news_NewsTwo .featured-multi.no-image .admin_actions {
  position: relative;
  float: right;
  top: 0;
  right: 0;
  margin-left: 15px;
}
.eds_news_NewsTwo .featured-multi .admin_actions {
  border: solid 1px #dadada;
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 3px 10px;
  background-color: #ebebeb;
  z-index: 3;
}
.eds_news_NewsTwo .featured-multi .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .featured-multi .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .two-articles-row {
  margin-top: 21px;
  overflow: hidden;
}
.eds_news_NewsTwo .two-articles-row h2 {
  margin: 0 0 11px 0;
  line-height: 21px;
  padding: 0;
}
.eds_news_NewsTwo .two-articles-row h2 a {
  text-decoration: none;
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
}
.eds_news_NewsTwo .two-articles-row h2 a:hover {
  text-decoration: underline;
  color: #121212;
}
.eds_news_NewsTwo .two-articles-row .date-comments {
  color: #949494;
  margin-top: 11px;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span {
  padding: 0 20px 0 20px;
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/date-comments-icons.png") no-repeat 0 0;
  line-height: 16px;
  margin-bottom: 4px;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span.newstwo-date {
  background-position: 0 0;
}
.eds_news_NewsTwo .two-articles-row .date-comments > span.newstwo-comments {
  background-position: 0 -18px;
  padding-right: 0px;
}
.eds_news_NewsTwo .two-articles-row .date-comments a {
  color: #949494;
  text-decoration: none;
}
.eds_news_NewsTwo .two-articles-row .date-comments a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row {
  border: solid 1px #dadada;
  width: 45.3%;
  float: right;
  padding: 1.2% 1.5% 1%;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row:first-child {
  float: left;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row img {
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .two-articles-row .article-two-in-row.edn_articleWrapper {
  margin: 0 5px 10px !important;
  padding: 7px;
}
.eds_news_NewsTwo .one-article-row {
  margin-top: 21px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row {
  border: solid 1px #dadada;
  padding: 2% 2% 1% 2%;
  overflow: hidden;
  margin-bottom: 19px;
  width: auto;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row img {
  float: left;
  margin: 0 12px 10px 0;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 {
  margin: -3px 0 0 0;
  padding: 0;
  line-height: 21px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 a {
  text-decoration: none;
  color: #121212;
  font-family: "Francois One", Arial, serif;
  font-size: 18px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row h2 a:hover {
  text-decoration: underline;
  color: #121212;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .one-article-row .article-one-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .one-article-row .date-comments {
  color: #949494;
  margin-top: 11px;
  overflow: hidden;
}
.eds_news_NewsTwo .one-article-row .date-comments > span {
  padding: 0 20px 0 20px;
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/date-comments-icons.png") no-repeat 0 0;
  line-height: 16px;
  margin-bottom: 4px;
  font-family: Arial;
  font-size: 12px;
}
.eds_news_NewsTwo .one-article-row .date-comments > span.newstwo-date {
  background-position: 0 0;
}
.eds_news_NewsTwo .one-article-row .date-comments > span.newstwo-comments {
  background-position: 0 -18px;
  padding-right: 0px;
}
.eds_news_NewsTwo .one-article-row .date-comments a {
  color: #949494;
  text-decoration: none;
}
.eds_news_NewsTwo .one-article-row .date-comments a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .three-articles-row {
  overflow: hidden;
  margin-bottom: 10px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row {
  float: left;
  width: 31.2%;
  margin-left: 3.2%;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row:first-child {
  margin: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 {
  margin: 0 0 5px 0;
  line-height: 16px;
  padding: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 a {
  color: #121212;
  text-decoration: none;
  font-family: "Francois One", Arial, serif;
  font-size: 14px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row p {
  margin: 0;
  padding: 0;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row img {
  margin-bottom: 3px;
  height: auto;
  max-width: 100%;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row .admin_actions a.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/pencil_small.png") 0 0 no-repeat;
  padding-left: 15px;
  margin-right: 10px;
}
.eds_news_NewsTwo .three-articles-row .article-three-in-row .admin_actions a.publish {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/check_small.png") 0 0 no-repeat;
  padding-left: 16px;
}
.eds_news_NewsTwo .child_categories {
  overflow: hidden;
}
.eds_news_NewsTwo .child_categories .catalog-item {
  width: 31%;
  height: 185px;
  float: left;
  border-bottom: solid 4px #ebebeb;
  padding: 0 1%;
  margin-bottom: 24px;
}
.eds_news_NewsTwo .child_categories .catalog-item img {
  max-width: 100%;
  height: auto;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 {
  font-size: 14px;
  padding-top: 4px;
  margin: 0;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 a {
  text-decoration: none;
  color: #121212;
  font-size: 14px;
  font-family: "Francois One", Arial, serif;
  line-height: 1.2;
  font-weight: normal;
}
.eds_news_NewsTwo .child_categories .catalog-item h2 a:hover {
  text-decoration: underline;
}
.eds_news_NewsTwo .category_info {
  margin-bottom: 25px;
}
.eds_news_NewsTwo .fb-comments, .eds_news_NewsTwo .fb-comments iframe[style], .eds_news_NewsTwo .fb-comments > span {
  width: 100% !important;
}
.eds_news_NewsTwo .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}

.EDN_search.theme_NewsTwo {
  padding: 0px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 0;
  margin: 0 20px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
}
.EDN_search.theme_NewsTwo ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_NewsTwo ul li {
  margin: 0px;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #737373;
  border: solid 1px transparent;
}
.EDN_search.theme_NewsTwo ul li span a {
  color: #737373;
  text-decoration: none;
}
.EDN_search.theme_NewsTwo ul li span a:hover {
  text-decoration: none;
  color: #98cf45;
  text-decoration: none;
}
.EDN_search.theme_NewsTwo .acSelect {
  background-color: #fcfcfc;
  color: #ebebeb;
  border-color: #dddddd transparent;
}
.EDN_search.theme_NewsTwo .acSelect a {
  color: #737373;
}

.qtip.edn_calendarbox_NewsTwo {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  border: 2px solid #ebebeb;
  border-radius: 1px;
  width: 500px;
  max-width: 95%;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title {
  border: 0;
  border-bottom: solid 1px #fff;
  background: #ebebeb;
  margin: 0;
  padding: 6px 15px 0;
  display: block;
  height: 19px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span {
  font: 12px Arial;
  color: #2f2f2f;
  line-height: 14px;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span a {
  text-decoration: none;
  color: #666;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 7px 0;
  padding: 3px;
  border: solid 1px #dadada;
  border-radius: 4px;
  background: #fcfcfc;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article p {
  color: #333333;
  font: 12px Arial;
  line-height: 14px;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title {
  font: 14px Arial;
  line-height: 16px;
  color: #598f00;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title a {
  font: 14px Arial;
  line-height: 16px;
  color: #598f00;
  text-decoration: none;
  font-weight: bold;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.title a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > p.location {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: #2f2f2f;
  margin-top: 5px;
  padding: 0 0 0 15px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/red_map_location.png") no-repeat 0 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > .content {
  color: #333333;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > a {
  float: right;
  clear: both;
  text-decoration: none;
  font: 12px Arial;
  color: #598f00;
  line-height: 14px;
  font-weight: bold;
  margin: 3px 0 0;
  padding: 0 0 0 9px;
  border: 0;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article > a:hover {
  text-decoration: underline;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px 15px 15px 30px;
  overflow: hidden;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li {
  list-style: url("/DesktopModules/EasyDNNnews/Templates/_default/NewsTwo/common/grey-bullet.png") outside;
  margin: 5px 0 0px;
  padding: 0;
  border: 0;
  color: #2f2f2f;
  font: 12px Arial;
  line-height: 14px;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li > a {
  color: #2f2f2f;
  font: 12px Arial;
  line-height: 14px;
  text-decoration: none;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li > a:hover {
  color: #598f00;
}
.qtip.edn_calendarbox_NewsTwo > .qtip-content > .wrapper > .article_list > li > p {
  color: #2f2f2f;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  line-height: 12px;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article img {
    width: 98%;
    margin: 0 0 10px 0;
    padding: 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date {
    font-size: 12px;
    padding: 3px 6px 1px 6px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_NewsOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong, .EasyDNNSkin_BlogOne .eds_news_NewsTwo.eds_subCollection_news .article-details .featured .newstwo-date strong {
    font-size: 14px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .article.sidebar_box a img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .article.sidebar_box a img {
    width: auto;
    max-width: 100%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .newstwo-date, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .newstwo-date {
    font-size: 12px;
    padding: 3px 6px 1px 6px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .newstwo-date strong, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .newstwo-date strong {
    font-size: 14px;
    line-height: 16px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro {
    padding: 1%;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro h2, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro h2 {
    margin-bottom: 2px;
    line-height: 15px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi .intro h2 a, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi .intro h2 a {
    font-size: 14px;
    line-height: 15px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .one-article-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .one-article-row {
    overflow: hidden;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .one-article-row .article-one-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .one-article-row .article-one-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img {
    float: none;
    width: 100%;
    margin: 0 0 3px 0;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .child_categories .catalog-item, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .child_categories .catalog-item {
    float: none;
    margin: 0 0 10px 0;
    width: auto;
    border: none;
    height: auto;
    overflow: hidden;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .child_categories .catalog-item img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .child_categories .catalog-item img {
    float: left;
    margin-right: 15px;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .featured-multi img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .featured-multi img {
    width: 100%;
    height: auto;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row {
    margin-top: 10px;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row {
    width: auto;
    margin: 11px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .two-articles-row .article-two-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .two-articles-row .article-two-in-row img {
    float: left;
    margin: 0 15px 15px 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row {
    float: none;
    width: auto;
    overflow: hidden;
    margin: 10px 0 0 0;
  }
  .EasyDNNSkin_NewsTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_NewsOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogTwo .eds_news_NewsTwo .three-articles-row .article-three-in-row img, .EasyDNNSkin_BlogOne .eds_news_NewsTwo .three-articles-row .article-three-in-row img {
    float: left;
    margin: 0 15px 0 0;
  }
}
/*Fix RTL EDN Dashbord 2018*/
.rtl .eds_subCollection_news .user_dashboard a { float: right; font-family: inherit !important; }
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";

/* latin-ext */
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/uSfpAbjl2kRc-p4IRfESlvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/ASmipTgPwTrjcfmzf6Zfwg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/ASmipTgPwTrjcfmzf6Zfwg.woff2") format("woff2");
}
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: local("Sanchez"), local("Sanchez-Regular"), url("https://fonts.gstatic.com/s/sanchez/v4/mx466fsxfR1AA3OwUm3waQ.woff") format("woff");
}
.eds_news_Firefly .EDN_clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.eds_news_Firefly .EDN_clear.EDN_separator {
  visibility: visible;
  height: 14px;
  width: auto;
  border: solid 1px #bab8b4;
  border-left-style: none;
  border-right-style: none;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
}
.eds_news_Firefly * {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_Firefly .eds_openModal {
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_news {
  font-size: 12px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news strong, .eds_news_Firefly.eds_subCollection_news b, .eds_news_Firefly.eds_subCollection_news strong *, .eds_news_Firefly.eds_subCollection_news b * {
  font-weight: bold;
  color: inherit;
}
.eds_news_Firefly.eds_subCollection_news em, .eds_news_Firefly.eds_subCollection_news i, .eds_news_Firefly.eds_subCollection_news em *, .eds_news_Firefly.eds_subCollection_news i * {
  font-style: italic;
  color: inherit;
}
.eds_news_Firefly.eds_subCollection_news h1, .eds_news_Firefly.eds_subCollection_news h2, .eds_news_Firefly.eds_subCollection_news h3, .eds_news_Firefly.eds_subCollection_news h4 {
  font-family: "Sanchez", serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
  color: #4E4D49;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news h1 {
  font-size: 22px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news h1 span {
  font-size: 22px;
}
.eds_news_Firefly.eds_subCollection_news h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news h2 span, .eds_news_Firefly.eds_subCollection_news h2 a {
  font-size: 20px;
}
.eds_news_Firefly.eds_subCollection_news h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news p {
  padding: 0;
  margin: 0 0 17px;
}
.eds_news_Firefly.eds_subCollection_news ul, .eds_news_Firefly.eds_subCollection_news ol {
  margin-bottom: 20px;
  padding-left: 15px;
}
.eds_news_Firefly.eds_subCollection_news ul ul, .eds_news_Firefly.eds_subCollection_news ul ol, .eds_news_Firefly.eds_subCollection_news ol ul, .eds_news_Firefly.eds_subCollection_news ol ol {
  margin-bottom: 0;
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_news ul li, .eds_news_Firefly.eds_subCollection_news ol li {
  padding: 0;
  margin: 0 0 2px;
}
.eds_news_Firefly.eds_subCollection_news ul {
  list-style-type: disc;
}
.eds_news_Firefly.eds_subCollection_news ul ul {
  list-style-type: circle;
}
.eds_news_Firefly.eds_subCollection_news ul ul ul {
  list-style-type: square;
}
.eds_news_Firefly.eds_subCollection_news img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news blockquote, .eds_news_Firefly.eds_subCollection_news blockquote p {
  color: #707070;
  font-size: 13px;
  font-style: italic;
  padding: 10px 0;
  margin: 0;
  line-height: 16px;
}
.eds_news_Firefly.eds_subCollection_news blockquote:before, .eds_news_Firefly.eds_subCollection_news blockquote:after, .eds_news_Firefly.eds_subCollection_news q:before, .eds_news_Firefly.eds_subCollection_news q:after {
  content: none;
}
.eds_news_Firefly.eds_subCollection_news pre {
  font-family: Lucida Console, monospace;
  margin-bottom: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.eds_news_Firefly.eds_subCollection_news a {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news a:hover {
  text-decoration: underline;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news img {
  border: none;
}
.eds_news_Firefly.eds_subCollection_news:after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper {
  text-align: right;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper a {
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/rssLink/background/predefined/rss-icon.png") no-repeat scroll 6px 6px #B3B1AD;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 3px 6px 2px 25px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-family: Arial;
  line-height: 21px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article_rss_wrapper a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .gm-style img {
  max-width: none;
}
.eds_news_Firefly.eds_subCollection_news .article_gallery {
  margin-top: 10px;
  margin-bottom: 20px;
}
.eds_news_Firefly .fb-comments, .eds_news_Firefly .fb-comments iframe[style], .eds_news_Firefly .fb-comments > span {
  width: 100% !important;
}
.eds_news_Firefly .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Firefly.eds_subCollection_tagCloud, .eds_news_Firefly.eds_subCollection_calendar, .eds_news_Firefly.eds_subCollection_categoryMenu, .eds_news_Firefly.eds_subCollection_search,
.eds_news_Firefly .callendar_table_container,
.eds_news_Firefly .archive_list {
  margin: 0;
  padding: 0 !important;
}
.eds_news_Firefly .callendar_table_container {
  margin-bottom: 17px;
}
.eds_news_Firefly .EDN_module_box .edn_module_title,
.eds_news_Firefly .edncf_AdvancedSearch .edn_module_title, .eds_news_Firefly.eds_subCollection_tagCloud .edn_module_title,
.eds_news_Firefly .archive_list .edn_module_title {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  border: solid 1px #b3b3b2;
  padding: 9px 17px;
  position: relative;
  margin: 0;
  font-size: 21px;
  line-height: 1;
}
.eds_news_Firefly .EDN_module_box .edn_module_title span,
.eds_news_Firefly .edncf_AdvancedSearch .edn_module_title span, .eds_news_Firefly.eds_subCollection_tagCloud .edn_module_title span,
.eds_news_Firefly .archive_list .edn_module_title span {
  color: #505050;
  font-size: 21px;
  border: none;
  margin: 0;
  padding: 0;
  font-family: "Sanchez", serif;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}
.eds_news_Firefly .EDN_module_box .rss,
.eds_news_Firefly .archive_list .rss {
  float: right;
  width: 24px;
  height: 25px;
  margin-top: 1px;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/rss-icon-big.png") 0 0 no-repeat;
}
.eds_news_Firefly .EDN_module_box .rss span,
.eds_news_Firefly .archive_list .rss span {
  display: none;
}
.eds_news_Firefly .EDN_module_box .rss:hover,
.eds_news_Firefly .archive_list .rss:hover {
  background-position: 0 -30px;
}
.eds_news_Firefly .archive_list .export {
  position: absolute;
  bottom: -20px;
  right: 2px;
  background: #B3B1AD url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/events/iCalendarExport/background/predefined/export-icon.png") no-repeat 96% 3px;
  border-radius: 2px;
  border: solid 1px #9F9E99;
  color: white;
  font-size: 10px;
  line-height: 15px;
  font-family: Arial;
  padding: 0 16px 0 5px;
  transition: background 0.2s ease-in-out 0s;
}
.eds_news_Firefly .archive_list .export:hover {
  background-color: #C9C9C9;
  text-decoration: none;
}
.eds_news_Firefly .archive_list .export span {
  font-family: Arial;
  font-size: 10px;
  color: #fff;
  line-height: 15px;
  display: inline-block;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article {
  margin-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article:after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container {
  position: relative;
  height: auto;
  width: auto;
  padding: 9px 17px;
  border: solid 1px #bab8b4;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  margin-bottom: 15px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container:after {
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  position: absolute;
  bottom: -7px;
  left: 44px;
  width: 12px;
  height: 12px;
  content: "";
  z-index: 2;
  border-bottom: solid 1px #bab8b4;
  border-left: solid 1px #bab8b4;
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h1 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 20px;
  border: none;
  color: #606060;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2 a {
  color: #606060;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_title-container > h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 0 15px 15px 0;
  line-height: 0;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
  display: inline-block;
  line-height: 0;
  font-size: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date span {
  display: block;
  text-align: center;
  font-family: "Sanchez", serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .EDN_article-date span.EDN_publish-day {
  font-size: 28px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer img {
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date {
  position: relative;
  display: block;
  padding: 0 15px;
  top: 0;
  bottom: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer.EDN_video .EDN_article-date span {
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink:before {
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  opacity: 0.3;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/photo-24-32.png") no-repeat 0 0;
  -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_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 13px;
  position: absolute;
  bottom: 10px;
  left: 7px;
  right: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_mediaContainer .edn_galleryLink:hover:before {
  opacity: 0.8;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container {
  padding: 4px 15px;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
  background-color: #fcfbf9;
  margin-bottom: 15px;
  overflow: hidden;
  line-height: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p {
  padding: 0 0 0 22px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-date {
  margin: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventDateIcon/predefined/EDN_event-date-icon.png") no-repeat 0 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container p.EDN_event-location {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/eventLocationIcon/predefined/location-icon.png") no-repeat 0 0;
  margin: 10px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventDetails/exportEvent/background/predefined/export-icon.png") no-repeat scroll 96% 3px #B3B1AD;
  border-color: #9F9E99;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  float: right;
  font-size: 10px;
  line-height: 15px;
  height: 15px;
  padding: 0 16px 0 5px;
  margin-top: 2px;
  text-transform: uppercase;
  font-family: Arial;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .export-calendar:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container > ul {
  padding: 5px 0 5px 16px;
  margin: 0;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container > ul > li {
  list-style-type: circle;
  padding: 0 0 0 5px;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin: 0 5px 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_event-location-container .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Sanchez", serif;
  font-size: 22px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content > h3 {
  margin-bottom: 5px;
  font-size: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container {
  max-width: 100%;
  float: left;
  margin: 3px 16px 10px 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a {
  padding: 5px;
  border: solid 1px #e0deda;
  border-radius: 4px;
  float: left;
  background-color: #fff;
  max-width: 100%;
  line-height: 0;
  -webkit-transition: background 0.2s linear;
  -khtml-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_image-container a:hover {
  border-color: #bab8b4;
  background-color: #eee;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details {
  background-color: #fcfbf9;
  margin: 8px 0 0;
  padding: 0;
  clear: both;
  overflow: hidden;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li {
  float: left;
  list-style-type: none;
  margin: 3px;
  font-size: 12px;
  color: #888;
  font-family: Arial;
  line-height: 28px;
  height: 28px;
  padding: 0 0 0 13px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li > span {
  background-color: #cac8c3;
  padding: 3px 4px;
  color: #fff;
  border-radius: 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li > a {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .EDN_meta-details li.EDN_publish-date {
  background: #cac8c3 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/metaDetails/dateIcon/predefined/EDN_publish-date-icon.png") no-repeat 7px center;
  color: #fff;
  padding-left: 28px;
  padding-right: 8px;
  border-radius: 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles {
  background-color: #fcfbf9;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
  margin-bottom: 20px;
  clear: both;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > h2,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > h2 {
  background: #f7f4ef url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  margin: 1px;
  padding: 7px 0 7px 15px;
  line-height: 1;
  color: #807d73;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul {
  margin: 0;
  padding: 15px 18px 8px;
  border-top: solid 1px #dbd9d3;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li {
  list-style-type: none;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li a,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li a,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a {
  margin-right: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/document.png") 0 0 no-repeat;
  padding-left: 25px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_doc, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_docx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/doc.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xls, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xlsx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/xls.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_zip {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/zip.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_rar, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_7z {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/archive.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wav, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wma, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ogg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_flac {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/audio.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mp3 {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/mp3.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_png, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_gif {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/image.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_jpg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_jpeg {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/jpg.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mpg, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mpeg {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/mpg.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mp4, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_xvid, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_wmv, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ogv, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mov, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_avi, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_mkv {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/video.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_pdf {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/pdf.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_ppt, .eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_pptx {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/ppt.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li.edn_docType_txt {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/documents/txt.png");
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docDetails {
  color: #969696;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docExtension {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_docFileSize {
  color: #3B3B3B;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments ul > li .edn_listDescription {
  display: block;
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li .edn_listDescription,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleDocuments > ul li .edn_listDescription {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li,
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_articleLinks > ul li {
  list-style-type: none;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/related-articles-bullet.png") no-repeat 0 2px;
  padding-left: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a {
  color: #4E4D49;
  -webkit-transition: color 0.3s ease-in-out;
  -khtml-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .EDN_article-content .edn_relatedArticles > ul li a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details {
  margin-bottom: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags {
  margin: 5px 0;
  border: solid 1px #dbd9d3;
  border-radius: 3px;
  background-color: #fcfbf9;
  padding: 6px 9px 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating {
  font-family: Arial;
  color: #888;
  line-height: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating .article_rating, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_rating.rating {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags strong, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories strong {
  line-height: 21px;
  font-family: Arial;
  color: #888;
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a {
  padding: 3px 8px;
  margin: 1px;
  display: inline-block;
  background-color: #cac8c3;
  color: #fff;
  border-radius: 2px;
  font-family: Arial;
  line-height: 21px;
  font-size: 12px;
  text-decoration: none;
  -webkit-transition: background 0.2s linear;
  -khtml-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_tags a:hover, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_meta-tags .EDN_categories a:hover {
  background-color: #bebdb9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_socialPrintWrapper {
  margin: 30px 0 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin {
  margin: 0 30px 0 0;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin a {
  height: 30px !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin .addthis_button_compact,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin .addthis_button_expanded {
  height: 20px !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_social-media-plugin .addthis_button_linkedin_counter {
  margin-right: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton {
  float: left;
  background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/print.png") 4px 1px no-repeat;
  cursor: pointer;
  padding: 5px 5px 3px 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e2e2 #bfbfbf #bfbfbf #e2e2e2;
  border-radius: 3px;
  font-size: 0;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton > span {
  color: #333;
  line-height: 1;
  font-family: Arial;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 1px #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_printButton:hover {
  background-color: #eee;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image {
  margin: 3px 0 10px;
  max-width: 100%;
  background-color: #e9e8e4;
  border: solid 1px #aeaca6;
  padding: 5px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image.left {
  float: left;
  margin-right: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image.right {
  margin-left: 15px;
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper {
  max-width: 100%;
  line-height: 0;
  margin-bottom: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_wrapper img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_title {
  font-family: "Sanchez", serif;
  color: #c54823;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .in_article_image .image_description {
  color: #474747;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details {
  background: #CCCAC4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/background/predefined/sand.png");
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details img {
  float: left;
  margin: 0 14px 5px 0;
  border: solid 1px #afada7;
  padding: 4px;
  background-color: #e9e8e4;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details h4 {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin-bottom: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details p {
  line-height: 14px;
  font-family: Arial;
  font-size: 12px;
  color: #fff;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by {
  font-style: italic;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by a {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .other-posty-by a:hover {
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .EDN_connect-with {
  border-top: solid 1px #d9d8d3;
  margin-top: 17px;
  padding-top: 15px;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/author-social-icons.png") no-repeat center center;
  color: #fff;
  text-decoration: none;
  font-family: Arial;
  font-size: 12px;
  line-height: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button:hover {
  text-decoration: underline;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/authorRss/background/predefined/rss-icon-small.png") no-repeat scroll 6px 4px #B3B1AD;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 3px 6px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  text-indent: -9999px;
  margin: 0 15px;
  width: 15px;
  height: 14px;
  display: inline-block;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.author_rss:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social {
  text-indent: -9999px;
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: #b4b2ac;
  border-radius: 50%;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social:hover {
  background-color: #c0beb7;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.facebook {
  background-position: 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.twitter {
  background-position: -78px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.linked_in {
  background-position: -117px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.social.google_plus {
  background-position: -39px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.contact, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.full_bio {
  padding: 3px 0 3px 20px;
  float: right;
  margin: 2px 0 0 33px;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/authorBox/contactAndBiographyLink/icons/predefined/contact-biography-icon.png") 0 0 no-repeat;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.contact {
  background-position: 0 2px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .EDN_author-details .button.full_bio {
  background-position: 0 -87px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul {
  margin: 0 15px 20px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0 10px 10px 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a {
  display: block;
  line-height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .edn_article_gallery > ul li a:hover {
  border-color: #FFFFFF;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.7);
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.eds_news_Firefly.eds_subCollection_news .edn_article_map {
  margin: 15px;
  border: solid 5px #e9e8e6;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_news .gvContentTable {
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .gm-style img {
  max-width: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readMoreWrapper {
  text-align: right;
  margin-top: 10px;
  clear: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readmore.EDN_readMoreButton {
  display: inline-block;
  color: #6d6b6b;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 7px 12px;
  line-height: 1;
  background-color: #d5d3ce;
  border: solid 1px #cac8c3;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_readmore.EDN_readMoreButton:hover {
  background: #e1e0dd none;
  text-decoration: none;
  color: #6d6b6b;
  border-color: #cac8c3;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container {
  background: #CCCAC4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/customFields/background/predefined/sand.png");
  border-radius: 6px;
  padding: 10px 16px;
  margin: 15px 0;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 2px 5px;
  color: #fff;
  font-family: Arial;
  vertical-align: top;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td span,
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td ul li {
  line-height: 1.1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  text-align: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label > span {
  font-weight: bold;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkboxList > li {
  list-style-type: none;
  padding: 0 0 2px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_label {
  line-height: 1.2;
  vertical-align: middle;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon {
  background-color: #9c9b97;
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  border-radius: 50%;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35), inset 0px 0px 6px rgba(0, 0, 0, 0.24);
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_icon:after {
  font-family: Arial;
  font-weight: bold;
  height: 16px;
  left: 0;
  padding: 1px 0 0 1px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 16px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  content: "x";
  font-size: 20px;
  line-height: 12px;
  color: #888;
}
.eds_news_Firefly.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_all_fields_table_value .EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:after {
  color: #C54823;
  content: "✓";
  font-size: 15px;
  line-height: 17px;
}
.eds_news_Firefly.eds_subCollection_news .admin_actions {
  float: right;
  line-height: 1;
  background-color: #fcfbf9;
  border: solid 1px #dbd9d3;
  border-radius: 2px;
  line-height: 25px;
  height: 25px;
  margin-left: 5px;
}
.eds_news_Firefly.eds_subCollection_news .admin_actions span {
  line-height: 2;
}
.eds_news_Firefly.eds_subCollection_news .admin_action {
  margin: 0 5px;
  padding-left: 23px;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  line-height: 25px !important;
  height: 25px;
}
.eds_news_Firefly.eds_subCollection_news .admin_action.edit {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/edit.png");
}
.eds_news_Firefly.eds_subCollection_news .admin_action.publish, .eds_news_Firefly.eds_subCollection_news .admin_action.publish_article {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/publish.png");
}
.eds_news_Firefly.eds_subCollection_news .bread_crumbs {
  margin: 0 0 10px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline {
  border: 1px solid #BAB8B4;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  border-radius: 1px;
  padding: 6px 6px 0;
  margin: 6px;
  background-color: #f6f4f0;
  display: inline-block;
  margin: 0 8px 16px;
  vertical-align: top;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container {
  margin: 0;
  float: none;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container a img {
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_image-container.EDN_blankImage {
  border-color: transparent !important;
  background-color: transparent !important;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 {
  font-size: 17px;
  padding: 4px 8px 6px;
  text-decoration: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a {
  font-size: 17px;
  text-decoration: none;
  color: #4e4d49;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content > h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary {
  padding: 0 8px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_summary p + p {
  margin-top: 7px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails {
  border: solid 1px #bab8b4;
  border-left: none !important;
  border-right: none !important;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/background/predefined/sand.png");
  padding: 9px 14px 7px;
  margin: 5px -7px -1px;
  overflow: hidden;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails > span {
  color: #323232;
  padding-left: 22px;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails .EDN_inLineArticleDate {
  float: left;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/dateIcon/predefined/date.png") 0 0 no-repeat;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleDetails .EDN_comments {
  float: right;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxDateAndComments/commentsIcon/predefined/comments.png") 0 center no-repeat;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews {
  padding: 3px 8px;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews > div {
  float: left;
  color: #bfbfbf;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleInBox .EDN_article.EDN_articleBoxInline .EDN_article-content .EDN_inLineArticleRatingViews .EDN_numberOfViews {
  float: right;
  padding-left: 30px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleBoxNumberViews/icon/predefined/views.png") 0 center no-repeat;
  margin-top: 3px;
  color: #bfbfbf;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator {
  padding: 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul {
  margin: 0;
  padding: 0;
  border-top: solid 1px #bab8b4;
  border-bottom: solid 1px #bab8b4;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  line-height: 1;
  margin-bottom: -1px 0;
  display: inline-block;
  color: #25282a;
  text-decoration: none;
  font-family: "Sanchez", serif;
  font-size: 14px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator > ul .edsTabulator_tabTrigger.edsTabulator_active {
  background-color: #c54823;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper {
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: absolute;
  left: auto;
  right: auto;
  top: 0;
  width: 100%;
  padding: 15px 0;
  visibility: hidden;
  z-index: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_article_map,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_gallery,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments,
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Firefly.eds_subCollection_news .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  position: relative;
  visibility: visible;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion {
  padding: 15px 0;
  margin-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section {
  display: block;
  margin-bottom: 0;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title {
  font-size: 18px;
  color: #25282a !important;
  text-shadow: none !important;
  padding: 15px 60px 15px 0;
  margin: 0;
  line-height: 1;
  border-bottom: solid 1px #bab8b4;
  cursor: pointer;
  font-family: "Sanchez", serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrow.png") no-repeat 97% center;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c54823 !important;
  text-decoration: none;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrowHover.png");
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  border-bottom: solid 1px #bab8b4;
  padding: 15px 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_article_map,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_gallery,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_comments,
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_listOfAttendants {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .article_comments + .article_comments {
  margin-top: 15px !important;
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c54823 !important;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/edsAccordion/expandableHead/background/predefined/accArrowActive.png");
}
.eds_news_Firefly.eds_subCollection_news .edsAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .EDN_cf_all_fields_container,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_article_map,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleSimpleAccordion .edsAccordion .EDN_article .edsAccordion_content .edn_articleLinks {
  margin-top: 10px !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  background: #c54823 none;
  float: right;
  padding: 7px 12px;
  border: solid 1px #ae3a17;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 17px 0 0;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants {
  margin: 20px 0;
  border: 1px solid #dbd9d3;
  border-radius: 3px;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png") 0 0 #f7f4ef;
  color: #807d73;
  line-height: 1;
  margin: 1px;
  padding: 7px 15px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #fcfbf9;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #F7F4F0;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: bold;
  padding: 7px 10px;
  border-bottom: solid 1px #dbd9d3;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 2px 10px;
  font-size: 12px;
  border: none;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Firefly.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 10px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBarWrapper > span {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label {
  color: #fff;
  cursor: default;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar input[type=radio]:checked + label:after {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label {
  display: inline-block;
  margin: 5px 10px 5px 0;
  background-color: #d5d5d5;
  border: 1px solid #878787;
  min-width: 60px;
  border-radius: 3px;
  color: #555;
  font: normal 15px/1 Arial;
  padding: 6px 9px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 0;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  display: inline-block;
  z-index: -1;
  -webkit-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_Firefly.eds_subCollection_news .eds_signUpActionBar label:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar label:hover:after {
  opacity: 1;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:hover {
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 label:after {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue1 input[type=radio]:checked + label {
  background-color: #5cb85c;
  border-color: #438243;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:hover {
  border-color: #8a3431;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 label:after {
  background-color: #d9534f;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue2 input[type=radio]:checked + label {
  background-color: #d9534f;
  border-color: #8a3431;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:hover {
  border-color: #a2773a;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 label:after {
  background-color: #f0ad4e;
}
.eds_news_Firefly.eds_subCollection_news .eds_signUpActionBar .eds_optionValue3 input[type=radio]:checked + label {
  background-color: #f0ad4e;
  border-color: #a2773a;
}
.eds_news_Firefly.eds_subCollection_news .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Firefly .admin_action {
  padding-left: 17px;
  margin-right: 10px;
}
.eds_news_Firefly .admin_action.edit {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/pencil_small.png") no-repeat 0 0;
}
.eds_news_Firefly .admin_action.publish_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/check_small.png") no-repeat 0 0;
}
.eds_news_Firefly .user_dashboard {
  border: 1px solid #dbd9d3;
  border-left: none;
  border-right: none;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #fcfbf9;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Firefly .user_dashboard:hover {
  background-color: #fff;
  border-color: #bab8b4;
}
.eds_news_Firefly .user_dashboard a {
  display: block;
  float: left;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 0 0 0 35px;
  height: 25px;
  line-height: 24px;
  margin: 0 10px 0 0;
  color: #4E4D49 !important;
}
.eds_news_Firefly .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_Firefly .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_Firefly .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_Firefly .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Firefly .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Firefly .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_Firefly .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_Firefly .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_Firefly .user_dashboard a:hover {
  text-decoration: none;
  color: #000 !important;
}

.eds_news_Firefly.eds_subCollection_news .EDN_category-info {
  margin: 16px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_category-info > h1 {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
  border-bottom: solid 1px #b3b3b2;
  border-top: solid 1px #b3b3b2;
  padding: 19px 21px;
  color: #505050;
  font-size: 24px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}
.eds_news_Firefly.eds_subCollection_news .EDN_category-info .EDN_category-description {
  margin: 10px 2.5% 25px;
}
.eds_news_Firefly.eds_subCollection_news .child_categories {
  overflow: hidden;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .child_categories + span {
  position: relative;
  padding-top: 40px;
  display: block;
}
.eds_news_Firefly.eds_subCollection_news .child_categories + span:before {
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  border: solid 1px #bab8b4;
  border-left-style: none;
  border-right-style: none;
  border-top-style: none !important;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/sand.png");
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 1% 25px;
  width: 30%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item {
    width: 100%;
  }
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a {
  font-family: "Sanchez", serif;
  color: #505050;
  font-size: 18px;
  display: block;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: color 0.2s linear;
  -khtml-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -ms-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a img {
  padding: 1.7%;
  border: solid 1px #e0deda;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: background 0.2s linear;
  -khtml-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  display: block;
  max-width: 96%;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a img {
    width: 96%;
  }
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .child_categories .EDN_catalog-item a:hover img {
  border-color: #bab8b4;
  background-color: #eee;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date {
  line-height: 1.4;
  padding: 10px 15px;
  width: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span {
  color: #fff;
  display: block;
  font-family: "Sanchez", serif;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_featured-date span.EDN_publish-day {
  font-size: 28px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer {
  position: relative;
  line-height: 0;
  margin-bottom: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_featured-date {
  position: absolute;
  top: 0;
  left: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer img {
  max-width: 100%;
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer a {
  line-height: 0px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 18px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .featuredImageContainer .EDN_intro > h2 a:hover {
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_summary > p {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .EDN_summary > p + p {
  margin-top: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi .admin_actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image {
  margin-bottom: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_featured-date {
  float: left;
  margin: 0 10px 5px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro {
  position: relative;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a {
  color: #606060;
  -webkit-transition: background 0.3s ease-in-out;
  -khtml-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_featured-multi.EDN_no_image .EDN_intro h2 a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles {
  width: 50%;
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles {
    float: none;
    width: auto;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_image-container a {
  padding: 1.3% 1.6%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content {
  padding: 0 4.6% 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content .EDN_meta-details li {
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles .EDN_article-content .EDN_meta-details li.EDN_publish-date {
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-two-articles.EDN_second {
  padding-right: 0;
  padding-left: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles {
  margin: 27px 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div {
  display: inline-block;
  width: 44%;
  max-width: none;
  margin: 0 2.5% 15px;
  float: none;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div {
    width: auto;
    display: block;
    margin: 0 0 15px;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container {
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a {
  color: #4E4D49;
  display: inline-block;
  -webkit-transition: color 0.3s ease-in-out;
  -khtml-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a:hover img {
  border-color: #acaaa4;
  background-color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a .EDN_six_articles_title {
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_multiarticle-six-articles > div .EDN_image-container a img {
  border: solid 1px #e0deda;
  background-color: #fff;
  padding: 5px;
  margin: 3px 12px 5px 0;
  float: left;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box {
  margin: 0 17px 11px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a {
  color: #474747;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a img {
  padding: 1.5%;
  border: solid 1px #b8b6b1;
  border-radius: 4px;
  background-color: #e9e8e4;
  margin: 1px 11px 5px 0;
  float: left;
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box a:hover img {
  border-color: #acaaa4;
  background-color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_sidebar-box.EDN_activeclass a {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news .edn_sidebarBoxTitle {
  margin-bottom: 11px;
}

.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox {
  margin-top: -1px;
  margin-bottom: -1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title {
  position: relative;
  height: auto;
  width: auto;
  padding: 9px 17px;
  border: solid 1px #bab8b4;
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  margin: 0 -1px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title:after {
  background: #efede8 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/articleTitle/background/predefined/sand.png");
  position: absolute;
  bottom: -7px;
  left: 16%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  content: "";
  z-index: 2;
  border-bottom: solid 1px #bab8b4;
  border-left: solid 1px #bab8b4;
  border-top: none !important;
  border-right: none !important;
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title > span {
  color: #606060;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
  text-transform: none;
  line-height: 1;
  font-size: 20px;
  display: block;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS {
  float: right;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS > span {
  color: #c54823;
  text-decoration: none;
  font-size: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edn_module_title .EDN_eventsModuleBoxRSS:hover > span {
  color: #c54823;
  text-decoration: underline;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper {
  margin: 0 -1px;
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 15px;
  border: solid 1px #BAB8B4;
  border-top: none !important;
}
.eds_news_Firefly.eds_subCollection_news .EDN_eventsModuleBox .edsAccordionEventsBox .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox {
  border: solid 1px #bab8b4;
  border-top: none;
  margin: 0 -1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a {
  text-decoration: none;
  font-family: "Sanchez", serif;
  color: #c94c27;
  display: block;
  line-height: 1;
  position: relative;
  padding: 5px 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a > span {
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a:before {
  content: "";
  border-right: solid 1px #bab8b4;
  position: absolute;
  width: 16%;
  top: 0;
  bottom: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate {
  padding: 10px 0;
  width: 16%;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate > span {
  display: block;
  text-decoration: none;
  text-align: center;
  -webkit-transition: color 200ms ease-in-out;
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishDay {
  color: #25282a;
  font-size: 20px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishMonth {
  color: #c54823;
  font-size: 20px;
  text-transform: uppercase;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventsBoxDate .EDN_eventPublishYear {
  font-size: 14px;
  color: #25282a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox {
  width: 80%;
  padding: 0 4%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTitle {
  display: block;
  font-size: 21px;
  padding-bottom: 3px;
  color: #25282a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  color: #6c6c6c;
  font-family: Arial;
  font-size: 12px;
  line-height: 1.4;
  font-weight: normal;
  -webkit-transition: color 200ms ease-in-out;
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  padding-left: 16px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxLocation {
  margin-right: 16px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/location/predefined/location.png") no-repeat 0 1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a .EDN_eventBox .EDN_eventBoxTime {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/eventBox/eventLocationAndTime/icons/time/predefined/time.png") no-repeat 0 1px;
  display: block;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover {
  text-decoration: none;
  background-color: #eeebe6;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox > a:hover .EDN_eventBox .EDN_eventBoxTitle {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_eventsBox.EDN_activeclass .EDN_eventBox .EDN_eventBoxTitle {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager {
  margin: 0 -1px -1px;
  text-align: center;
  float: none;
  border: solid 1px #aaaaaa;
  border-top: none;
  padding: 12px 0;
  border-radius: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #b4b4b4;
  margin: 0 7px;
  float: none;
  box-shadow: none;
  text-indent: -9999px;
  padding: 0;
  border: none !important;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a:hover, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .article_pager > a.active, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a:hover, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .article_pager > a.active {
  background-color: #fd6516;
  box-shadow: 1px 1px 1px 0px #8A8987, 0 0 8px 2px #FFFFFF, 0 0 0 5px #C4C3C0, 2px 2px 2px rgba(255, 255, 255, 0.2) inset;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper {
  margin: 0;
  padding: 12px 0;
  width: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBox .ednMoreArticlesTriggerWrapper > .trigger, .eds_news_Firefly.eds_subCollection_news.eds_templateGroup_listArticleEventBoxAccordion .ednMoreArticlesTriggerWrapper > .trigger {
  width: 90%;
}

.eds_news_Firefly.eds_subCollection_news .EDN_article {
  position: relative;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article > div + .eds_timeLineThumbnail {
  top: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 264px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail:after {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 0;
  left: 127px;
  width: 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineGuideline/predefined/timeline.png") center 0 repeat-y;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a {
  border: 1px solid #bab8b4;
  border-radius: 9px;
  line-height: 0;
  font-size: 0;
  display: block;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  margin: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime {
  color: #e34d20;
  font-family: "Sanchez", serif;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  float: right;
  color: #505050;
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timeLineTime + a {
  margin-top: 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail .eds_timelineEventLocation {
  display: block;
  padding-left: 20px;
  font-family: "Sanchez", serif;
  font-weight: 300;
  font-size: 17px;
  color: #888;
  margin: 5px 0 10px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineLocationIcon/predefined/timelineLocation.png") no-repeat 0 1px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle {
  background-color: #f6f4f0;
  border: 1px solid #bab8b4;
  border-radius: 1px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.07);
  padding: 10px 15px 15px;
  margin: 6px 6px 6px 289px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle:after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_readMoreButton {
  float: right;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > div {
  border-top: solid 1px #d9d9d9;
  padding: 15px 0 0;
  margin-top: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > div:after {
  content: "";
  line-height: 0;
  font-size: 0;
  width: 100%;
  display: block;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 5px 0 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a {
  font-size: 19px;
  line-height: 1;
  color: #505050;
  font-weight: normal;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle > h2 a:hover {
  color: #e34d20;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_article_content {
  color: #7a7a7a;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin {
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .EDN_social-media-plugin a {
  height: 20px !important;
  margin-bottom: 7px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration {
  float: right;
  font-family: Arial;
  color: #bababa;
  text-transform: lowercase;
  font-size: 13px;
  text-shadow: 0 1px 0 #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineEventDuration > span {
  padding-left: 20px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineEventTime/predefined/timelineTime.png") no-repeat 0 center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle .eds_timeLineExportCalendar {
  float: left;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/timeLineExportEvent/predefined/timelineExportCalendar.png") no-repeat center center;
  margin: -3px 10px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail:after {
  top: 80px;
  left: 202px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail > a {
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime {
  font-size: 13px;
  margin-top: 0;
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLineArticle2 .eds_timeLineThumbnail .eds_timeLineTime .eds_timeLineEventBegin {
  font-size: 40px;
  display: block;
  float: none;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.eds_timeLine {
  margin: 0;
  padding-bottom: 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article:last-child .eds_timeLineThumbnail:after {
  display: none;
}

@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail {
    float: none;
    margin: 14px;
    width: auto !important;
    position: relative !important;
    overflow: hidden;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail > a img {
    width: 100%;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineThumbnail:after {
    display: none !important;
  }
  .eds_news_Firefly.eds_subCollection_news .EDN_article .eds_timeLineArticle {
    margin: 50px 20px 20px !important;
    padding-left: 15px;
    clear: both;
  }
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments {
  margin: 20px 0;
  background-color: #dfddd9;
  border-radius: 6px;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment > h3 {
  color: #807d73;
  font-size: 22px;
  line-height: 25px;
  padding: 8px 15px 7px;
  background: #f2f0eb url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/commentForm/title/background/predefined/sand.png");
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  margin: 0 0 15px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box {
  margin: 0 16px;
  padding-bottom: 25px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box .comment_info {
  margin: 0 0 20px;
  text-align: center;
  padding: 0 30px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table {
  margin: 0;
  padding: 0;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.left {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #8a8985;
  width: 23%;
  padding: 6px 2% 0 0;
  text-align: right;
  vertical-align: top;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right {
  padding: 0;
  width: 75%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right.bottom {
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  font-size: 14px;
  line-height: 1;
  font-family: Arial;
  color: #4E4D49;
  background-color: #fcfbf9;
  width: 95%;
  padding: 7px 2%;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fcfbf9 #fcfbf9 #c8c7c5;
  margin: 0 0 15px 0;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:hover,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:hover {
  border-color: #cdccc7;
  background-color: #fcfbf9;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right input.text:focus,
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea:focus {
  background-color: #fff;
  border-color: #cdccc7;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right textarea {
  min-height: 120px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit {
  display: inline-block;
  margin: 0 10px 7px 0;
  text-transform: none;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 27px;
  line-height: 27px;
  background-color: #c54823;
  background-image: none;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8), 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .add_comment .add_article_box table td.right .submit:hover {
  background: #bb3811 none;
  text-decoration: none;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .num_of_comment {
  background: #c5c3bd url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/comments/numberOfComments/background/predefined/sand.png");
  padding: 11px 15px 10px;
  margin: 0;
  font-family: Arial;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  border-radius: 3px 3px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list {
  margin: 25px 0 15px;
  display: block;
  padding: 0 16px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment {
  overflow: hidden;
  margin-left: 10%;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes {
  width: 7%;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes input {
  position: relative;
  top: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .votes span {
  font-size: 12px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side {
  width: 93%;
  overflow: hidden;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details {
  width: 20%;
  text-align: center;
  float: left;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .user_avatar {
  max-height: 60px;
  max-width: 60px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_author {
  color: #919191;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .EDN_date_time {
  font-size: 11px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes {
  margin: 1px 0 0;
  font-size: 12px;
  color: #555555;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span {
  margin: 0 8px 0 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .END_comment_details .votes span a {
  position: relative;
  top: 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container {
  float: left;
  width: 80%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content {
  margin: 0 0 0 25px;
  min-height: 73px;
  padding: 10px 11px;
  background-color: #fcfbf9;
  color: #4E4D49;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fbfafa #fbfafa #c8c7c5;
  border-radius: 3px;
  position: relative;
  box-shadow: 2px 2px 1px -2px rgba(0, 0, 0, 0.3) inset;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content:after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #fcfbf9;
  border-style: none none none solid;
  border-width: 0 0 0 1px;
  border-color: transparent transparent transparent #c8c7c5;
  position: absolute;
  left: -8px;
  top: 12px;
  box-shadow: 2px 0px 1px -1px rgba(0, 0, 0, 0.3) inset;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .EDN_content_container .EDN_comment-content p {
  margin: 0;
  padding: 0 0 5px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions {
  margin: 2px 0 3px;
  float: right;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a {
  margin-left: 5px;
  float: left;
  font-size: 10px;
  text-transform: uppercase;
  background-color: #aaa8a3;
  border-radius: 2px;
  line-height: 20px;
  height: 20px;
  padding: 0 7px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: background 0.3s ease-in-out;
  -khtml-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .right_side .actions a:hover {
  background-color: #b9b7b2;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment {
  margin: 15px 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment textarea {
  font: 12px Arial;
  border-style: solid;
  border-width: 1px;
  border-color: #c8c7c5 #fcfbf9 #fcfbf9 #c8c7c5;
  padding: 5px;
  background-color: #fcfbf9;
  width: 80%;
  min-height: 100px;
  color: #4E4D49;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions {
  float: right;
  width: 15%;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a {
  display: inline-block;
  border: 0;
  text-decoration: none;
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a span {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  background-color: #aaa8a3;
  border-radius: 2px;
  line-height: 20px;
  height: 20px;
  padding: 0 7px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: background 0.3s ease-in-out;
  -khtml-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment .edit_comment .actions a:hover span {
  background-color: #b9b7b2;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level1 {
  margin-left: 5%;
  padding-top: 0;
}
.eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level0, .eds_news_Firefly.eds_subCollection_news .EDN_article.EDN_details .article_comments .comment_list .comment.level {
  margin-left: 0;
}

.eds_news_Firefly .article_pager,
.eds_news_Firefly .article_pagination {
  text-align: right;
  float: right;
  margin: 15px 0;
}
.eds_news_Firefly .article_pager table,
.eds_news_Firefly .article_pagination table {
  margin: 0;
  border-radius: 3px;
}
.eds_news_Firefly .article_pager table span,
.eds_news_Firefly .article_pagination table span {
  padding: 10px 14px 9px 15px;
  float: left;
  border: 1px solid #b1b0ab;
  color: #fff;
  background-color: #cac8c3;
  margin-left: -1px;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  line-height: 1;
  font-family: Arial;
}
.eds_news_Firefly .article_pager table td:first-child span, .eds_news_Firefly .article_pager table td:first-child a,
.eds_news_Firefly .article_pagination table td:first-child span,
.eds_news_Firefly .article_pagination table td:first-child a {
  border-radius: 3px 0 0 3px;
}
.eds_news_Firefly .article_pager table td:last-child span, .eds_news_Firefly .article_pager table td:last-child a,
.eds_news_Firefly .article_pagination table td:last-child span,
.eds_news_Firefly .article_pagination table td:last-child a {
  border-radius: 0 3px 3px 0;
}
.eds_news_Firefly .article_pager a,
.eds_news_Firefly .article_pagination a {
  padding: 10px 14px 9px 15px;
  float: left;
  border: 1px solid #e0e0e0;
  color: #bababa;
  background-color: #fcfbf9;
  margin-left: -1px;
  -webkit-transition: color, 0.2s, ease-in-out;
  -khtml-transition: color, 0.2s, ease-in-out;
  -moz-transition: color, 0.2s, ease-in-out;
  -ms-transition: color, 0.2s, ease-in-out;
  -o-transition: color, 0.2s, ease-in-out;
  transition: color, 0.2s, ease-in-out;
  line-height: 1;
  font-family: Arial;
  text-decorations: none;
}
.eds_news_Firefly .article_pager a:first-child,
.eds_news_Firefly .article_pagination a:first-child {
  border-radius: 3px 0 0 3px;
}
.eds_news_Firefly .article_pager a:last-child,
.eds_news_Firefly .article_pagination a:last-child {
  border-radius: 0 3px 3px 0;
}
.eds_news_Firefly .article_pager a:hover,
.eds_news_Firefly .article_pagination a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly .article_pager a.active,
.eds_news_Firefly .article_pagination a.active {
  font-weight: bold;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-color: #b1b0ab;
  background-color: #cac8c3;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly .article_pager a.active:hover,
.eds_news_Firefly .article_pagination a.active:hover {
  color: #c54823;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper {
  margin: 15px 0;
  width: 100%;
  text-align: center;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper > button.trigger {
  display: inline-block;
  margin: 0;
  border: solid 1px #e0e0e0;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  background: transparent none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #fcfbf9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/load-more-arrow.png") no-repeat 95% center;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper > button.trigger > span.actionTextContainer span {
  display: inline-block;
  min-width: 189px;
  padding: 8px 25px;
  font: normal 12px/1 Arial;
  color: #cac8c3;
  -webkit-transition: color, 0.2s, linear;
  -khtml-transition: color, 0.2s, linear;
  -moz-transition: color, 0.2s, linear;
  -ms-transition: color, 0.2s, linear;
  -o-transition: color, 0.2s, linear;
  transition: color, 0.2s, linear;
}
.eds_news_Firefly .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/Firefly/images/pagination/loadingImage/predefined/loadingArticles.gif") center center no-repeat #d1cfc9;
  opacity: 0;
  -webkit-transition: background, 0.5s, ease-in-out;
  -khtml-transition: background, 0.5s, ease-in-out;
  -moz-transition: background, 0.5s, ease-in-out;
  -ms-transition: background, 0.5s, ease-in-out;
  -o-transition: background, 0.5s, ease-in-out;
  transition: background, 0.5s, ease-in-out;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper > button.trigger > span.loadingOverlay > span {
  display: none;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper > button.trigger:hover > span.actionTextContainer span {
  color: #c54823;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper.loading > button.trigger {
  border-color: #b1b0ab;
  background-color: #cac8c3;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay {
  top: 0;
  opacity: 1;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper.loading > button.trigger > span.loadingOverlay > span {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 7px 0;
}
.eds_news_Firefly .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  -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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  -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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 14px;
  line-height: 1.1;
  color: #4E4D49;
  font-family: "Sanchez", serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 220px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage:after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage:after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -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_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}

.eds_news_Firefly.eds_subCollection_news .user_dashboard {
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #ebebeb;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard:hover {
  background-color: #f2f2f2;
  border-color: #000;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a {
  display: block;
  float: left;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 0 0 0 35px;
  height: 25px;
  line-height: 24px;
  margin: 0 10px 0 0;
  color: #5C5C5C !important;
  text-decoration: none !important;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.event_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/event_manager.png") no-repeat 0 1px;
  padding-left: 35px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_Firefly.eds_subCollection_news .user_dashboard a:hover {
  color: #000 !important;
  text-decoration: none !important;
}

.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper {
  margin: 17px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li ul {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div {
  overflow: hidden;
  margin-bottom: 6px;
  padding-left: 60px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div a {
  display: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category {
  font-family: Arial;
  display: inline;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category > span {
  display: inline-block;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 8px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li div .category:hover > span {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category {
  color: #000;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > a.category:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > a.category {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.hasChild > div {
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.hasChild:hover > div .category {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category {
  color: #474747;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div .category:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 10px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 20px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 30px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 40px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 50px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss {
  display: block;
  float: right;
  width: 15px;
  height: 14px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuRSS/predefined/rss-icon-small.png") 0 0 no-repeat;
  text-indent: -9999px;
  margin-top: 2px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:hover {
  background-position: 0 -56px;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoryMenuExpandCollapse/predefined/expand-collapse.png") no-repeat 4px 4px;
  width: 13px;
  height: 7px;
  padding: 4px;
  text-indent: -9999px;
  display: inline-block;
  float: right;
  z-index: 1;
  margin: 2px 6px;
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse {
  background-position: 4px -54px;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image {
  display: inline;
  float: left;
  background-color: #E9E8E4;
  border: 1px solid #B8B6B1;
  border-radius: 4px 4px 4px 4px;
  float: left;
  margin-right: 8px;
  padding: 3px;
  width: 42px;
  height: 42px;
  -webkit-transition: background 0.2s linear;
  -khtml-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  line-height: 0;
}
.eds_news_Firefly.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover {
  background-color: #fff;
  border-color: #ACAAA4;
}

.eds_news_Firefly.eds_subCollection_calendar {
  font-size: 12px;
  font-family: Arial;
  color: #4E4D49;
  line-height: 1.5;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
  width: 50%;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select {
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 108%;
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  margin: 0 40px 0 0;
  position: relative;
  z-index: 2;
  padding: 10px;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_calendar .edn_styledSelect > span select option:first-child {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table {
  width: 100%;
  margin-top: -1px;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
  border: solid 1px #b3b3b2;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
  background: #c1bfb9 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/monthBackground/predefined/sand.png");
  color: #505050;
  padding: 5px 5%;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
  font-family: "Sanchez", serif;
  font-size: 21px;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
  font-size: 0;
  line-height: 0;
  width: 25px;
  height: 29px;
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/next_prev_months-bg.png");
  background-repeat: no-repeat;
  background-position: -25px 0;
  float: right;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
  background-position: -25px -29px;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a {
  background-position: 0 0;
  float: left;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a:hover {
  background-position: 0 -29px;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td a {
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.week_days {
  background-color: #b6b5b0;
  border: solid 1px #dcdbd8;
  border-left-style: none;
  border-right-style: none;
  padding: 7px 0;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.3), inset 0 -5px 5px -5px rgba(0, 0, 0, 0.3);
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td:first-child.day {
  border-left-style: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td:last-child.day {
  border-right-style: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day {
  border: solid 1px #cac8c3;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > span {
  color: #50504f;
  background-color: #e0dfdc;
  display: block;
  padding: 10px;
  background-repeat: no-repeat;
  background-position: right top;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day > a:hover {
  text-decoration: none;
  color: #50504f !important;
  background-color: #f2f1ee !important;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-red > a {
  background-color: #ff0000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-blue > a {
  background-color: #0000ff;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-black > a {
  background-color: #000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-green > a {
  background-color: #008000;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-yellow > a {
  background-color: #ffff00;
  color: #50504f;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-pink > a {
  background-color: #ffc0cb;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-gray > a {
  background-color: #808080;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-orange > a {
  background-color: #ffa500;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.EDNcategorycolor-brown > a {
  background-color: #a52a2a;
  color: #fff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.selected > a {
  background-color: #f2f1ee !important;
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.other_month > span {
  color: #b1b0ae;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.today > span {
  background-color: #c9c7c2 !important;
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) !important;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_posts > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_posts.has_events > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_posts_has_events.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container .calendar_table tr td.day.has_events > a {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/days/indicators/predefined/day-has_events.png");
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .month_selection td {
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td {
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day {
    display: none;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
  text-align: left;
  padding: 9px 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > a,
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > span {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul {
  margin: 0;
  padding: 0 4px 3px;
  border: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li {
  border: 0;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  display: block;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a {
  border: 1px solid #c54823;
  border-radius: 3px;
  margin: 0;
  padding: 2px 5px;
  background-color: #fcfbf9;
  display: block;
  text-align: left;
  color: #888;
  text-decoration: none;
  font-size: 10px;
  line-height: 12px;
  height: auto;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a:hover {
  color: #4E4D49;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a {
  border: 1px solid #ff8400;
  background-color: #fcfbf9;
  box-shadow: none;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-red, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-red {
  border-color: #ff0000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-blue, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-blue {
  border-color: #0000ff;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-black, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-green, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-green {
  border-color: #008000;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-yellow, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-yellow {
  border-color: #ffff00;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-pink, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-gray, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-orange, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-orange {
  border-color: #ffa500;
}
.eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li > a.EDNcategorycolor-brown, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day > ul > li.event > a.EDNcategorycolor-brown {
  border-color: #a52a2a;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_posts, .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Firefly.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table .day.other_month {
    display: none;
  }
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions {
  text-align: right;
  margin: 5px 15px 5px 0;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a {
  background-color: #B3B1AD;
  border-color: #9F9E99;
  border-radius: 2px 2px 2px 2px;
  border-style: solid;
  border-width: 1px;
  color: white;
  display: inline-block;
  padding: 0 5px;
  margin-left: 2px;
  line-height: 1;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a span {
  font-size: 10px;
  line-height: 15px;
  height: 15px;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a.icalendar_export {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/calendar/topCalendarActions/icalendarExportIcon/predefined/export-icon.png");
  background-repeat: no-repeat;
  background-position: 96% 4px;
  padding: 0 16px 0 5px;
}
.eds_news_Firefly.eds_subCollection_calendar .top_calendar_actions a.icalendar_export:hover {
  background-color: #c9c9c9;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box {
  margin: 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper {
  margin: 17px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul {
  margin: 0 10px;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li {
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li ul li div > a {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a {
  color: #474747;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  font-size: 14px;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a > span {
  display: inline-block;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  margin-right: 8px;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover {
  color: #c54823;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li div > a:hover > span {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.opened > div > a.edn_archive-year {
  color: #000;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.opened > div > a.edn_archive-year:hover {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-year,
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li.active > div > a.edn_archive-month {
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/archive/archiveMenuExpandCollapse/predefined/expand-collapse.png") no-repeat 4px 4px;
  width: 13px;
  height: 7px;
  padding: 4px;
  text-indent: -9999px;
  display: inline-block;
  float: right;
  margin: 2px 0;
  cursor: pointer;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list .edn_module_box .edn_archive_menu_wrapper li .expand_collapse.collapse {
  background-position: 4px -54px;
  visibility: visible;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul {
  margin: 20px 17px 0;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li {
  padding: 0 0 10px;
  background-image: none !important;
  line-height: 15px;
  margin: 0;
  list-style-type: none;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a {
  color: #474747;
  text-decoration: none;
  display: block;
  font-family: Arial;
  font-size: 12px;
  line-height: 15px;
  -webkit-transition: color 0.2s ease-in-out;
  -khtml-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a:hover {
  text-decoration: none;
  color: #c54823;
}
.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a span {
  background-color: #dfddd9;
  padding: 4px;
  color: #858181;
  font-weight: normal;
  border-radius: 3px;
  display: block;
  font-size: 12px;
  font-family: Arial;
  text-decoration: none;
  line-height: 15px;
  display: block;
}

.eds_news_Firefly.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none 0 none;
  -khtml-transition: none 0 none;
  -moz-transition: none 0 none;
  -ms-transition: none 0 none;
  -o-transition: none 0 none;
  transition: none 0 none;
}
.eds_news_Firefly.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/indicator.gif") !important;
  background-position: 70% center !important;
  background-repeat: no-repeat !important;
}
.eds_news_Firefly.eds_subCollection_search .search_input {
  height: 52px;
  overflow: hidden;
  margin: 0;
  padding: 5px 0;
  border-radius: 4px;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type="text"] {
  line-height: 50px;
  height: 50px;
  float: left;
  width: 75%;
  padding: 0 21% 0 3%;
  margin: 0;
  border: none;
  background: none transparent;
  font-family: "Sanchez", serif;
  color: #908b82;
  font-size: 22px;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type="text"]:hover {
  border-color: #cdccc7;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  background-color: #edebe5;
}
.eds_news_Firefly.eds_subCollection_search .search_input > .input input[type="text"]:focus {
  border-color: #cdccc7;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  background-color: #fbf9f4;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search {
  background: #c54823 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/searchSubmit/background/predefined/search-icon.png") no-repeat center center;
  width: 38px;
  height: 38px;
  line-height: 38px;
  float: right;
  margin: -46px 6px 0 0;
  border: solid 1px #ae3a17;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_search .search_input .do_search span {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside > .input input[type="text"] {
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  padding: 0 3%;
  width: 93%;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside > .input input[type="text"].acLoading {
  background-position: 85% center !important;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside .do_search {
  background-position: 90% center;
  width: auto;
  padding: 0 35px 0 10px;
  margin: 10px 1% 0 0;
  border-radius: 3px;
}
.eds_news_Firefly.eds_subCollection_search .search_input.button_outside .do_search span {
  display: inline;
}
.eds_news_Firefly .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_Firefly .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch {
  background-color: #e6e6e6;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  padding: 17px;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin: 0;
  padding: 0 0 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxSingle {
  margin-bottom: 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"] {
  color: #908b82;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  outline: none;
  -webkit-appearance: none;
  margin: 0;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  display: block;
  position: relative;
  overflow: hidden;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
  z-index: 1;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 108%;
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select option:first-child {
  font-weight: bold;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #b5b4b1 !important;
  color: rgba(0, 0, 0, 0.3) !important;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input[type="text"] {
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  -webkit-appearance: none;
  outline: none;
  padding: 10px 40px 10px 10px;
  margin: 0;
  background: #f2f0ec none;
  width: 100%;
  height: 38px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #908b82;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  line-height: 1;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39px;
  z-index: 1;
  text-align: center;
  border-left: solid 1px #bdbbb5;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before {
  content: "ˇ";
  color: #c54823;
  font-family: "Georgia", serif;
  line-height: 62px;
  font-size: 40px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  margin-top: 1px;
  border-style: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  border-radius: 4px;
  background-color: #f2f0ec;
  background-image: none !important;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  color: #474747;
  font-family: Arial;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding-left: 23px;
  position: relative;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #fcfbf9;
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 17px;
  color: #f1efeb;
  border-radius: 2px;
  content: "";
  font-family: Arial;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  width: 16px;
  height: 16px;
  padding: 1px 0 0 1px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  content: "✓";
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label > span {
  font-size: 14px;
  color: #474747;
  font-family: Arial;
  line-height: 1.5;
  font-weight: normal;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList label:before,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background-color: #fcfbf9;
  margin: 2px 0 0;
  font-weight: bold;
  line-height: 17px;
  color: #f1efeb;
  border-radius: 2px;
  content: "";
  font-family: Arial;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label:before {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  width: 16px;
  height: 16px;
  padding: 1px 0 0 1px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton {
  padding: 2px 10px 2px 0;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton label:before {
  content: "•";
  border-radius: 50%;
  font-size: 28px;
  height: 18px;
  width: 18px;
  line-height: 0.7;
  background-color: #b5b3af;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_RadioButton input[type="radio"]:checked + label:before {
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"] {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  content: "✓";
  color: #C54823;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_CheckBox {
  padding: 2px 10px 2px 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonListName,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListName,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput label > span {
  font-weight: bold;
  font-family: Arial;
  font-size: 14px;
  color: #474747;
  line-height: 2;
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 35px;
  position: relative;
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  height: 16px;
  top: 5px;
  background-color: #c3c1bc;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.4) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  border: none;
  background: none #C54823;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.2) inset;
  height: 9px;
  top: 8px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: #fff;
  background: #f1f1f1 none;
  width: 14px;
  height: 14px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35), 0 -14px 7px -8px rgba(0, 0, 0, 0.2) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #C54823;
  background: none transparent;
  cursor: default;
  display: block;
  position: absolute;
  white-space: nowrap;
  font: 12px/1 Arial;
  top: 24px;
  padding: 0;
  left: 0;
  white-space: nowrap;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  background: none transparent;
  padding: 0;
  text-shadow: none;
  top: 21px;
  font: 10px/1 Arial;
  color: #787878;
  position: absolute;
  display: block;
  cursor: default;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  color: #474747;
  padding: 8px 10px;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-family: Arial;
  line-height: 1;
  outline: none;
  -webkit-appearance: none;
  margin: 0;
  border: solid 1px #bdbbb5;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f2f0ec;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  color: #c54823;
  background-color: #f2f0ec;
  border-style: solid;
  border-width: 1px;
  border-color: #bdbbb5;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) inset;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: center;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background: #c54823 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/advancedSearch/searchSubmit/background/predefined/search-icon.png") no-repeat 80% center;
  padding: 0 65px 0 37px;
  height: 38px;
  display: inline-block;
  line-height: 38px;
  margin: 10px 2%;
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(0, 0, 0, 0.7);
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_submit:hover,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset:hover {
  background-color: #bb3811;
  text-decoration: none;
  color: #fff;
  border: solid 1px #ae3a17;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer .edncf_reset {
  background-image: none;
  padding: 0 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E1E0E0 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.6;
  width: 100%;
  z-index: 999;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  min-width: 160px;
  width: 112%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField:after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 30px;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_submit,
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer .edncf_reset {
  margin-left: 15px;
}

.eds_news_Firefly.eds_subCollection_tagCloud .tags {
  overflow: hidden;
  padding: 19px;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a {
  float: left;
  background-color: #b6b4b0;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 0 6px;
  margin: 0 5px 4px 0;
  font-family: Arial;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  text-decoration: none;
  border-color: #9f9e99 #fff #fff #9f9e99;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a:hover {
  background-color: #c9c9c9;
  text-decoration: none;
}
.eds_news_Firefly.eds_subCollection_tagCloud .tags a .tag-count {
  float: right;
  color: #c54823;
  margin: 3px -2px 0 6px;
  font-size: 11px;
  font-weight: bold;
  line-height: 15px;
  height: 15px;
  border: solid 1px #dddfe0;
  padding: 0 5px;
  border-radius: 3px;
  background-color: #fff;
}

.EDN_search.theme_Firefly {
  padding: 0px;
  border: 1px solid #e0deda;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  padding: 3px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.27);
  margin: 0 20px;
}
.EDN_search.theme_Firefly ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}
.EDN_search.theme_Firefly ul li {
  margin: 1px 0;
  padding: 2px 5px;
  display: block;
  font: Arial;
  font-size: 12px;
  color: #4E4D49;
  border: solid 1px transparent;
  border-left-style: none;
  border-right-style: none;
  line-height: 1;
}
.EDN_search.theme_Firefly ul li span a {
  color: #4E4D49;
  text-decoration: none;
}
.EDN_search.theme_Firefly ul li span a:hover {
  text-decoration: none;
  color: #c54823;
  text-decoration: none;
}
.EDN_search.theme_Firefly .acSelect {
  background-color: #fcfbf9;
  color: #4E4D49;
  border-color: #e1e1e1;
}
.EDN_search.theme_Firefly .acSelect a {
  color: #4E4D49;
}

.qtip.edn_calendarbox_Firefly {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 1;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #faf8f3;
  padding: 1px;
  border-radius: 5px;
  width: 500px;
  max-width: 95%;
  margin: 0;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
}
.qtip.edn_calendarbox_Firefly > .qtip-content {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title {
  background: #eceae4 url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/date/background/predefined/sand.png");
  margin: 0;
  padding: 10px 15px;
  display: block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span {
  font-family: "Sanchez", serif;
  color: #c54823;
  font-size: 16px;
  line-height: 1;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span a {
  text-decoration: none;
  color: #c54823;
  text-decoration: underline;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .title span a:hover {
  color: #000;
  text-decoration: underline;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > img {
  float: left;
  margin: 0 10px 7px 0;
  padding: 4px;
  border: solid 1px #e1dfda;
  border-radius: 3px;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article p {
  color: #4E4D49;
  margin: 0;
  padding: 0;
  display: block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title {
  font-size: 14px;
  font-weight: bold;
  font-family: Arial;
  margin: 0 0 5px 0;
  padding: 0;
  color: #4E4D49;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title a {
  color: #4E4D49;
  text-decoration: none;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.title a:hover {
  color: #c54823;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > p.location {
  line-height: 20px;
  height: 20px;
  color: #3b3b3b;
  margin-top: 5px;
  font-weight: bold;
  padding: 0 0 0 20px;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/qtip/eventLocation/icon/predefined/location-icon.png") no-repeat 0 0;
  font-size: 12px;
  display: inline-block;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > .content {
  color: #4E4D49;
  font: 12px Arial;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > .content p {
  margin: 10px 0 0;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > a {
  color: #fff;
  font-weight: bold;
  font-family: Arial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 0 8px;
  height: 20px;
  line-height: 20px;
  background-color: #c54823;
  border: solid 1px #ae3a17;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  float: right;
  clear: both;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article > a:hover {
  background-color: #bb3811;
  text-decoration: none;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list {
  display: block;
  margin: 0;
  border: 0;
  padding: 15px;
  overflow: hidden;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li {
  list-style-type: none;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/common/grey-bullet-arrow.png") 0 2px no-repeat;
  margin: 0;
  padding: 0 0 2px 12px;
  border: 0;
  line-height: 1;
  color: #4E4D49;
  font-family: Arial;
  font-size: 12px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > a {
  color: #4E4D49;
  text-decoration: none;
  font-family: Arial;
  font-size: 12px;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > a:hover {
  color: #c54823;
}
.qtip.edn_calendarbox_Firefly > .qtip-content > .wrapper > .article_list > li > p {
  margin: 0;
  padding: 0;
  border: 0;
  font: 11px Arial;
  line-height: 1;
  color: #858181;
}

.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Firefly/images/categoriesTagsRating/rating/ratingStars/predefined/rate_stars.png");
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  height: 16px;
  top: 3px;
  left: 2px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background-position: left -32px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background-position: left -16px;
}
.eds_news_Firefly.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}

.eds_news_Firefly.eds_subCollection_news.eds_print .admin_action,
.eds_news_Firefly.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Firefly.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_title-container {
  background: none transparent;
  padding: 0;
  border: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_title-container:after {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container {
  background: none transparent;
  padding-left: 0;
  padding-right: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .EDN_event-date,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .EDN_event-location {
  padding-left: 0;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_event-location-container .export-calendar {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background: none transparent;
  text-align: left;
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date span {
  color: #999;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer .EDN_article-date span.EDN_publish-day {
  font-size: 14px;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video {
  width: auto !important;
  float: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video div {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_mediaContainer.EDN_video div.EDN_article-date {
  display: block;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .article_gallery,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_articleDocuments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_articleLinks,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_relatedArticles,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .edn_socialPrintWrapper,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .article_comments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .fb-comments,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article #disqus_thread,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .eds_signUpActionBarWrapper {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article .EDN_article-content .EDN_meta-details {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_meta-tags,
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .EDN_author-details {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image {
  border: solid 1px #ddd;
  background: none transparent;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .EDN_article.EDN_details .in_article_image .image_title {
  color: #000;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion {
  margin: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_title {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsTabulator > ul {
  display: none;
}
.eds_news_Firefly.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative;
  visibility: visible;
  top: auto;
  padding: 0;
}
/*Fix RTL EDN Dashbord 2018*/
.rtl .eds_subCollection_news .user_dashboard a { float: right; font-family: inherit !important; }
/*
 * CSS For DotNetNuke Skin by bestdnnskins.com
 * Copyright 2014 By BESTDNNSKINS.COM
 */
/*-------- for all containers --------*/
.c_icon, .c_title{ float:right;}
.c_content_style { display:inline-block; width:100%;}
.clearafter:after{ clear:both; content:"."; height:0px; font-size:0px; visibility:hidden; display:block; }
.clearafter{ display:inline-block;}
.clearafter{ display:block;}
h2.c_title { margin:0; padding:0; line-height:1.2em;}
h2.c_title span { vertical-align:middle; /*font-weight:bold;*/font-family:inherit/*Georgia, "Times New Roman", Arial, serif*/; transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s; }

/*-------- containers title --------*/
.c_title_footer{ font-size:18px; color:#f0f0f0; }
.c_title_black { font-size:18px; color:#555555; }
.c_title_white { font-size:18px; color:#FFFFFF; }
.c_title_color{ font-size:18px; }

/*-------- BlackTitle Container 01 --------*/
.Bt1_style { min-width:150px; margin-bottom:14px;}
.Bt1_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt1_top {margin:0; padding:5px 3px 1px;}
.Bt1_content { padding:10px 3px;}

/*-------- BlackTitle Container 02 --------*/
.Bt2_style { min-width:150px; margin-bottom:14px;}
.Bt2_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt2_top { border-bottom:4px double #e6e6e6;padding:5px 3px 10px; } 
.Bt2_content { padding:10px 3px;}

/*-------- BlackTitle Container 03 --------*/
.Bt3_style { min-width:150px; margin-bottom:14px;}
.Bt3_style:hover .c_title_black{transition: all 0.5s ease 0s;  -webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt3_top { border-bottom:1px solid #dddddd; position:relative; }
.Bt3_style .c_title { border-bottom:2px solid; margin-bottom:-1px; padding:7px 0;}
.Bt3_content { padding:10px 3px;}

/*-------- BlackTitle Container 04 --------*/
.Bt4_style { min-width:150px; margin-bottom:14px;}
.Bt4_style:hover .c_title_black{transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.Bt4_top { border-bottom:1px dashed #dedede; padding:5px 3px 10px;}
.Bt4_content { padding:10px 3px;}

/*-------- DeepSkyBlue Color Title 01 --------*/
.ct1_style { min-width:150px; margin-bottom:14px;}
.ct1_top { padding:5px 3px 1px;}
.ct1_content { padding:10px 0;}

/*-------- DeepSkyBlue Color Title 02 --------*/
.ct2_style { min-width:150px; margin-bottom:14px;}
.ct2_top { border-bottom:1px solid; padding:8px 3px; }
.ct2_content { padding:10px 3px;}

/*-------- DeepSkyBlue Color Header 01 --------*/
.ch1_style { min-width:150px; margin-bottom:14px;}
.ch1_top { min-height:15px;padding:7px 10px;}
.ch1_content { padding:10px 3px 13px; }

/*-------- DeepSkyBlue Color Header 02 --------*/
.ch2_style { min-width:150px; margin-bottom:15px;}
.ch2_top{min-height:15px;background:#ececec;padding:7px 10px 7px; position:relative;border-right:solid 4px;}
.ch2_content{padding:10px 3px 13px;}

/*-------- DeepSkyBlue Header Box --------*/
.hb_style{ min-width:150px;border:solid 1px; margin-bottom:15px;}
.hb_top {min-height:15px;padding:7px 10px;}
.hb_content { padding:10px 12px 10px;transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}

/*-------- DeepSkyBlue Color Box--------*/
.cb_style { min-width:150px; border-radius:5px; margin-bottom:15px;position:relative; }
.cb_top {min-height:40px;padding:6px 15px 6px 12px;position:relative;border-bottom:solid 1px #fff;border-bottom:solid 1px rgba(255,255,255,.2)}
.cb_content { padding:10px 15px 15px;}
.cb_content *{color:#fff;}

/*-------- DeepSkyBlue Gray Box -------*/
.gb1_style { min-width:150px; border:1px solid #e9e9e9; margin-bottom:15px;}
.gb1_style:hover .c_title_black{transition: all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;}
.gb1_top { min-height:25px; background: #e9e9e9; padding:4px 12px 7px 10px;}
.gb1_content{ padding:10px 12px;}

/*-------- DeepSkyBlue Gray Box 02 --------*/
.gb2_style {min-width:150px; margin-bottom:15px;}
.gb2_top {z-index:99;position:relative;background:#f5f5f5;height:38px;padding:7px 15px 8px 12px;border:solid 1px #e5e5e5; border-radius:5px 5px 0 0; webkit-border-radius:5px 5px 0 0; -moz-border-radius:5px 5px 0 0;}
.gb2_content{padding:10px 12px;background:#fff;border:solid 1px #e5e5e5;border-top:none; border-radius:0 0 5px 5px; -webkit-border-radius:0 0 5px 5px; -moz-border-radius:0 0 5px 5px;}

/*-------- Footer Contaienr 01 --------*/
.Footer01_style { min-width:160px;}
.Footer01_top_bg { padding:10px 3px; margin:0;}
.Footer01_border{background:#333;}
.Footer01_content { padding:20px 3px 8px 3px;}

/*-------- Footer Contaienr 02 --------*/
.Footer02_style { min-width:160px;}
.Footer02_top_bg { padding:10px 3px; margin:0;}
.Footer02_border{background:#fff;}
.Footer02_content { padding:20px 3px 8px 3px;}

/*-------- notitle --------*/
.notitle_container{}
/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}
.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;
}
/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
.clearfix:after{clear:both;}
.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
audio:not([controls]){display:none;}
html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
a:hover,a:active{outline:0;}
sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;}
#map_canvas img,.google-maps img{max-width:none;}
button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
button,input{*overflow:visible;line-height:normal;}
button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}
label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;}
input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
textarea{overflow:auto;vertical-align:top;}
@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;}
a{color:#0088cc;text-decoration:none;}
a:hover,a:focus{color:#005580;text-decoration:underline;}
.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);}
.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;}
.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;}
.row:after{clear:both;}
[class*="span"]{float:left;min-height:1px;margin-left:20px;}
.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
.span12{width:940px;}
.span11{width:860px;}
.span10{width:780px;}
.span9{width:700px;}
.span8{width:620px;}
.span7{width:540px;}
.span6{width:460px;}
.span5{width:380px;}
.span4{width:300px;}
.span3{width:220px;}
.span2{width:140px;}
.span1{width:60px;}
.offset12{margin-left:980px;}
.offset11{margin-left:900px;}
.offset10{margin-left:820px;}
.offset9{margin-left:740px;}
.offset8{margin-left:660px;}
.offset7{margin-left:580px;}
.offset6{margin-left:500px;}
.offset5{margin-left:420px;}
.offset4{margin-left:340px;}
.offset3{margin-left:260px;}
.offset2{margin-left:180px;}
.offset1{margin-left:100px;}
.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;}
.row-fluid:after{clear:both;}
.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;}
.row-fluid [class*="span"]:first-child{margin-left:0;}
.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;}
.row-fluid .span12{width:100%;*width:99.94680851063829%;}
.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;}
.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;}
.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;}
.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;}
.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;}
.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;}
.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;}
.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;}
.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;}
.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;}
.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;}
.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;}
.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;}
.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;}
.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;}
.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;}
.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;}
.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;}
.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;}
.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;}
.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;}
.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;}
.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;}
.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;}
.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;}
.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;}
.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;}
.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;}
.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;}
.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;}
.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;}
.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;}
.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;}
.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;}
.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;}
[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;}
[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;}
.container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;}
.container:after{clear:both;}
.container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
.container-fluid:after{clear:both;}
.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;}
.btn-group+.btn-group{margin-left:5px;}
.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.btn-group>.btn+.btn{margin-left:-1px;}
.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;}
.btn-group>.btn-mini{font-size:10.5px;}
.btn-group>.btn-small{font-size:11.9px;}
.btn-group>.btn-large{font-size:17.5px;}
.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;}
.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;}
.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;}
.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;}
.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;}
.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;}
.btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;}
.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;}
.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;}
.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;}
.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;}
.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;}
.btn .caret{margin-top:8px;margin-left:0;}
.btn-large .caret{margin-top:6px;}
.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;}
.btn-mini .caret,.btn-small .caret{margin-top:8px;}
.dropup .btn-large .caret{border-bottom-width:5px;}
.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;}
.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;}
.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}
.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;}
.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
.nav{margin-left:0;margin-bottom:20px;list-style:none;}
.nav>li>a{display:block;}
.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;}
.nav>li>a>img{max-width:none;}
.nav>.pull-right{float:right;}
.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
.nav li+.nav-header{margin-top:9px;}
.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;}
.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
.nav-list>li>a{padding:3px 15px;}
.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;}
.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;}
.nav-tabs:after,.nav-pills:after{clear:both;}
.nav-tabs>li,.nav-pills>li{float:left;}
.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;}
.nav-tabs{border-bottom:1px solid #ddd;}
.nav-tabs>li{margin-bottom:-1px;}
.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;}
.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;}
.nav-stacked>li{float:none;}
.nav-stacked>li>a{margin-right:0;}
.nav-tabs.nav-stacked{border-bottom:0;}
.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;}
.nav-pills.nav-stacked>li>a{margin-bottom:3px;}
.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;}
.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
.nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;}
.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580;}
.nav-tabs .dropdown-toggle .caret{margin-top:8px;}
.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;}
.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;}
.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;}
.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);}
.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;}
.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;}
.tabbable:after{clear:both;}
.tab-content{overflow:auto;}
.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;}
.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;}
.tab-content>.active,.pill-content>.active{display:block;}
.tabs-below>.nav-tabs{border-top:1px solid #ddd;}
.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;}
.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;}
.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;}
.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;}
.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;}
.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;}
.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;}
.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;}
.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;}
.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;}
.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;}
.nav>.disabled>a{color:#999999;}
.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;}
.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;}
.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;}
.navbar-inner:after{clear:both;}
.navbar .container{width:auto;}
.nav-collapse.collapse{height:auto;overflow:visible;}
.navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}
.navbar-text{margin-bottom:0;line-height:40px;color:#777777;}
.navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;}
.navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;}
.navbar .btn,.navbar .btn-group{margin-top:5px;}
.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;}
.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;}
.navbar-form:after{clear:both;}
.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;}
.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;}
.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;}
.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;}
.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
.navbar-fixed-top{top:0;}
.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);}
.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);}
.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
.navbar .nav.pull-right{float:right;margin-right:0;}
.navbar .nav>li{float:left;}
.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;}
.navbar .nav .dropdown-toggle .caret{margin-top:8px;}
.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;}
.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);}
.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;}
.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;}
.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;}
.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;}
.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;}
.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;}
.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;}
.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;}
.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;}
.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;}
.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;}
.navbar-inverse .brand{color:#999999;}
.navbar-inverse .navbar-text{color:#999999;}
.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;}
.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;}
.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;}
.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;}
.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;}
.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;}
.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;}
.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;}
.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
.tooltip.top{margin-top:-3px;padding:5px 0;}
.tooltip.right{margin-left:3px;padding:0 5px;}
.tooltip.bottom{margin-top:3px;padding:5px 0;}
.tooltip.left{margin-left:-3px;padding:0 5px;}
.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;}
.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;}
.popover.right{margin-left:10px;}
.popover.bottom{margin-top:10px;}
.popover.left{margin-left:-10px;}
.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;}
.popover-content{padding:9px 14px;}
.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}
.popover .arrow{border-width:11px;}
.popover .arrow:after{border-width:10px;content:"";}
.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;}
.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;}
.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;}
.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;}
.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;}
.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}
.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
.modal.fade.in{top:10%;}
.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;}
.modal-header h3{margin:0;line-height:30px;}
.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;}
.modal-form{margin-bottom:0;}
.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;}
.modal-footer:after{clear:both;}
.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;}
.modal-footer .btn-group .btn+.btn{margin-left:-1px;}
.modal-footer .btn-block+.btn-block{margin-left:0;}
.dropup,.dropdown{position:relative;}
.dropdown-toggle{*margin-bottom:-3px;}
.dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";}
.dropdown .caret{margin-top:8px;margin-left:2px;}
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;}
.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;}
.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;}
.open{*z-index:1000;}.open>.dropdown-menu{display:block;}
.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990;}
.pull-right>.dropdown-menu{right:0;left:auto;}
.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";}
.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:hover>.dropdown-menu{display:block;}
.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;}
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;}
.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.accordion{margin-bottom:20px;}
.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.accordion-heading{border-bottom:0;}
.accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
.accordion-toggle{cursor:pointer;}
.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
.carousel{position:relative;margin-bottom:20px;line-height:1;}
.carousel-inner{overflow:hidden;width:100%;position:relative;}
.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;}
.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;}
.carousel-inner>.active{left:0;}
.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;}
.carousel-inner>.next{left:100%;}
.carousel-inner>.prev{left:-100%;}
.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;}
.carousel-inner>.active.left{left:-100%;}
.carousel-inner>.active.right{left:100%;}
.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;}
.carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);}
.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;}
.carousel-indicators .active{background-color:#fff;}
.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);}
.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;}
.carousel-caption h4{margin:0 0 5px;}
.carousel-caption p{margin-bottom:0;}
.pull-right{float:right;}
.pull-left{float:left;}
.hide{display:none;}
.show{display:block;}
.invisible{visibility:hidden;}
.affix{position:fixed;}
.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;}
.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;}
.visible-phone{display:none !important;}
.visible-tablet{display:none !important;}
.hidden-desktop{display:none !important;}
.visible-desktop{display:inherit !important;}
@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;}
@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}
