﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


@charset "utf-8";
/* CSS Document */

/*-------------------------------------*/
/* ADMIN CONTROL PANEL - TEMPORARY */
/*-------------------------------------*/
	.ControlPanel {}
	form #dnnCPWrap {
		height:36px;
		padding:0;
		-webkit-box-shadow: 	0 1px 3px 0px rgba(0, 0, 0, 0.55);
		box-shadow: 			0 1px 3px 0px rgba(0, 0, 0, 0.55);
	}
	#dnnCPWrap #RibbonBar_ControlPanel{width:960px;}
	
	/* Navigation */
	#dnnCPWrap #RibbonBar_adminMenus{}
	#dnnCPWrap ul.dnnadminmega { padding-top:0; }
	#dnnCPWrap .dnnCPHMode {}
	#RibbonBar_adminMenus > ul,
	#dnn_cp_RibbonBar_adminMenus > ul{
		height:35px;
		border-right:1px solid #eee;
		border-left:1px solid #aaa;
	}
	#RibbonBar_adminMenus > ul > li,
	#dnn_cp_RibbonBar_adminMenus > ul > li
	{margin-right:0}
	#RibbonBar_adminMenus > ul > li > a,
	#dnn_cp_RibbonBar_adminMenus > ul > li > a {
		display:block;
		padding:8px 16px;
		text-decoration:none;
		color:#444;
		text-shadow:0px 1px 0px rgba(255,255,255,0.7);
		border-right:1px solid #aaa;
		border-left:1px solid #eee;
	}
	#RibbonBar_adminMenus > ul > li > a:hover,
	#dnn_cp_RibbonBar_adminMenus > ul > li > a:hover {
		color:#333;
		background: #f2f2f2; /* Old browsers */
		background: -moz-linear-gradient(top,  #f2f2f2 0%, #c4c4c4 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f2f2f2 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
	}
	#RibbonBar_adminMenus .dnnadminmega .megaborder,
	#dnn_cp_RibbonBar_adminMenus  .dnnadminmega .megaborder {
		top:25px;
	}
	
	
	/* Mode */
	#dnnCPWrap .dnnCPHNav {
		margin-top:5px;
	}
	#dnnCPWrap .dnnCPHNav select {
		padding:2px;
		margin-bottom:0;
	}
	#dnnCPWrap .dnnCPHNav span {
		display:inline-block;
		margin-right:8px;
	}


/*-------------------------------------*/
/* MODULE ACTIONS - TEMPORARY */
/*-------------------------------------*/

	.DnnModule {
		position:relative;
		/*z-index:902;*/
	}
	.dnnActionMenu {
		position:absolute;
		left:10px; top:10px;
		margin:0; padding:0;
		z-index:3;
		color:#000;
	}
	/* Button */
	.dnnActionMenuTag {
		display:block;
		height:16px;
		min-width:65px;
		padding:5px 10px;
		background:#efefef;
		border:1px #999 solid;
		border-radius:3px;
		-moz-border-radius:3px;
		line-height:16px;
		font-weight:bold;
		font-size:11px;
		cursor:default;
	}
	.dnnActionMenuTag img {
		float:left;
		display:block;
		padding-right:3px;
	}
	/* Action Menu Body */
	ul.dnnActionMenuBody {
		display:none;
		position:absolute;
		left:0;
		top:10;
		min-width:320px;
		padding:18px;
		background:#fff;
		border:1px solid #ddd;
		border-radius:3px;
		-moz-border-radius:3px;
		text-align:left;
		-moz-box-shadow:		0 0 5px 0 rgba(0,0,0,0.35);
		-webkit-box-shadow:		0 0 5px 0 rgba(0,0,0,0.35);
		box-shadow:				0 0 5px 0 rgba(0,0,0,0.35);
		z-index: 10;
	}
	ul.dnnActionMenuBody li {
		list-style:none;
	}
	ul.dnnActionMenuBody li span {
		clear:both;
		display:block;
		margin-bottom:10px;
		border-bottom:1px solid #ddd;
		font-weight:bold;
	}
	/* Sub ul */
	ul.dnnActionMenuBody li ul {
		margin:0 0 12px 0;
	}
	ul.dnnActionMenuBody li ul li {
		float:left;
		width:150px;
	}
	ul.dnnActionMenuBody li ul li a {
		text-decoration:none;
		font-size:12px;
	}
	ul.dnnActionMenuBody li ul li a img {
		display:block;
		float:left;
		min-height:16px;
		padding-right:3px;
		line-height:16px;
	}
	/* List of Form Actions */
	.dnnActions {
		display:block;
	}
	.dnnActions li {
		margin-right:5px;
		list-style:none;
		float:left;
	}


/*-------------------------------------*/
/* EDIT STATE Z-INDEX MANAGEMENT */
/*-------------------------------------*/

/* Set Z-index of module action menus on edit state */
.dnnEditState .actionMenu{ z-index:3; } 
.dnnEditState .actionMenu:hover{ z-index:4; }

/* Set Z-index of Control Panel */
body > form #ControlBar_ControlPanel { z-index:1001 !important; /* set higher than module action menus */ }

/* Set Z-index of Telerik Dropdowns */
body > form > .rcbSlide { z-index:6000!important;} 

/* Set Z-index of Telerik Tree context menu */
body > form > .RadMenu_Context { z-index: 1000 !important;} 


@import url('https://fonts.googleapis.com/css?family=Roboto:300');

@import url("https://fonts.googleapis.com/css?family=Roboto:300");

html,body {
	font-family:'Roboto', sans-serif;
	font-size:20px;
    font-weight:300;
	line-height:28px;
	margin:0px;
	padding: 0;
	width:100%;
	height:100%;
	min-height:100%;
}

body.glit-userisadmin{
    margin-left: 0 !important;
    padding-left: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.Normal, .NormalDisabled, .NormalDeleted {
	font-family:'Roboto', sans-serif;
	font-size:20px;
	line-height:28px;
    font-weight:300;
}
body { 
	height:100%;
	min-height:100%;
	position:absolute;
}
.DNNEmptyPane{
    display:none;
}
#Form {
    height:100%;
}
img {max-width:100%;}
body .nopaddingbottom {padding-bottom:0;}
ul ul, ul ol, ol ol, ol ul { margin-left:0; }
.footer {padding:30px 0 0 0;}
.copyrightrow > * {display:inline-block; float:left; padding-right:20px;}
.copyrightrow a {text-decoration:none;}
#desktopnavirow {position:fixed;width:100%;z-index:1;top:0;}
.glit-userisadmin #desktopnavirow {top:53px}
.glit-iseditmode #desktopnavirow {position:relative;top:0px}
#mobilenavirow {position:fixed;width:100%;z-index:100;top:0;}
.glit-iseditmode #mobilenavirow,
.glit-userisadmin #mobilenavirow {position:relative;}
#desktopnavirow [class*="col-"],
#mobilenavirow [class*="col-"] {padding-bottom:0;}
#contentwrapper {min-height:300px;padding-top:30px;}

.center {text-align:center;}

.transition {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rounded {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#scroll_top {
    bottom: 5px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 5px;
    padding:0 5px;
    z-index: 200;
    display: none;
}
#logo img {
    width:200px
}
#logoTablet {
    width:170px;
}

.glitmoduleanchor{
position:absolute;
margin-top:-100px;
}
.footer .title {
    text-decoration: none;
    font-size: 25px;
    line-height: 32px;
    padding: 10px 0 11px 0;
    display: block;
}

.copyright{
    padding:10px 0;
}
.footer a,
.copyright a {
    text-decoration:none;
}
.copyright a,
.copyright #dnn_dnnLogin_loginGroup,
.copyright #dnn_dnnRegister_registerLink {
    display:inline-block;
    float:left;
    padding-right:15px;
}

.right a, .right .loginGroup{float:right!important;}
.nopaddingbottom.small{font-size:small;}
.copyright .loginGroup{padding-right:0!important;}

.highlight {
    padding:15px;
}
.noexternicon .glit.external.icon {display:none;}

section.glitBase_Standard.iconasbackground{background-position:50% 50%;background-repeat:no-repeat;background-size:cover}section.glitBase_Standard.iconasbackground img.moduleIcon{display:none}section.glitBase_Standard.parallax{background-position:50% 50%;background-repeat:no-repeat;background-attachment:fixed;background-size:cover}section.glitBase_Standard.parallax img.moduleIcon{display:none}@supports (-webkit-appearance:none){section.glitBase_Standard.parallax{will-change:transform;}}.kenburns{width:100%;height:50vw;margin:0 auto;overflow:hidden;position:relative}.kenburns img{width:100%;animation:kenburns 40s ease;position:absolute}

.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.glitPageIconLarge{width:100%;height:500px;background-position:center center;background-size:cover}.glitPageIconLarge.tabid56{height:100vh}.glit.external.filetype,.glit.external.icon{color:#89a;font-size:.8em;padding:0 .5em;font-variant:small-caps}.glit.external.filetype::before{content:"["}.glit.external.filetype::after{content:"]"}.root .glit.external.icon,.footer .glit.external.icon,.copyright .glit.external.icon{display:none}.slick-dots{margin-left:0}#dnnExtensions .dnnGrid td,#dnnExtensions .dnnGrid th{padding:0 0!important}@media screen and (max-width:750px){iframe.youtube{max-width:100% !important}}.\\5bRole\:Administrator\]{display:none}

[class*="col-"]{margin:0;padding:0}.container{margin:0 auto;box-sizing:border-box;padding:0 15px}*:before,*:after{box-sizing:border-box}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;box-sizing:border-box;padding-bottom:30px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}}.table-responsive{margin-bottom:15px;width:100%;min-height:.01%;overflow-x:auto}.table{max-width:100%;width:100%}.col-FullWidth{clear:both;float:none!important}

@charset "UTF-8";
.eds_news_glit {
    margin-bottom: 30px;
}

.eds_news_glit * {
    box-sizing: border-box;
}

.eds_news_glit.eds_subCollection_news {
    line-height: 1.3;
    font-size: 13px;
}

.eds_news_glit.eds_subCollection_news div,
.eds_news_glit.eds_subCollection_news span,
.eds_news_glit.eds_subCollection_news p,
.eds_news_glit.eds_subCollection_news a,
.eds_news_glit.eds_subCollection_news small,
.eds_news_glit.eds_subCollection_news strong,
.eds_news_glit.eds_subCollection_news b,
.eds_news_glit.eds_subCollection_news u,
.eds_news_glit.eds_subCollection_news i,
.eds_news_glit.eds_subCollection_news dl,
.eds_news_glit.eds_subCollection_news dt,
.eds_news_glit.eds_subCollection_news dd,
.eds_news_glit.eds_subCollection_news li,
.eds_news_glit.eds_subCollection_news label,
.eds_news_glit.eds_subCollection_news th,
.eds_news_glit.eds_subCollection_news td {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.eds_news_glit.eds_subCollection_news:after,
.eds_news_glit.eds_subCollection_news .edn_clearFix:after {
    display: block;
    content: "";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
}

.eds_news_glit.eds_subCollection_news a {
    text-decoration: none;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.eds_news_glit.eds_subCollection_news a:hover {
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_news a>img {
    border: none;
}

.eds_news_glit.eds_subCollection_news p {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news p+p {
    margin-top: 15px;
}

.eds_news_glit.eds_subCollection_news ul,
.eds_news_glit.eds_subCollection_news ol {
    margin-left: 15px;
}

.eds_news_glit.eds_subCollection_news ul {
    list-style-type: disc;
}

.eds_news_glit.eds_subCollection_news ul ul {
    list-style-type: circle;
}

.eds_news_glit.eds_subCollection_news ul ul ul {
    list-style-type: square;
}

.eds_news_glit.eds_subCollection_news ol {
    list-style-type: decimal;
}

.eds_news_glit.eds_subCollection_news ol ol {
    list-style-type: upper-roman;
}

.eds_news_glit.eds_subCollection_news ol ol ol {
    list-style-type: lower-roman;
}

.eds_news_glit.eds_subCollection_news .fa {
    line-height: 1;
}

.eds_news_glit.eds_subCollection_news .edn_articleSummary {
    font-size: 13px;
    line-height: 1.3;
}

.eds_news_glit.eds_subCollection_news .edn_article .edn_articleTitle {
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article .edn_articleSubTitle {
    font-size: 16px;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer {
    max-width: 100%;
    float: left;
    margin: 5px 15px 30px 0;
    position: relative;
    border: solid 1px #ddd;
    padding: 3px;
    position: relative;
    overflow: hidden;
    line-height: 0;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    transition: all 250ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-indent: -99999px;
    outline: none;
    -moz-outline-style: none;
    background: transparent url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/blank.png");
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer>img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer .edn_galleryLink {
    position: absolute;
    display: inline-block;
    bottom: 3px;
    right: 3px;
    left: auto;
    top: auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 100px 0 0 0;
    text-decoration: none;
    text-align: center;
    line-height: 0;
    font-size: 0;
    text-indent: 0;
    width: 100px;
    height: 100px;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:before {
    line-height: 1;
    font-family: "FontAwesome";
    content: "";
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    position: absolute;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -7px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer .edn_galleryLink>span {
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover:before {}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: table;
    margin-top: 3px;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime {
        display: block;
        width: 100%;
    }
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time {
    background-color: #3366cc;
    display: table-cell;
    vertical-align: middle;
    padding: 8px;
    text-align: center;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time {
        display: block;
    }
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time>span {
    display: block;
    color: #fff;
    line-height: 1.2;
    font-size: 22px;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time>span {
        display: inline;
        padding: 0 5px;
    }
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time>span:first-child {
    font-size: 26px;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>time>span:last-child {
    font-size: 13px;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a {
    position: relative;
    display: table-cell;
    overflow: hidden;
    text-indent: 0;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a {
        display: block;
    }
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a:after {
    position: absolute;
    content: "";
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a>img {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a>img {
        width: 100%;
    }
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a .edn_mediaLink {
    position: absolute;
    right: 5%;
    bottom: 5%;
    color: #fff;
    opacity: 0;
    border: solid 1px #fff;
    border-radius: 3px;
    padding: 5px;
    line-height: 1;
    font-size: 12px;
    z-index: 2;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a:hover:after,
.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a:hover .edn_mediaLink {
    opacity: 1;
}

.eds_news_glit.eds_subCollection_news .edn_mediaContainer.edn_withTime>a:hover>img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.eds_news_glit.eds_subCollection_news .edn_galleryImagesContainer {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_galleryImagesContainer img {
    max-width: 100%;
    height: auto;
}

.eds_news_glit.eds_subCollection_news .edn_galleryImagesContainer:before {
    content: "";
    display: inline-block;
    font-family: "FontAwesome";
    line-height: 0;
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    opacity: 0.7;
    color: #B0B0B0;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -18px;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    position: absolute;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions {
    line-height: 1;
    font-size: 13px;
    position: relative;
    z-index: 999;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a,
.eds_news_glit.eds_subCollection_news .admin_action {
    display: inline-block;
    margin: 10px 5px 10px 0;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    padding: 5px;
    text-decoration: none;
    line-height: 1;
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a:hover,
.eds_news_glit.eds_subCollection_news .admin_action:hover {
    text-decoration: underline;
    box-shadow: 0 0 2px 0 #fff inset;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a:hover:before,
.eds_news_glit.eds_subCollection_news .admin_action:hover:before {
    opacity: 1;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a:before,
.eds_news_glit.eds_subCollection_news .admin_action:before {
    font-family: "FontAwesome";
    display: inline-block;
    margin-right: 5px;
    font-size: 15px;
    opacity: 0.8;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a.edit,
.eds_news_glit.eds_subCollection_news .admin_action.edit {
    color: #f89e00;
    border-color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a.edit:before,
.eds_news_glit.eds_subCollection_news .admin_action.edit:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a.publish_article,
.eds_news_glit.eds_subCollection_news .admin_action.publish_article {
    color: #619c1c;
    border-color: #4c771d;
}

.eds_news_glit.eds_subCollection_news .edn_adminActions>a.publish_article:before,
.eds_news_glit.eds_subCollection_news .admin_action.publish_article:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_metaDetails {
    font-size: 12px;
    line-height: 1.2;
    color: #6e6e6e;
}

.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberComments,
.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
    font-family: "FontAwesome";
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -10%;
    font-size: 18px;
}

.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberComments:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_readMoreButtonWrapper {
    margin: 10px 0;
}

.eds_news_glit.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
    display: inline-block;
    border: 1px solid #3366cc;
    background: none #fff;
    text-shadow: none;
    text-decoration: none;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    box-shadow: none;
    color: #3366cc;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
    color: #fff;
    background-color: #3366cc;
    text-decoration: none;
    box-shadow: none;
}

.eds_news_glit.eds_subCollection_news .fb-comments,
.eds_news_glit.eds_subCollection_news .fb-comments iframe[style],
.eds_news_glit.eds_subCollection_news .fb-comments>span {
    width: 100% !important;
}

.eds_news_glit.eds_subCollection_news .fb_comments_count {
    margin: 0 !important;
    display: inline !important;
}

.eds_news_glit.eds_subCollection_news .edn_article_map {
    margin: 30px 0;
}

.eds_news_glit.eds_subCollection_news .addthis_toolbox {
    float: left;
}

.eds_news_glit.eds_subCollection_news .addthis_toolbox>a {
    height: 30px !important;
}

.eds_news_glit.eds_subCollection_news .addthis_toolbox .addthis_button_linkedin_counter {
    margin-right: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_Share {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0 10px;
}

.eds_news_glit.eds_subCollection_news .edn_Share .edn_socialShareButton {
    font-size: 18px;
    color: #6e6e6e;
}

.eds_news_glit.eds_subCollection_news .edn_Share>div {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    padding: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_Share:hover>div {
    display: block;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails {
    padding: 10px;
    margin: 10px 0;
    border-top: 1px solid #cac7c7;
    border-bottom: 1px solid #cac7c7;
    box-shadow: 0 2px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
    background-color: #f8f8f8;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .eds_openModal {
    float: right;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventLocation {
    padding: 5px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before {
    content: "";
    font-family: "FontAwesome";
    color: #3366cc;
    margin-right: 5px;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails>ul {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails>ul li {
    list-style-type: disc;
    margin: 2px 0 2px 15px;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
    display: block;
    padding: 5px;
    font-style: italic;
    color: #3b3b3b;
    background-color: #c0dcfe;
    border: solid 1px #95c1f1;
    border-radius: 4px;
    margin-top: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
    font-style: normal;
    padding: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
    margin: 7px 0;
    padding: 0;
    height: 1px;
    border: none;
    border-bottom: dashed 1px #79a8cd;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
    color: #0076b5;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
    color: #db0000;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
    display: inline-block;
    border: solid 1px #659ad9;
    border-radius: 4px;
    color: #0093de;
    padding: 5px;
    line-height: 1;
    margin-top: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
    text-decoration: none;
    color: #0b65ac;
}

.eds_news_glit.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
    float: right;
    clear: right;
    margin: 7px;
    font-size: 22px;
}

.eds_news_glit.eds_subCollection_news .edn_listEventDetails {
    color: #969696;
    font-size: 13px;
    line-height: 1.3;
}

.eds_news_glit.eds_subCollection_news .edn_listEventDetails>span {
    margin-right: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_listEventDetails>span:before {
    font-family: "FontAwesome";
    color: #3366cc;
    margin-right: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_listEventDetails>span.edn_eventLocation:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_listEventDetails>span.edn_eventDate:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox {
    border: solid 2px #e5e5e5;
    border-radius: 4px;
    background-color: #fff;
    margin: 15px 0;
    padding: 15px 15px 10px;
    box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
    clear: both;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox h2 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox h2 span {
    position: relative;
    padding: 0 0 6px;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox h2 span:after {
    border-bottom: 3px solid #cd1301;
    bottom: -2px;
    left: 0;
    position: absolute;
    right: 0;
    content: "";
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox ul {
    margin: 20px 0 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox ul li {
    list-style-type: none;
    margin: 0;
    padding: 0 0 5px 20px;
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox ul li:before {
    color: #3366cc;
    content: "";
    font: 13px/1.3 FontAwesome;
    left: 0;
    position: absolute;
    top: 0;
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox ul li a {
    margin-right: 7px;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox ul li span {
    font-style: italic;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: -9px;
    margin-right: -9px;
    line-height: 0;
    font-size: 0;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
        margin-left: 0;
        margin-right: 0;
    }
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    padding: 0 9px;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: top;
    border-right: dashed 1px #acacac;
    max-width: 100%;
    line-height: 0;
    height: 175px;
    overflow: hidden;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
        display: block;
        border: none;
        padding: 0 0 6px;
        overflow: hidden;
        width: auto !important;
        height: auto;
    }
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li:nth-child(5n) {
    border: none;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
    max-width: 100%;
    display: block;
    margin: 0;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    width: 100%;
    margin-bottom: 5px;
}

@media handheld,
only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
    .eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
        float: left;
        margin: 2px 10px 5px 0;
    }
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
    display: block;
    font-size: 13px;
    font-style: normal;
    line-height: 1.1;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li:before {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
    border: 1px dashed #bfbfbf;
    background-color: #EDEDED;
    box-shadow: 0 0 0 5px #fff inset;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
    color: #424344;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: solid 1px #F7F5F5;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before {
    content: "";
    font-size: 16px;
    color: #504e4e;
    line-height: 1.1;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_doc:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_docx:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odt:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xls:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xlsx:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ods:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_zip:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_rar:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_7z:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wav:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wma:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogg:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_flac:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp3:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_png:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_gif:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpg:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpeg:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpg:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpeg:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp4:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xvid:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wmv:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogv:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mov:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_avi:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mkv:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ppt:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pptx:before,
.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odp:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
    font-style: normal;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
    color: #000;
    font-style: normal;
}

.eds_news_glit.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
    color: #999;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container {
    margin: 15px 0;
    border: solid 1px #E5E5E5;
    border-radius: 4px;
    padding: 5px;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr td {
    padding: 5px 30px;
    border-bottom: solid 1px #eee;
    vertical-align: top;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon:before {
    content: "";
    font-family: "FontAwesome";
    color: #3366cc;
    margin-right: 5px;
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr td .EDN_cf_checkboxList {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr td .EDN_cf_checkboxList li {
    list-style-type: none;
    padding: 0 0 3px;
    margin: 0;
    line-height: 1.5;
}

.eds_news_glit.eds_subCollection_news .EDN_cf_all_fields_container>table tr:last-child td {
    border: none;
}

.eds_news_glit.eds_subCollection_news .eds_openModal {
    display: inline-block;
    border: 1px solid #e78a04;
    background-color: #f9ab3c;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .eds_openModal:hover {
    background-color: #e78a04;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBarWrapper {
    margin-top: 15px;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBarWrapper>h4 {
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar {
    display: inline-block;
    margin-left: 30px;
    vertical-align: middle;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span {
    line-height: 0;
    font-size: 0;
    display: inline-block;
    margin-right: 10px;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span>input[type=radio] {
    display: none;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span>input[type=radio]:checked+label {
    padding: 5px 15px 5px 40px;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span>input[type=radio]:checked+label:before {
    width: 25px;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span>label {
    position: relative;
    line-height: 1;
    font-size: 15px;
    font-weight: normal;
    vertical-align: middle;
    margin: 0;
    display: inline-block;
    padding: 5px 15px;
    border: solid 1px #3366cc;
    border-radius: 5px;
    background-color: #fff;
    color: #3366cc;
    overflow: hidden;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
    -webkit-transition: padding 200ms linear;
    -moz-transition: padding 200ms linear;
    -ms-transition: padding 200ms linear;
    -o-transition: padding 200ms linear;
    transition: padding 200ms linear;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span>label:before {
    background-color: #dbdbdb;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    color: #fff;
    font-family: "FontAwesome";
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    -webkit-transition: width 200ms linear;
    -moz-transition: width 200ms linear;
    -ms-transition: width 200ms linear;
    -o-transition: width 200ms linear;
    transition: width 200ms linear;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue1>label:hover {
    color: #619c1c;
    border-color: #619c1c;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue2>label:hover {
    color: #d61603;
    border-color: #d61603;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue3>label:hover {
    color: #f89e00;
    border-color: #f89e00;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue1>input[type=radio]:checked+label {
    color: #619c1c;
    border-color: #619c1c;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue1>input[type=radio]:checked+label:before {
    background-color: #619c1c;
    content: "";
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue2>input[type=radio]:checked+label {
    color: #d61603;
    border-color: #d61603;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue2>input[type=radio]:checked+label:before {
    background-color: #d61603;
    content: "";
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue3>input[type=radio]:checked+label {
    color: #f89e00;
    border-color: #f89e00;
}

.eds_news_glit.eds_subCollection_news .eds_signUpActionBar>div>span.eds_optionValue3>input[type=radio]:checked+label:before {
    background-color: #f89e00;
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper {
    margin: 20px 0;
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper a {
    text-align: right;
    border-top: solid 1px #eee;
    border-bottom: solid 1px #eee;
    background-color: #f8f8f8;
    padding: 3px 10px;
    display: block;
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper a span {
    display: inline-block;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper a span:before {
    content: "";
    font-family: "FontAwesome";
    margin-right: 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper a:hover {
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
}

.eds_news_glit.eds_subCollection_news .edn_toolTip {
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
    position: absolute;
    bottom: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity linear 400ms;
    -moz-transition: opacity linear 400ms;
    -ms-transition: opacity linear 400ms;
    -o-transition: opacity linear 400ms;
    transition: opacity linear 400ms;
    line-height: 0;
    font-size: 0;
    z-index: 9999;
    margin-bottom: 3px;
}

.eds_news_glit.eds_subCollection_news .edn_toolTip:hover .edn_toolTipContent {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
    border: solid 1px transparent;
    border-radius: 4px;
    padding: 4px 10px;
    display: inline-block;
    max-width: 400px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_news .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
    left: 0;
}

.eds_news_glit.eds_subCollection_news .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
    right: 0;
}

.eds_news_glit.eds_subCollection_news .edn_calendarExport:after {
    content: "";
    font-family: "FontAwesome";
    display: inline-block;
    font-weight: normal;
    font-style: normal;
    margin-left: 5px;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_calendarExport:hover:after {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
    white-space: nowrap;
}

.eds_news_glit .edn_module_title {
    margin: 0 0 15px;
    padding: 0;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 24px;
    line-height: 1.1;
}

.eds_news_glit .fa {
    font-family: "FontAwesome" !important;
}

.eds_news_glit.eds_subCollection_calendar {
    line-height: 1.3;
    font-size: 13px;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_calendar span,
.eds_news_glit.eds_subCollection_calendar a,
.eds_news_glit.eds_subCollection_calendar li,
.eds_news_glit.eds_subCollection_calendar td,
.eds_news_glit.eds_subCollection_calendar table {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.eds_news_glit.eds_subCollection_calendar a {
    text-decoration: none;
    color: #3366cc;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.eds_news_glit.eds_subCollection_calendar a:hover {
    color: #504e4e;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_calendar .fa {
    line-height: 1;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table {
    width: 100%;
    line-height: 0;
    font-size: 0;
    border: solid 1px #3366cc !important;
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection {
    background-color: #fff;
    border: solid 1px #3366cc;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td {
    padding: 12px;
    color: #3366cc;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a {
    text-decoration: none !important;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0;
    line-height: 1;
    border: solid 1px #3366cc;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover {
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:hover:before {
    color: #fff;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months a:before {
    display: inline-block;
    color: #3366cc;
    content: "";
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table .month_selection td.next_prev_months:first-child a:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.week_days {
    font-size: 12px;
    color: #fff;
    background-color: #3366cc;
    line-height: 1;
    padding: 8px;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day {
    font-size: 13px;
    line-height: 1;
    color: #504e4e;
    padding: 4px;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day>span,
.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day>a {
    display: block;
    padding: 7px;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day>a {
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day>a:hover {
    color: #fff !important;
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.today {
    position: relative;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.today:after {
    border: solid 1px #ddd;
    border-radius: 0 0 2px 2px;
    border-top-width: 3px;
    content: "";
    top: 0;
    right: 1px;
    bottom: 1px;
    left: 1px;
    position: absolute;
    z-index: 0;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts>a {
    color: #3366cc;
    border: solid 1px #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts>a:hover {
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_posts.has_events>a {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events>a {
    color: #FFA100;
    border: solid 1px #FFA100;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.has_events>a:hover {
    background-color: #FFA100;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.other_month>a,
.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.other_month>span {
    opacity: 0.4;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container .calendar_table td.day.selected>a {
    font-weight: bold;
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.week_days {
        display: none;
    }
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day {
    vertical-align: top;
    padding: 10px;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day {
        display: none;
    }
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day.selected>a,
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>a:hover {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>ul {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>ul>li {
    list-style-type: none;
    margin: 3px 0;
    padding: 0;
    text-align: left;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>ul>li>a {
    display: block;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    padding: 3px;
    border-color: #3366cc;
    font-size: 11px;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>ul>li>a:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day>ul>li.event>a {
    border-color: #FFA100;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day.has_posts,
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day.has_events {
        display: block;
        height: auto !important;
        width: 100% !important;
        text-align: left;
    }
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day.other_month {
        display: none;
    }
}

.eds_news_glit.eds_subCollection_calendar .callendar_table_container.advanced .calendar_table td.day.today:after {
    top: 5px;
    right: 6px;
    bottom: 6px;
    left: 6px;
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions {
    margin-bottom: 5px;
    text-align: right;
    font-size: 0;
    line-height: 0;
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a {
    display: inline-block;
    margin-left: 5px;
    padding: 3px 5px;
    border: solid 1px #ddd;
    color: #3366cc;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: #fff;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a:hover {
    color: #504e4e;
    border: solid 1px #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a:before {
    font-family: "FontAwesome";
    margin-right: 5px;
    font-weight: normal;
    font-style: normal;
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a.articles_by_month:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a.icalendar_export:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a.articles_rss:before,
.eds_news_glit.eds_subCollection_calendar .top_calendar_actions>a.events_rss:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .archive_list {
    margin-top: 25px;
    border-top: solid 1px #dcdcdc;
    padding-top: 25px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li>div {
    border-bottom: solid 1px #ddd;
    padding: 3px;
    cursor: pointer;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li>div:hover .expand_collapse:before {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li>div.edn_archiveByYear a.edn_archiveLink {
    display: inline;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
    color: #504e4e;
    text-decoration: none;
    display: block;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
    color: #3366cc;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink>span {
    float: right;
    font-size: 11px;
    background-color: #3366cc;
    min-width: 20px;
    border-radius: 10px;
    padding: 4px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: normal;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li.opened>div .edn_archiveLink {
    font-weight: bold;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul li.active>div .edn_archiveLink {
    font-weight: bold;
    color: #000;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul>li .expand_collapse {
    cursor: pointer;
    display: inline-block !important;
    visibility: visible !important;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul>li .expand_collapse>span {
    display: none;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul>li .expand_collapse:before {
    content: "";
    display: inline-block;
    margin-right: 7px;
    font-family: "FontAwesome";
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul>li .expand_collapse.collapse:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .archive_list ul>li ul li>div {
    padding-left: 30px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list>ul>li:last-child>div {
    border: none;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events {
    margin-top: 30px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events .edn_module_title>a {
    float: right;
    display: inline-block;
    margin-left: 7px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events .edn_module_title>a>span {
    display: none;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events .edn_module_title>a:before {
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 20px;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events .edn_module_title .rss:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events .edn_module_title .export:before {
    content: "";
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events ul li {
    margin: 0 0 5px;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events ul li:before {
    content: "";
    display: inline-block;
    margin-right: 7px;
    font-size: 14px;
    color: #3366cc;
    font-family: "FontAwesome";
    vertical-align: top;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events ul li>a {
    color: #504e4e;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events ul li>a:hover {
    text-decoration: none;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_calendar .archive_list.events ul li>a>span {
    color: #3366cc;
    font-size: 13px;
}

.eds_news_glit.eds_subCollection_news .child_categories {
    margin-bottom: 40px;
}

.eds_news_glit.eds_subCollection_news .edn_categoryInfo {
    margin: 20px 0 30px;
    padding: 20px 0;
    border-bottom: solid 1px #ddd;
    border-top: solid 1px #ddd;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory {
    margin: 7px;
    padding: 5px;
    box-shadow: 0 0 0 1px #ddd inset;
    border-radius: 4px;
    background-color: #e5e5e5;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    max-width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory>img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory>figcaption {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 10px;
    right: 10px;
    text-align: center;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory>figcaption>span {
    display: inline-block;
    padding: 5px;
    min-width: 100px;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    line-height: 1;
    font-size: 15px;
    color: #504e4e;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_catalogCategory:hover>img {
    opacity: 1;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs>a {
    font-size: 14px;
    color: #747474;
    text-decoration: none;
    display: inline-block;
    border-bottom: solid 0 transparent;
    margin-bottom: 2px;
    -webkit-transition: border-color 200ms linear;
    -moz-transition: border-color 200ms linear;
    -ms-transition: border-color 200ms linear;
    -o-transition: border-color 200ms linear;
    transition: border-color 200ms linear;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs>a:hover {
    border-bottom-color: #3366cc;
    border-bottom-width: 2px;
    margin-bottom: 0;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs>a:last-child {
    color: #000;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs>i {
    display: none;
    margin: 0 7px;
    font-family: "FontAwesome";
    font-size: 17px;
}

.eds_news_glit.eds_subCollection_news .bread_crumbs>i+a+i {
    display: inline-block;
}

.eds_news_glit.eds_subCollection_categoryMenu {
    line-height: 1.3;
    font-size: 13px;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_categoryMenu div,
.eds_news_glit.eds_subCollection_categoryMenu span,
.eds_news_glit.eds_subCollection_categoryMenu a,
.eds_news_glit.eds_subCollection_categoryMenu li {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.eds_news_glit.eds_subCollection_categoryMenu a {
    text-decoration: none;
    color: #3366cc;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.eds_news_glit.eds_subCollection_categoryMenu a:hover {
    color: #504e4e;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_categoryMenu .fa {
    line-height: 1;
}

.eds_news_glit.eds_subCollection_categoryMenu ul {
    margin: 0 !important;
    padding: 0 !important;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child>div {
    border: none;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div {
    clear: both;
    overflow: hidden;
    padding: 3px 0 3px 90px;
    border-bottom: solid 1px #ddd;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a {
    display: none;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.edn_category,
.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.edn_articlecount,
.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.edn_rss,
.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.edn_image,
.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.edn_category,
.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div a.expand_collapse {
    display: inline-block;
    vertical-align: top;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li>div:hover .expand_collapse {
    -ms-transform: scale(1.8);
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
    cursor: pointer;
    visibility: visible !important;
    -webkit-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_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse>span {
    display: none;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before {
    content: "";
    font-family: "FontAwesome";
    font-weight: bold;
    font-size: 14px;
    margin: 0 5px;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse:before {
    content: "";
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
    float: right;
    font-size: 11px;
    background-color: #3366cc;
    min-width: 20px;
    border-radius: 10px;
    padding: 4px;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:before {
    content: "";
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 5px;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
    color: #504e4e;
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss>span {
    display: none;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image>img {
    border: solid 1px #3366cc;
    padding: 2px;
    -webkit-transition: border 200ms linear;
    -moz-transition: border 200ms linear;
    -ms-transition: border 200ms linear;
    -o-transition: border 200ms linear;
    transition: border 200ms linear;
    margin-right: 5px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover>img {
    border-color: #504e4e;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0>div {
    padding-left: 0;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1>div {
    padding-left: 15px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2>div {
    padding-left: 30px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3>div {
    padding-left: 45px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4>div {
    padding-left: 60px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5>div {
    padding-left: 75px;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened>div>.edn_category {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active>div>.edn_category {
    color: #000;
    font-weight: bold;
}

.eds_news_glit.eds_subCollection_news .article_comments {
    margin: 15px 0 20px;
}

.eds_news_glit.eds_subCollection_news .article_comments .num_of_comment {
    border: solid 1px #3366cc;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    color: #000;
    margin: 0 0 10px;
}

.eds_news_glit.eds_subCollection_news .article_comments .num_of_comment+.comment_list {
    padding-top: 10px;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list {
    margin-bottom: 30px;
    display: block;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment {
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
    padding-left: 50px;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment article>div {
    float: left;
    margin: 0 20px 0 0;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment article>div img {
    border: 1px solid #504e4e;
    border-radius: 50%;
    padding: 3px;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment article>section {
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment article>section>div {
    color: #424242;
    margin: 15px 0;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment article>section>time {
    color: #999;
    font-size: 12px;
    display: block;
    text-align: right;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .actions {
    text-align: right;
    clear: both;
    margin: 5px 0;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .actions>a {
    display: inline-block;
    border: 1px solid #909090;
    text-shadow: none;
    text-decoration: none;
    line-height: 1;
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 5px;
    border-radius: 4px;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
    background-color: #bdbdbd;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .actions>a:hover {
    background-color: #909090;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .actions>a.delete {
    background-color: #d94e49;
    border-color: #9d241e;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .actions>a.delete:hover {
    background-color: #9d241e;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
    text-align: right;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
    border: solid 1px #3366cc;
    border-radius: 6px;
    color: #666;
    padding: 5px 7px;
    width: 100%;
    box-shadow: none;
    background: none #fff;
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment.level {
    padding-left: 0;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .right_side {
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .votes {
    float: left;
    width: 40px;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .votes>div {
    display: inline-block;
    text-align: center;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .votes>div>input,
.eds_news_glit.eds_subCollection_news .article_comments .comment_list .comment .votes>div>span {
    display: block;
    margin: 0 auto;
}

.eds_news_glit.eds_subCollection_news .article_comments .comment_list+.add_comment {
    margin-top: 25px;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div {
    border: solid 1px #3366cc;
    border-radius: 4px;
    padding: 20px;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table {
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td {
    padding: 10px;
    vertical-align: top;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td {
        display: block !important;
        width: 100% !important;
        padding: 0 0 10px !important;
    }
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td.left {
    width: 15%;
    color: #424242;
    font-size: 15px;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td.right {
    width: 85%;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td input[type="text"],
.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td input[type="text"]:hover,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td input[type="text"]:focus,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td textarea,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td textarea:hover,
.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td textarea:focus {
    border: solid 1px #3366cc;
    border-radius: 6px;
    color: #666;
    padding: 5px 7px;
    width: 100%;
    box-shadow: none;
    background: none #fff;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td input[type="text"] {
    max-width: 300px;
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_news .article_comments .add_comment>div table td textarea {
    max-width: 370px;
    font-size: 13px;
    min-height: 110px;
}

.eds_news_glit.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_glit.eds_subCollection_news .user_dashboard:hover {
    background-color: #f2f2f2;
    border-color: #000;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a {
    display: block;
    float: left;
    font-size: 11px;
    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_glit.eds_subCollection_news .user_dashboard a.add_article {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/green_plus.png") no-repeat;
    padding-left: 25px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.article_manager {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/papers.png") no-repeat 0 0;
    padding-left: 28px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.event_manager {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/event_manager.png") no-repeat 0 1px;
    padding-left: 35px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.approve_articles {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
    padding-left: 22px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.approve_comments {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
    padding-left: 22px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.category_manager {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/categories.png") no-repeat 0 2px;
    padding-left: 22px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.dashboard {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/monitor.png") no-repeat 0 3px;
    padding-left: 24px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.settings {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/settings.png") no-repeat 0 1px;
    padding-left: 24px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a.author_profile {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/user_dashboard/profile.png") no-repeat 0 1px;
    padding-left: 18px;
}

.eds_news_glit.eds_subCollection_news .user_dashboard a:hover {
    color: #000 !important;
    text-decoration: none !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle {
    margin-bottom: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle+.edn_articleSubTitle {
    margin-top: -15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleSubTitle {
    margin-bottom: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails {
    margin-bottom: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails>a:before {
    content: "";
    font-family: "FontAwesome";
    color: #6e6e6e;
    font-size: 18px;
    padding-right: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
    display: inline;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
    top: 3px;
    margin-left: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_socialPrintWrapper {
    padding: 10px 0 0;
    width: 100%;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_socialPrintWrapper .edn_printButton {
    margin-left: 30px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
    border-top: dashed 1px #a8a4a4;
    border-bottom: dashed 1px #a8a4a4;
    padding: 9px 0;
    margin: 15px 0 25px;
    overflow: hidden;
    width: 100%;
    color: #3366cc;
    font-size: 12px;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags>a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 5px;
    border-radius: 3px;
    background-color: #3366cc;
    border: solid 1px #3366cc;
    text-decoration: none;
    margin: 2px 3px;
    -webkit-transition: all linear 200ms;
    -moz-transition: all linear 200ms;
    -ms-transition: all linear 200ms;
    -o-transition: all linear 200ms;
    transition: all linear 200ms;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags>a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails {
    background-color: #e5e5e5;
    border: solid 1px #cac7c7;
    border-radius: 4px;
    box-shadow: 0 0 0 4px #fff inset;
    padding: 15px;
    margin: 15px 0 0;
    color: #000;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails:after {
    content: "";
    display: block;
    width: 100%;
    line-height: 0;
    font-size: 0;
    clear: both;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>img {
    float: left;
    margin: 0 15px 5px 0;
    background-color: #f8f8f8;
    padding: 7px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>h4 {
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>h4 .button {
    margin: 0 0 0 7px;
    vertical-align: baseline;
    min-width: auto;
    min-height: auto;
    line-height: 1;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>h4 .button:before {
    content: "";
    color: #504e4e;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>h4 .button:hover:before {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails>h4 .button>span {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .edn_connectWith {
    text-align: right;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button {
    display: inline-block;
    margin: 10px 0 0 5px;
    border-radius: 4px;
    text-align: center;
    min-width: 28px;
    min-height: 28px;
    padding-left: 7px;
    padding-right: 7px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button:before {
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 14px;
    vertical-align: middle;
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact,
.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio {
    border: 1px solid #3366cc;
    background: none #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    color: #3366cc;
    line-height: 26px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact:hover,
.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio:hover {
    color: #fff;
    background-color: #3366cc;
    text-decoration: none;
    box-shadow: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact:before,
.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio:before {
    margin: -2px 5px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.contact:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.full_bio:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social {
    border: solid 1px #8d8989;
    color: #8d8989;
    line-height: 25px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social>span {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social.facebook:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social.twitter:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social.linked_in:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social.google_plus:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_authorGroupDetails .button.social:hover {
    border-color: #3366cc;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
    margin: 20px 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery>ul {
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery>ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin: 0 5px 5px 0;
    list-style-type: none;
}

.eds_news_glit.eds_subCollection_news .edn_printButton {
    float: left;
    background: #F5F4F4 url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/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_glit.eds_subCollection_news .edn_printButton>span {
    color: #333;
    line-height: 1;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 0 0 1px #fff;
}

.eds_news_glit.eds_subCollection_news .edn_printButton:hover {
    background-color: #eee;
}

.eds_news_glit.eds_subCollection_news .in_article_image {
    background-color: #e5e5e5;
    border: solid 1px #d1d2d3;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .in_article_image .image_wrapper>a {
    position: relative;
    display: block;
}

.eds_news_glit.eds_subCollection_news .in_article_image .image_wrapper>a:before {
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    content: "";
    border: solid 2px transparent;
    background-color: transparent;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

.eds_news_glit.eds_subCollection_news .in_article_image .image_wrapper>a:hover:before {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.eds_news_glit.eds_subCollection_news .in_article_image .image_title {
    margin: 5px 0 0;
    padding: 0;
    font-size: 14px;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .in_article_image .image_description {
    color: #666161;
    font-size: 12px;
}

.eds_news_glit.eds_subCollection_news .in_article_image.left {
    float: left;
    margin-right: 10px;
}

.eds_news_glit.eds_subCollection_news .in_article_image.right {
    float: right;
    margin-left: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    clear: both;
    margin: 15px 0;
    padding: 1px;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table {
    border: none;
    outline: none;
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr:first-child.edn_listOfAttendantsHeader {
    border-bottom: solid 1px #3366cc;
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr:nth-child(even) {
    background-color: #eee;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr:nth-child(odd) {
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr:hover {
    background-color: #EAEAEA;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr:hover td {
    color: #000;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr th {
    text-align: left;
    font-weight: normal;
    font-size: 15px;
    padding: 7px 10px;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr th.edn_eventUserName {
    width: 80%;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr th.edn_eventNumberOfTickets {
    text-align: center;
    width: 20%;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr td {
    padding: 3px 10px;
    border: none;
    font-size: 12px;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr td.edn_eventUserName {
    padding-right: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_listOfAttendants>table tr td.edn_eventNumberOfTickets {
    text-align: center;
}

.eds_news_glit.eds_subCollection_news .edn_article {
    margin-bottom: 35px;
}

.eds_news_glit.eds_subCollection_news .edn_article .edn_metaDetails {
    margin: 10px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article .edn_articleSummary {
    padding: 10px 0;
}

.eds_news_glit.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
    text-align: right;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
    font-size: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle {
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: dashed 1px #bfbfbf;
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
    border-top: dashed 1px #bfbfbf;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -99999px;
    z-index: 1;
    outline: none;
    -moz-outline-style: none;
    background: transparent url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/blank.png");
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle>div .admin_action {
    position: relative;
    z-index: 1;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
    margin: 0 15px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer>img {
    border: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
    font-size: 11px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
    font-size: 15px;
    color: #504e4e;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 {
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2>div .admin_action {
    position: relative;
    z-index: 3;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -99999px;
    z-index: 2;
    outline: none;
    -moz-outline-style: none;
    background: transparent url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/blank.png");
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
    font-size: 15px;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
    overflow: hidden;
    position: relative;
    margin: 0 15px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    background-color: rgba(200, 24, 5, 0.2);
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer>img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_articleSummary {
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer:after {
    opacity: 1;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer>img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle4 {
    margin-bottom: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
    margin-bottom: 3px;
    font-size: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle5 {
    margin-bottom: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
    margin-bottom: 0;
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
    margin: 3px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 {
    margin: 3px 0;
    overflow: hidden;
    padding-bottom: 2px;
    border-bottom: dotted 1px #ddd;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
    border-bottom: none !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
    margin-bottom: 0;
    font-size: 13px;
    display: inline;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
    margin: 0;
    display: inline;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before {
    font-size: 14px;
    margin-top: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails>time {
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails>time:before {
    font-family: "FontAwesome";
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions>a {
    margin-top: 0;
}

.eds_news_glit.eds_subCollection_news .edn_simpleArticle6Bullet {
    float: left;
    padding: 0 5px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_simpleArticle6Bullet:before {
    font-family: "FontAwesome";
    color: #3366cc;
    font-size: 10px;
    line-height: 0;
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox {
    display: inline-block;
    vertical-align: top;
    box-sizing: content-box;
    padding: 1.5%;
    line-height: 0;
    font-size: 0;
    max-width: 97%;
    margin-bottom: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure {
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    min-height: 100px;
    background-color: #ddd;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: transparent url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/blank.png");
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>a>span {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption .edn_articleTitle,
.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption .edn_articleSummary {
    color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption h2.edn_articleTitle {
    font-size: 20px;
    position: relative;
    margin: 0 0 5px;
    padding: 0 0 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption h2.edn_articleTitle:after {
    content: "";
    position: absolute;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption .edn_articleSubTitle {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure>figcaption .edn_articleSummary {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure .edn_metaDetails {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    margin: 0;
    color: #fff;
    padding: 5px;
    border-radius: 0 0 0 5px;
    opacity: 0.7;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure:hover>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure:hover>figcaption .edn_articleSummary {
    max-height: 150px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure:hover>figcaption h2.edn_articleTitle:after {
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox>figure:hover>figcaption .edn_articleSubTitle {
    display: block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a {
    overflow: hidden;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: solid 0 rgba(255, 255, 255, 0.4);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a>img {
    border: none;
    padding: 0;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 200ms ease-in-out;
    -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_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover:after {
    border-width: 3px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
    font-size: 18px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails>span {
    float: right;
    margin: 0 0 0 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section {
    border: solid 1px #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_mediaContainer {
    margin: 0;
    float: none;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_mediaContainer>a {
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_mediaContainer>a>img {
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_mediaContainer>a:hover:after {
    border: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent {
    padding: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent .edn_articleTitle {
    margin: 0 0 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent .edn_articleSummary {
    margin-top: 10px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent .edn_eventBoxLocation,
.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent>time {
    line-height: 1;
    font-size: 13px;
    color: #969696;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent .edn_eventBoxLocation {
    margin-right: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent .edn_eventBoxLocation:before {
    content: "";
    color: #3366cc;
    display: inline-block;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3>section .edn_boxContent>time:before {
    content: "";
    color: #3366cc;
    display: inline-block;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-size: 14px;
}

.eds_news_glit.eds_subCollection_news .edn_isotopeLayout>div {
    margin: 0 auto;
    max-width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple {
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: dashed 1px #bfbfbf;
    position: relative;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
    border-top: dashed 1px #bfbfbf;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section {
    position: relative;
    display: table;
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:after,
.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    content: "";
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:before {
    border-style: solid;
    border-width: 15px;
    border-left-color: #3366cc;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:after {
    border-left-style: dashed;
    border-left-width: 1px;
    border-left-color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>time {
    border-right: solid 1px #bfbfbf;
    padding: 8px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 10%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>time>span {
    display: block;
    color: #666161;
    line-height: 1.2;
    font-size: 22px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>time>span:first-child {
    font-size: 26px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>time>span:last-child {
    font-size: 13px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div {
    overflow: hidden;
    padding: 8px 8px 8px 25px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div .edn_articleTitle {
    font-size: 19px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div .edn_eventBoxLocation {
    margin-right: 20px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div .edn_eventBoxLocation:before {
    content: "";
    color: #3366cc;
    display: inline-block;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div .edn_readMoreButtonWrapper {
    text-align: left;
    margin: 5px 0 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div .edn_readMore.edn_readMoreButton:hover {
    background-color: #7d0f03;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section>div>time:before {
    content: "";
    color: #3366cc;
    display: inline-block;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover {
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover:after,
.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover:before {
    display: block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>time {
    background-color: #7d0f03;
    border-color: #7d0f03;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>time>span {
    color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>div .edn_articleTitle a {
    color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>div>time,
.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>div>time:before,
.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>div .edn_eventBoxLocation,
.eds_news_glit.eds_subCollection_news .edn_article.edn_eventsSimple>section:hover>div .edn_eventBoxLocation:before {
    color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure {
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure {
        width: 100%;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>img {
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>img {
        width: 100%;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure .edn_sss>img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: transparent url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/blank.png");
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>a>span {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>figcaption {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>figcaption .edn_articleTitle,
.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>figcaption .edn_articleSummary {
    color: #fff;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure>figcaption .edn_articleSummary {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure .edn_metaDetails {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    margin: 0;
    color: #fff;
    padding: 5px;
    border-radius: 0 0 0 5px;
    opacity: 0.7;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure:hover>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure:hover>figcaption .edn_articleSummary {
    max-height: 150px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle>figure:hover .edn_sss>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
    float: left;
    margin-top: 20px;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
        width: 100% !important;
        display: block;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 {
    float: right;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2>figure>figcaption h2.edn_articleTitle {
    font-size: 22px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
    float: left;
    width: 31.3%;
    padding-left: 3%;
    box-sizing: content-box;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
        width: 100%;
        padding: 0;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle {
    font-size: 22px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a {
    overflow: hidden;
    display: inline-block;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: solid 0 rgba(255, 255, 255, 0.4);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a>img {
    border: none;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-transition: all 200ms ease-in-out;
    -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_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover:after {
    border-width: 3px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
    padding-left: 0 !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 23.5%;
    padding-left: 2%;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
        width: 48%;
        padding: 0 1% !important;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2>figure figcaption {
    padding: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2>figure figcaption h2.edn_articleTitle {
    font-size: 13px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2>figure>img {
    width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
    font-size: 18px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
    margin: 0;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
        clear: left;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    box-sizing: content-box;
    width: 32%;
    padding: 0 0 20px 2%;
    float: left;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
    padding-left: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticleList {
    margin-bottom: 0;
    padding: 5px 0;
    border-bottom: dashed 1px #bfbfbf;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
    font-size: 16px;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
    margin-bottom: 5px;
    margin-top: 4px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
    margin: 0 0 4px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
    padding: 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline {
    display: table;
    margin: 0;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline {
        display: block;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: table-cell;
    vertical-align: top;
    width: 140px;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
        display: inline-block;
        vertical-align: top;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation>time {
    display: block;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation>time.edn_timelineDate {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation>time.edn_timelineClock {
    color: #666161;
    font-size: 40px;
    margin: 5px 0;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
    font-size: 18px;
    display: inline-block;
    margin-top: 5px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    display: table-cell;
    position: relative;
    vertical-align: top;
    text-align: center;
    max-width: 100%;
    font-size: 0;
    line-height: 0;
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
        background: none;
        display: inline-block;
        margin-top: 10px;
        vertical-align: top;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
    box-sizing: content-box;
    padding: 0 8px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage>a {
    width: 29px;
    height: 29px;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage>a {
        display: none;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage>a {
    display: inline-block;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: solid 8px #e2e2e2;
    overflow: hidden;
    margin-top: -5px;
    max-width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage>a>img {
    max-width: 100%;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 30px;
    background-color: #dadada;
    border: solid 1px #bcbcbc;
    border-radius: 6px;
    margin-bottom: 35px;
    margin-top: -5px;
    position: relative;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
        margin-left: 0;
        margin-top: 10px;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
    position: absolute;
    content: "";
    top: 15px;
    left: -11px;
    width: 20px;
    height: 20px;
    background-color: #dadada;
    border: solid 1px #bcbcbc;
    border-right: none !important;
    border-top: none !important;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
        display: none;
    }
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header {
    border-bottom: solid 1px #bcbcbc;
    box-shadow: 0 1px 0 0 #eee;
    padding: 10px 25px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header>time {
    float: right;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header>time:before {
    content: "";
    color: #3366cc;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_calendarExport {
    margin-right: 20px;
    float: right;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_calendarExport:after {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_calendarExport:hover:after {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_articleTitle {
    font-size: 18px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_articleTitle>a {
    color: #666161;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>header .edn_articleTitle>a:hover {
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent>div {
    padding: 5px 25px;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #8a8a8a;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
    background: none !important;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
    background-color: #ececec;
}

.eds_news_glit.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before {
    background-color: #ececec;
}

.eds_news_glit.eds_subCollection_news .article_pager,
.eds_news_glit.eds_subCollection_news .article_pagination table,
.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
    border: solid 1px #3366cc;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 0;
}

.eds_news_glit.eds_subCollection_news .article_pager a,
.eds_news_glit.eds_subCollection_news .article_pager>span,
.eds_news_glit.eds_subCollection_news .article_pagination a,
.eds_news_glit.eds_subCollection_news .article_pagination>span {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    padding: 7px 10px;
    border-left: solid 1px #3366cc;
    border-right: none !important;
    border-bottom: none !important;
    border-top: none !important;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .article_pager a,
.eds_news_glit.eds_subCollection_news .article_pagination a {
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_news .article_pager a:hover,
.eds_news_glit.eds_subCollection_news .article_pagination a:hover {
    color: #fff;
    background-color: #FF9387;
}

.eds_news_glit.eds_subCollection_news .article_pagination {
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .article_pagination a,
.eds_news_glit.eds_subCollection_news .article_pagination>span {
    margin-left: -1px;
}

.eds_news_glit.eds_subCollection_news .article_pager {
    float: right;
    clear: both;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .article_pager a:first-child {
    border-left: none;
}

.eds_news_glit.eds_subCollection_news .article_pager a.next:after,
.eds_news_glit.eds_subCollection_news .article_pager a.next:before,
.eds_news_glit.eds_subCollection_news .article_pager a.last:after,
.eds_news_glit.eds_subCollection_news .article_pager a.last:before,
.eds_news_glit.eds_subCollection_news .article_pager a.first:after,
.eds_news_glit.eds_subCollection_news .article_pager a.first:before,
.eds_news_glit.eds_subCollection_news .article_pager a.prev:after,
.eds_news_glit.eds_subCollection_news .article_pager a.prev:before,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_previusArticle:after,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_previusArticle:before,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_nextArticle:after,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_nextArticle:before {
    font-family: "FontAwesome";
    line-height: 0;
}

.eds_news_glit.eds_subCollection_news .article_pager a.next:after,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_nextArticle:after {
    content: "";
    margin-left: 4px;
}

.eds_news_glit.eds_subCollection_news .article_pager a.last:after {
    content: "";
    margin-left: 4px;
}

.eds_news_glit.eds_subCollection_news .article_pager a.first:before {
    content: "";
    margin-right: 4px;
}

.eds_news_glit.eds_subCollection_news .article_pager a.prev:before,
.eds_news_glit.eds_subCollection_news .article_pager a.edn_previusArticle:before {
    content: "";
    margin-right: 4px;
}

.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling {
    float: none;
    border: none;
    margin: 0 -10px;
    padding: 20px 10px;
    overflow: visible;
}

.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling a {
    border: solid 1px #ccc !important;
    border-radius: 0px;
}

.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
    float: left;
}

.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
    float: right;
}

.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover,
.eds_news_glit.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .article_pager a.active,
.eds_news_glit.eds_subCollection_news .article_pagination>span {
    color: #fff;
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
    text-align: center;
    line-height: 0;
    font-size: 0;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
    position: relative;
    padding: 0;
    background: none transparent;
    box-shadow: none;
    -webkit-appearance: none;
    overflow: hidden;
    width: 75%;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger>span {
    color: #3366cc;
    line-height: 1;
    font-size: 15px;
    display: block;
    padding: 7px 10px;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer {
    background-color: #fff;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    opacity: 0;
    -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_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    font-family: "FontAwesome";
    line-height: 0;
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    opacity: 0.7;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer {
    color: #fff;
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    top: 0;
}

.eds_news_glit.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
    display: none;
}

.qtip.edn_calendarbox_glit {
    position: absolute;
    left: -28000px;
    top: -28000px;
    display: none;
    min-width: 50px;
    font-size: 10px;
    line-height: 12px;
    direction: ltr;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid #3366cc;
    width: 500px;
    max-width: 95%;
    font-size: 13px;
    line-height: 1.1;
    color: #504e4e;
    line-height: 1.3;
    font-size: 13px;
    color: #504e4e;
}

.qtip.edn_calendarbox_glit p,
.qtip.edn_calendarbox_glit span,
.qtip.edn_calendarbox_glit li,
.qtip.edn_calendarbox_glit a {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.qtip.edn_calendarbox_glit>.qtip-content {
    padding: 10px 20px;
    overflow: hidden;
    text-align: left;
    word-wrap: break-word;
}

.qtip.edn_calendarbox_glit>.qtip-content>.title {
    display: block;
    font-size: 14px;
    color: #3366cc;
}

.qtip.edn_calendarbox_glit>.qtip-content>.title a {
    color: #3366cc;
    text-decoration: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.title a:hover {
    color: #504e4e;
    text-decoration: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper {
    margin-top: 10px;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article {
    overflow: hidden;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>img {
    float: left;
    margin: 3px 10px 7px 0;
    padding: 3px;
    border: solid 1px #3366cc;
    background: #fff;
    max-width: 100px;
    max-height: 100px;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>p.title {
    margin: 0 0 5px 0;
    padding: 0;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>p.title a {
    font-size: 18px;
    line-height: 1;
    color: #504e4e;
    text-decoration: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>p.title a:hover {
    color: #3366cc;
    text-decoration: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>p.location {
    margin-top: 5px;
    padding: 0;
    font-weight: bold;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>p.location:before {
    content: "";
    display: inline-block;
    margin-right: 2px;
    font-size: 15px;
    font-family: "FontAwesome";
    color: #3366cc;
    font-style: normal;
    font-weight: normal;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>.content p {
    margin: 0;
    padding: 0;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>.content p+p {
    margin-top: 5px;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>a {
    float: right;
    clear: both;
    border: 1px solid #3366cc;
    background: none #fff;
    text-shadow: none;
    text-decoration: none;
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: none;
    color: #3366cc;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper>.article>a:hover {
    color: #fff;
    background-color: #3366cc;
    text-decoration: none;
    box-shadow: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper .article_list {
    margin: 0 0 0 15px;
    padding: 0;
    list-style-type: circle;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper .article_list li {
    margin: 5px 0 0;
    padding: 0;
    list-style-type: circle;
    color: #000;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper .article_list li>a {
    color: #504e4e;
    text-decoration: none;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper .article_list li>a:hover {
    color: #3366cc;
}

.qtip.edn_calendarbox_glit>.qtip-content>.wrapper .article_list li>p {
    color: #999;
    margin: 0;
    padding: 0;
    font-size: 11px;
}

.eds_news_glit.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_glit.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
    position: absolute;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
    position: relative;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/rate_stars.png");
    height: 16px;
    left: 2px;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
    position: absolute;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/rate_stars.png") left -32px;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
    background-position: right -32px;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
    background: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/rate_stars.png") left -16px;
}

.eds_news_glit.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
    background-position: right -16px;
}

.eds_news_glit.eds_subCollection_search {
    line-height: 1.3;
    font-size: 13px;
    color: #504e4e;
}

.eds_news_glit.eds_subCollection_search div,
.eds_news_glit.eds_subCollection_search span,
.eds_news_glit.eds_subCollection_search a,
.eds_news_glit.eds_subCollection_search label,
.eds_news_glit.eds_subCollection_search input {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.eds_news_glit.eds_subCollection_search a {
    text-decoration: none;
    color: #3366cc;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.eds_news_glit.eds_subCollection_search a:hover {
    color: #504e4e;
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_search .fa {
    line-height: 1;
}

.eds_news_glit.eds_subCollection_search .search_input {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    background-color: #fff;
}

.eds_news_glit.eds_subCollection_search .search_input:after {
    display: block;
    content: "";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
}

.eds_news_glit.eds_subCollection_search .search_input .input {
    float: left;
    padding: 0 10px;
    line-height: 0;
    font-size: 0;
    width: 85%;
}

.eds_news_glit.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_glit.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_glit.eds_subCollection_search .search_input .input input[type="text"]:focus {
    border: none;
    background: none #fff;
    box-shadow: none;
    -webkit-appearance: none;
    color: #848484;
    line-height: 28px;
    height: 30px;
    font-size: 13px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.eds_news_glit.eds_subCollection_search .search_input .input input[type="text"].acInput.acLoading {
    background-image: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/indicator.gif");
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.eds_news_glit.eds_subCollection_search .search_input .do_search {
    padding: 0 5px;
    line-height: 29px;
    float: right;
    min-width: 35px;
    width: 10%;
    text-align: center;
    text-decoration: none;
    border: solid 1px #d4d4d4;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

.eds_news_glit.eds_subCollection_search .search_input .do_search:hover {
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_search .search_input .do_search>span {
    display: none;
}

.eds_news_glit.eds_subCollection_search .search_input .do_search:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    font-family: "FontAwesome";
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside {
    border: none !important;
    border-radius: 0 !important;
    background: none transparent !important;
    box-shadow: none !important;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside .input {
    float: none;
    width: auto;
    padding: 0;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_glit.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_glit.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    padding: 0 10px;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside .do_search {
    width: auto;
    clear: both;
    border: 1px solid #3366cc !important;
    background: none #fff;
    text-shadow: none;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 18px;
    border-radius: 4px;
    box-shadow: none;
    margin-top: 10px;
    color: #3366cc;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside .do_search>span {
    display: inline-block;
    padding-left: 10px;
}

.eds_news_glit.eds_subCollection_search .search_input.button_outside .do_search:hover {
    color: #fff;
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_search .search_input .acInput.acLoading {
    background-image: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/common/indicator.gif");
    background-repeat: none;
    background-position: 90% 10%;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
    position: relative;
    padding: 5px 0 20px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container>span {
    display: block;
    margin-bottom: 10px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container>div {
    margin-bottom: 10px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList>span {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    line-height: 28px;
    padding-right: 35px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList>span:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
    color: #3366cc;
    font-size: 20px;
    font-weight: bold;
    width: 35px;
    z-index: 1;
    font-family: "FontAwesome";
    text-align: center;
    border: solid 1px #d4d4d4;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList>span select {
    border: none;
    background: none transparent;
    box-shadow: none;
    -webkit-appearance: none;
    outline: none;
    width: 120%;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    color: #848484;
    font-size: 13px;
    margin: 0;
    height: 28px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList>span select:focus {
    outline: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList>span select:disabled {
    color: #ccc !important;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    padding: 0 10px;
    line-height: 28px;
    height: 30px;
    color: #848484;
    font-size: 13px;
    width: 100%;
    background: none #fff;
    margin: 0;
    padding: 0 10px;
    box-shadow: none;
    -webkit-appearance: none;
    outline: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
    display: block;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput>span>label {
    display: block;
    margin-bottom: 10px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
    height: 45px;
    position: relative;
    display: block;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
    display: block;
    position: relative;
    padding: 2px;
    background-color: #d6d6d6;
    height: 13px;
    border-style: solid;
    border-width: 1px;
    border-color: #c7c7c7 #c7c7c7 #d3d3d3;
    border-radius: 6px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
    display: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
    display: block;
    height: 7px;
    border-radius: 4px;
    background-color: #c3c3c3;
    border: solid 1px #bcbcbc;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
    top: 3px;
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: #3366cc;
    border-style: solid;
    border-width: 1px;
    border-color: #931103 #931103 #bf1604;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
    border: solid 1px #eeeff0;
    border: solid 1px rgba(0, 0, 0, 0.2);
    background-color: #d4d8de;
    height: 20px;
    width: 20px;
    cursor: default;
    display: block;
    position: absolute;
    z-index: 1;
    top: -3px;
    border-radius: 50%;
    box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #c71704;
    box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
    color: #3366cc;
    position: absolute;
    white-space: nowrap;
    top: 25px;
    font-size: 12px;
    line-height: 1;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
    top: 25px;
    font-size: 12px;
    line-height: 1;
    color: #a8a8a8;
    position: absolute;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
    left: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
    right: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
    display: inline;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
    padding-left: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
    display: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
    display: inline;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
    padding-left: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
    display: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
    display: block;
    margin: 4px 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox>input,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton>input {
    display: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox>label,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton>label {
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox>label:before,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton>label:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 0 0;
    margin-right: 5px;
    font-family: "FontAwesome";
    font-size: 11px;
    color: #8e1003;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox>label:before {
    background-image: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked+label:before {
    background-position: 0 bottom;
    content: "";
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton>label:before {
    background-image: url("/DesktopModules/EasyDNNnews/Templates/0/glit/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked+label:before {
    background-position: 0 bottom;
    content: "";
    font-size: 8px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
    margin: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group+.input-group {
    margin-top: 5px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
    font-family: "Glyphicons Halflings";
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    outline: none;
    color: #848484;
    font-size: 13px;
    height: 30px;
    line-height: 28px;
    margin: 0;
    background-color: #fff;
    padding: 0 6px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
    border: solid 1px #d4d4d4;
    border-radius: 4px;
    border-left: none;
    background-color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 30px;
    padding: 0 11px;
    color: #3366cc;
    line-height: 26px;
    vertical-align: top;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList>span,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList>span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
    text-align: right;
    padding-top: 20px;
    margin: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a {
    display: inline-block;
    background: none #fff;
    text-shadow: none;
    text-decoration: none;
    font-size: 12px;
    line-height: 29px;
    text-transform: uppercase;
    padding: 0 18px;
    border-radius: 4px;
    box-shadow: none;
    color: #3366cc;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a:hover {
    text-decoration: none;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a.edncf_submit {
    border: 1px solid #3366cc;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a.edncf_submit:hover {
    color: #fff;
    background-color: #3366cc;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a.edncf_submit:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    font-family: "FontAwesome";
    font-size: 21px;
    margin-right: 10px;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a.edncf_reset {
    border: solid 1px #ddd;
    color: #3366cc;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a.edncf_reset:hover {
    color: #504e4e;
    border: solid 1px #3366cc;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer>a+a {
    margin-left: 5px;
}

.eds_news_glit.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/0/glit/assets/images/common/searchInProgress.gif") center center no-repeat;
    opacity: 0.7;
    z-index: 999;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
    padding-bottom: 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container>span {
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px 15px 0;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList>span {
    min-width: 145px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList>span select {
    width: 160%;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
    display: block;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList>span,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList>span {
    display: inline-block;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
    display: inline-block;
    margin-right: 15px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
    display: inline-block;
    margin: 4px 10px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
    display: block;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField>.input-group {
    float: left;
    width: 49%;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField>.input-group+.input-group {
    float: right;
    margin: 0;
}

.eds_news_glit.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_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text>span {
    display: inline-block;
    vertical-align: middle;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text>span+span {
    margin-left: 15px;
}

.eds_news_glit.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
    display: inline-block;
    vertical-align: top;
    padding: 0;
}

.eds_news_glit .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_glit .edn_searchInfoResults>span {
    font-weight: bold;
    color: #333;
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.EDN_search.theme_glit {
    padding: 0px;
    border: 1px solid #3366cc;
    background-color: #fff;
    overflow: hidden;
    z-index: 9999999;
    margin: 0 20px;
}

.EDN_search.theme_glit ul {
    margin: 0px;
    padding: 0px;
}

.EDN_search.theme_glit ul li {
    list-style-type: none;
    margin: 0px;
    padding: 0;
}

.EDN_search.theme_glit ul li span a {
    padding: 2px 10px;
    display: block;
    font-size: 12px;
    color: #504e4e;
    text-decoration: none;
    border: solid 1px transparent;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.EDN_search.theme_glit ul li span a:hover {
    text-decoration: none;
}

.EDN_search.theme_glit ul li.acSelect a {
    background-color: #f8f8f8;
    border-color: #d4d4d4 transparent;
    color: #3366cc;
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit.eds_subCollection_tagCloud div,
.eds_news_glit.eds_subCollection_tagCloud a,
.eds_news_glit.eds_subCollection_tagCloud span {
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.eds_news_glit.eds_subCollection_tagCloud>div a {
    border: solid 1px #3366cc;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    margin: 0 5px 5px 0;
    display: inline-block;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_tagCloud>div a span {
    display: inline-block;
    color: #3366cc;
    padding: 5px 10px;
    background-color: #fff;
    font-weight: bold;
    -webkit-transition: all linear 200ms;
    -moz-transition: all linear 200ms;
    -ms-transition: all linear 200ms;
    -o-transition: all linear 200ms;
    transition: all linear 200ms;
}

.eds_news_glit.eds_subCollection_tagCloud>div a span:first-child {
    background-color: #3366cc;
    color: #fff;
    font-weight: normal;
}

.eds_news_glit.eds_subCollection_tagCloud>div a:hover span:first-child {
    background-color: #fff;
    color: #3366cc;
}

.eds_news_glit [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_title {
    cursor: pointer;
}

.eds_news_glit [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_contentWrapper {
    position: relative;
    height: 0;
    overflow: hidden;
}

.eds_news_glit [class*="edn_accordionWrapper"] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
    height: auto;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit .edn_articleAccordion {
        height: auto !important;
    }
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section {
    margin: 0 0 5px;
    padding: 0;
    border: none;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
    position: relative;
    border-bottom: solid 1px #ddd;
    cursor: pointer;
    margin: 0;
    padding: 5px 2px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    color: #504e4e;
    -webkit-transition: color 300ms linear;
    -moz-transition: color 300ms linear;
    -ms-transition: color 300ms linear;
    -o-transition: color 300ms linear;
    transition: color 300ms linear;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
    color: #3366cc;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover:after {
    -ms-transform: scale(1.8);
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after {
    position: absolute;
    content: "";
    right: 1%;
    bottom: 5px;
    font-family: FontAwesome;
    font-size: 20px;
    line-height: 1;
    color: #3366cc;
    font-weight: normal;
    font-style: normal;
    -webkit-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_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
    padding: 10px 0;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
    padding-top: 0;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
    color: #3366cc;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title:after {
    content: "";
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
    padding-right: 30px;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3>header {
    margin: 0;
    padding: 0;
    border: none;
    padding: 10px 30px 10px 0;
    border-bottom: dashed 1px #bfbfbf;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3>header:after {
    top: auto;
    bottom: 50%;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3>header>h3 {
    font-size: 18px;
    color: #504e4e;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3>header:hover>h3 {
    color: #3366cc;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3>header .edn_metaDetails {
    margin: 5px 0 10px;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
    margin: 0 10px 5px 0;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
    overflow: hidden;
    display: inline-block;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: solid 0 rgba(255, 255, 255, 0.4);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a>img {
    border: none;
    padding: 0;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 200ms ease-in-out;
    -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_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover:after {
    border-width: 3px;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover>img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle {
    font-size: 18px;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_metaDetails {
    margin: 0;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edsAccordion_active>header {
    display: none;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3:last-child>header {
    border: none !important;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion {
    border: none;
    position: relative;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header {
    float: right;
    clear: right;
    display: block;
    padding: 10px 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header {
        float: none;
        width: auto !important;
        clear: both;
    }
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header:after {
    display: none;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header>h3 {
    color: #7c7c7c;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header .edn_metaDetails {
    margin: 0 0 5px;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header .edn_metaDetails>time {
    color: #3366cc;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion>header:hover>h3 {
    color: #3366cc;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding-right: 35px;
    opacity: 0;
    position: absolute;
    left: 0;
    visibility: hidden;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
        padding: 0;
        position: static;
        width: auto !important;
    }
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active>header {
    position: relative;
    background-color: #3366cc;
    padding-left: 10px;
}

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) {
    .eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active>header {
        display: none;
    }
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active>header>h3 {
    color: #fff;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active>header .edn_metaDetails>time {
    color: #fff;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active>header:before {
    position: absolute;
    content: "";
    width: 0;
    left: -14px;
    right: auto;
    border-width: 14px 7px;
    border-style: solid;
    border-right-color: #3366cc;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    top: 50%;
    margin-top: -14px;
    bottom: auto;
    display: block;
}

.eds_news_glit .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
    visibility: visible;
    opacity: 1;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
    padding: 10px 0;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
    padding-top: 0;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
    background-color: #3366cc;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after,
.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before {
    display: block;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>time {
    background-color: #7d0f03;
    border-color: #7d0f03;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>time>span {
    color: #fff;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>div .edn_articleTitle a {
    color: #fff;
}

.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>div>time,
.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>div>time:before,
.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>div .edn_eventBoxLocation,
.eds_news_glit .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title>div .edn_eventBoxLocation:before {
    color: #fff;
}

.eds_news_glit .edsTabulator .eds_tabsNav {
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    border-radius: 5px 5px 0 0;
}

.eds_news_glit .edsTabulator .eds_tabsNav>li {
    display: inline-block;
    list-style-type: none;
    cursor: pointer;
    color: #b4b4b4;
    font-size: 16px;
    border: solid 1px #3366cc;
    border-bottom: none !important;
    padding: 7px 10px;
    margin: 0;
    line-height: 1;
    -webkit-transition: color 300ms linear;
    -moz-transition: color 300ms linear;
    -ms-transition: color 300ms linear;
    -o-transition: color 300ms linear;
    transition: color 300ms linear;
}

@media handheld,
only screen and (max-width: 992px),
only screen and (max-device-width: 992px) {
    .eds_news_glit .edsTabulator .eds_tabsNav>li {
        display: block;
        border-width: 0 0 1px;
    }
}

.eds_news_glit .edsTabulator .eds_tabsNav>li+li {
    border-left: none !important;
}

.eds_news_glit .edsTabulator .eds_tabsNav>li:first-child {
    border-radius: 5px 0 0;
}

.eds_news_glit .edsTabulator .eds_tabsNav>li:last-child {
    border-radius: 0 5px 0 0;
}

.eds_news_glit .edsTabulator .eds_tabsNav>li:hover {
    color: #3366cc;
}

.eds_news_glit .edsTabulator .eds_tabsNav>li.edsTabulator_active {
    background-color: #eb1601;
    box-shadow: 0 -25px 13px -13px #cb1400 inset;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.eds_news_glit .edsTabulator .edsTabulator_tabsWrapper {
    overflow: hidden;
}

.eds_news_glit .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 0;
    bottom: 100%;
    border: solid 1px #3366cc;
    border-radius: 0 5px 5px 5px;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}

.eds_news_glit .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
    height: auto;
    bottom: 0;
}

.eds_news_glit.eds_subCollection_news .edn_sss {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .edn_ssslide {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    overflow: hidden;
}

.eds_news_glit.eds_subCollection_news .edn_ssslide img {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
}

.eds_news_glit.eds_subCollection_news .edn_sssnext,
.eds_news_glit.eds_subCollection_news .edn_sssprev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    border-radius: 2px;
    background-color: rgba(27, 25, 21, 0.5);
    z-index: 2;
    text-align: center;
    line-height: 50px;
    font-size: 0;
}

.eds_news_glit.eds_subCollection_news .edn_sssnext:before,
.eds_news_glit.eds_subCollection_news .edn_sssprev:before {
    font-family: "FontAwesome";
    color: #fff;
    font-size: 50px;
    opacity: 0.7;
    -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_glit.eds_subCollection_news .edn_sssnext:hover:before,
.eds_news_glit.eds_subCollection_news .edn_sssprev:hover:before {
    opacity: 1;
}

.eds_news_glit.eds_subCollection_news .edn_sssprev {
    left: 3%;
}

.eds_news_glit.eds_subCollection_news .edn_sssprev:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_sssnext {
    right: 3%;
}

.eds_news_glit.eds_subCollection_news .edn_sssnext:before {
    content: "";
}

.eds_news_glit.eds_subCollection_news .edn_sssprev:hover,
.eds_news_glit.eds_subCollection_news .edn_sssnext:hover {
    cursor: pointer;
}

.eds_news_glit.eds_subCollection_news .edn_sss>div {
    display: none;
}

.eds_news_glit.eds_subCollection_news .edn_sss>img+img~div {
    display: block;
}

.eds_news_glit.eds_subCollection_news.eds_print .article_gallery,
.eds_news_glit.eds_subCollection_news.eds_print .article_comments,
.eds_news_glit.eds_subCollection_news.eds_print .fb-comments,
.eds_news_glit.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_glit.eds_subCollection_news.eds_print .admin_action,
.eds_news_glit.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_glit.eds_subCollection_news.eds_print .eds_openModal,
.eds_news_glit.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_glit.eds_subCollection_news.eds_print .edn_aditionalBox,
.eds_news_glit.eds_subCollection_news.eds_print .edn_authorGroupDetails,
.eds_news_glit.eds_subCollection_news.eds_print .edn_galleryLink,
.eds_news_glit.eds_subCollection_news.eds_print .article_pager,
.eds_news_glit.eds_subCollection_news.eds_print [class*="eds_GravityGallery_"] {
    display: none !important;
}

.eds_news_glit.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_title {
    display: none !important;
}

.eds_news_glit.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper {
    height: auto !important;
}

.eds_news_glit.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
    padding: 0 !important;
}

.eds_news_glit.eds_subCollection_news.eds_print .edsTabulator .eds_tabsNav {
    display: none !important;
}

.eds_news_glit.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
    position: relative !important;
    visibility: visible !important;
    top: auto !important;
    padding: 0 !important;
    border: none !important;
    opacity: 1 !important;
}


/*# sourceMappingURL=themeBase.css.map */

/* glit Container Settings */
.block {
}

    .block input[type='checkbox'] {
        display: none;
    }

        .block input[type='checkbox']:checked ~ .settingPanel {
            height: auto;
            transition: .3s ease-in;
            min-width: 200px;
            min-height: 100px;
            background-color: black;
            opacity: 1;
            z-index: 999;
            display: inline-block;
        }

        .block input[type='checkbox']:checked ~ label {
        }

        .block input[type='checkbox']:not(:checked) ~ .settingPanel {
            height: 0;
            transition: .3s ease-out;
        }


.settingPanel {
    position: absolute;
    margin-top: 1px;
    height: 0;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px;
    background-color: transparent;
    display: none;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.3);
}

    .settingPanel .content {
        opacity: 1;
        background-color: transparent;
        font-size: 12px;
        color: #fff;
    }

    .settingPanel h3 {
        width: 100%;
        border-bottom: solid 1px #fff;
        font-size: 14px;
        margin: 0;
        padding: 0;
        line-height: 18px;
        color: #fff!important;
    }

    .settingPanel h4 {
        font-size: 12px;
        font-weight: bold;
        margin: 0;
        padding: 0;
        color: #fff;
    }

    .settingPanel hr {
        margin: 0;
        color: silver;
    }

    .settingPanel label {
        width: 125px;
        display: inline-block;
    }

        .settingPanel label.rightof {
            width: 100px;
            display: inline-block;
        }

        .settingPanel label.long {
            width: 180px;
        }

    .settingPanel input[type='checkbox'] {
        display: inline-block;
        opacity: 1;
        background-color: white;
    }

    .settingPanel select {
        width: 100px;
        margin: 0;
        color: black;
        border: none; /*1px solid #111;*/
        background: #808080;
        padding: 1px;
        padding-right: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: white;
        font-size: 12px;
    }

        .settingPanel select.customcss{
            width:100%;
        }

        .settingPanel .column {
            white-space: nowrap;
            float: left;
        }

    .settingPanel input {
        background: white;
        border: none; /*1px solid #111;*/
        font-size: 12px;
    }

    .settingPanel a.link:link,
    .settingPanel a.link:visited,
    .settingPanel a.link:hover,
    .settingPanel a.link:active {
        color: white;
        cursor: pointer;
    }



.glitContainer div.menu {
    color: white;
    background-color: #4DC6E1
}

    .glitContainer div.menu .first {
        margin-left: 30px;
    }


    .glitContainer div.menu label {
        cursor: pointer;
    }

.glitContainer.settings button {
    cursor: pointer;
    height: 22px;
    border: 1px solid white;
    margin: 0;
    background: none;
    color: white;
}




@charset "utf-8";
/* CSS Document with styles necessary for default HtmlEditor HTML "snippet" templates */

/* Styles for ALL Default Templates */
div.template
{
	text-align: left;
	width: 100%;
	overflow: auto;
}

div.template div.container
{
	clear: both;
	margin: 0;
	padding: 0;
	overflow: auto;
	position: relative;
}

div.template div.region
{
	padding: 5px;
	margin: 0;
}

/* Styles for "Image And Title" template */
div.template.imageandtitle h3
{
	margin-top: 0;
}

div.template.imageandtitle img
{
	float: left;
	margin: 0;
	margin-right: 10px;
}




@charset "utf-8";
/* CSS Document with styles necessary for default HtmlEditor HTML "snippet" templates */

/* Styles for ALL Default Templates */
div.template
{
	text-align: left;
	width: 100%;
	overflow: auto;
}

div.template div.container
{
	clear: both;
	margin: 0;
	padding: 0;
	overflow: auto;
	position: relative;
}

div.template div.region
{
	padding: 5px;
	margin: 0;
}

/* Styles for "Simple Table And Header" template */
div.template.simpletableandheader table
{
	float: right;
	width: 150px;
	border: 1px solid #000;
	padding: 0;
	margin: 5px;
}

div.template.simpletableandheader table caption
{
	 text-align: center;
	 font-weight: bold;
	 font-size: 1.2em;
}

div.template.simpletableandheader table tbody th,
div.template.simpletableandheader table tbody td,
div.template.simpletableandheader table thead th,
div.template.simpletableandheader table thead td
{
	border: 1px solid #000;
	padding: 2px;
	margin: 0;
}




@charset "utf-8";
/* CSS Document with styles necessary for default HtmlEditor HTML "snippet" templates */

/* Styles for ALL Default Templates */
div.template
{
	text-align: left;
	width: 100%;
	overflow: auto;
}

div.template div.container
{
	clear: both;
	margin: 0;
	padding: 0;
	overflow: auto;
	position: relative;
}

div.template div.region
{
	padding: 5px;
	margin: 0;
}

/* Styles for "Two Column And Title" template */
div.template.twocolumnandtitle div.region
{
	padding: 2%;
}

div.template.twocolumnandtitle div.column
{
	width: 46%;
}

div.template.twocolumnandtitle div.column.left
{
	float: left;
}

div.template.twocolumnandtitle div.column.right
{
	float: right;
}



/* consolodate styles for the default htmlEditor HTML "snippet" templates */
@import url("/Portals/0/Templates/ImageAndTitle.css");
@import url("/Portals/0/Templates/SimpleTableAndHeader.css");
@import url("/Portals/0/Templates/TwoColumnAndTitle.css");
@import url("/Portals/0/Templates/htmlEditorTemplates.css");

.branding-top {
	background: url("/Portals/0/dnn_large_banner.png") no-repeat top left;
	width: 900px;
	height: 428px;
	clear: both;
	overflow: hidden;
}
.branding-top p {
	padding: 0px 60px 0 60px;
	font-size: 1.4em;
	color: #333;
}
.branding-bottom {
	clear: both;
	margin: 1em 0;
	overflow: hidden;
}
.branding-bottom ul {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	clear: both;
}
.branding-bottom li {
	list-style: none;
	margin: 0 20px 0 0;
	padding: 0;
	display: block;
	width: 210px;
	float: left;
}

.branding-bottom li.training {
	margin: 0;
}

.branding-bottom dl {
	background: url("/Portals/0/itembg.gif") repeat-y;
	margin: 33px 0 0 0;
	padding: 0 10px;
}
.branding-bottom dd {
	margin: 0 10px;
	height: 66px;
}
.branding-bottom dt {
	font-size: 90%;
	text-align: center;
	padding-top: 65px;
	margin-bottom: 1.75em;
	font-weight: bold;
}
.branding-bottom .commmunity {
	background: url("/Portals/0/community_title.gif") no-repeat top left;
}
.commmunity dt {
	background: url("/Portals/0/community_icon.gif") no-repeat;
	background-position: 50% 10px;
}
.branding-bottom .marketplace {
	background: url("/Portals/0/marketplace_title.gif") no-repeat top left;
}
.marketplace dt {
	background: url("/Portals/0/marketplace_icon.gif") no-repeat;
	background-position: 50% 10px;
}
.branding-bottom .conferences {
	background: url("/Portals/0/conferences_title.gif") no-repeat top left;
}
.conferences dt {
	background: url("/Portals/0/conferences_icon.gif") no-repeat;
	background-position: 50% 10px;
}
.branding-bottom .training {
	background: url("/Portals/0/training_title.gif") no-repeat top left;
}
.training dt {
	background: url("/Portals/0/training_icon.gif") no-repeat;
	background-position: 50% 10px;
}
dl.bt {
	margin: 0;
	padding: 0;
	background: url("/Portals/0/item_bt_bg.gif") no-repeat bottom;
	height: 32px;
	width: 210px;
}
div.link_adminguide {
	float:left;
	background: url("/Portals/0/dnn_adminguide.png") no-repeat top left;
	width: 316px;
	height: 137px;
	cursor: pointer;
}
div.link_proedition {
	float:right;
	background: url("/Portals/0/dnn_proedition.png") no-repeat top left;
	width: 514px;
	height: 137px;
	cursor: pointer;
}
div.link_main {
	margin: 260px 30px 0px 30px;
}

#LoginInfo
{
	width:545px; 
	float:left;
}
#LoginInfo h3
{
	background-color: #f7f7f7;
	color: #8f0000;
	padding: 2px 0px;
}
#LoginInfo dd, #LoginInfo dt 
{
	display:inline;
}
#LoginInfo dt
{
	font-weight:bold;
	color: #333;
}
#LoginInfo p.LoginNotes
{
	font-size: .8em;
}
#LoginInfo div.LoginBlock {
	float: left;
	width: 255px;
	padding: 5px 5px;
	margin: 0px 2px;
	border: 1px #f0f0f0 solid;
}
.SponsorIcon
{
	margin: 10px 50px; 
	float: left;
}
#QuickLinks 
{
	background-color:#f0f0f0;
	border: 1px #cccccc solid;
	padding: 2px 5px;
	position:relative;
	width:330px;
}
#QuickLinks h2, #QuickLinks p
{
	margin: 5px 5px;
}
div.hr
{
	height: 2px;
	background-color: #8f0000;
	margin: 5px 0 15px 0;
	clear:both;
}
div.hr hr
{
	display: none;
}

#TelerikInside
{
	background: white url("/Portals/0/telerikInside.jpg");
	border: 1px #cccccc solid;
	padding: 20px 5px 10px 130px;
	margin-bottom: 5px;
	width: 205px;
	height: 140px;
	border-style:none;
}

#TelerikInside h2
{
	font-weight: bold;
}

#RightColumnInfo
{
	float:right;
	width:340px;
	margin-left: 10px;
	margin-bottom: 15px;
}
#qlCol1, #qlCol2
{
	margin: 5px 5px 15px;
	padding-left: 12pt;
	float: left;
	position:relative;
}


html,body {background-color:#fff;}
html,body,.Normal, .NormalDisabled, .NormalDeleted {color:#000;}
#scroll_top {background-color:rgba(0,0,0,0.5); color:#fff;}
#scroll_top:hover {background-color:rgba(0,0,0,1);}
a, a:link, a:visited { color:#e30915 ; }
a:hover, a:active { color:#f07a80; }
#desktopnavirow,
#mobilenavirow {background-color:rgba(255,255,255,1);}
.footer {background-color:#e30915;color:White;}

.footer a {color:White;}
.footer a:hover {color:#000;}
h1,h2,h3,h4,h5 {color:#e30915;}
.footer .title {color:#fff;}

.copyright {background-color:#f07a80; color:#fff;}
.copyright a {color:#fff;}
.copyright a:hover {color:#000;}

.highlight {
    background-color:GhostWhite;
}



.tablet,
.tablet2 { display:block;}
.notablet,
.notablet2 { display:none;}

@media (min-width: 480px) {
    .kontaktformular .itemname{width:25%!important;}
    .kontaktformular .item {width:65%!important;}
    .kontaktformular .reqitem {width:10%!important;}
    .iweb_cfd_bcol {padding:10px 0 10px 25%!important;}
}

@media (min-width: 768px) {
    .tablet { display:none;}
    .notablet { display:block;}
    
    
}

@media (min-width:992px){
    .tablet2 { display:none;}
    .notablet2 { display:block;}
    #headerwrapper{
        margin-top: 125px!Important;
    }
}
@media (min-width:992px) and (max-width:1200px){
    ul.desktopnav li.root a {font-size:19px;}
    #logo {width:200px;}
}

@media (min-width:1200px){
    
}



/***** Kontaktformular START ******/

.kontaktformular {
	clear:both;
	margin-bottom:5px;
	float:none;
}

.kontaktformular input.NormalTextBox,
.kontaktformular textarea,
.kontaktformular table {
	width: 95%!Important;
}
.kontaktformular .itemname{
	vertical-align:top;
	padding-top:3px;
    padding-bottom:3px;
	float:left;
	width:100%;
}
.kontaktformular .item {
	vertical-align:middle;
	float:left;
	width:90%;
	
}
.kontaktformular .reqitem {
	vertical-align:middle;
	float:left;
	width:10%;
}
.kontaktformular .reqitem img { margin-left:5px; }
.kontaktformular .item label {
	width: 90%;
	font-size: 11px;
	line-height: 14px;
}
.kontaktformular .item .dnnRadiobutton,
.kontaktformular .item mark {
	vertical-align: top;
}
.kontaktformular input,
.kontaktformular textarea,
.kontaktformular .item table {
	border-style:solid;
	border-width:1px;
	font-size: 12px;
	padding:5px 2.5%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.kontaktformular .item table { border-collapse:collapse; border:none; width:100%!Important; padding:0; margin:1px 0 0 0; }
.kontaktformular input:active,
.kontaktformular textarea:active,
.kontaktformular input:focus,
.kontaktformular textarea:focus,
.kontaktformular input:hover,
.kontaktformular textarea:hover  {
	border-width:1px;
	border-style:solid;
}
.kontaktformular .item span .mark { padding-left:5px; }
.iweb_cfd_table {width:100%!Important;}
.iwebserror {padding-left:0!Important; }

.iweb_cfd_bcol {padding:10px 0 10px 0;}

[id*="_cmdSend"] {
	padding:4px 8px;
	text-decoration:none!Important;
    display:inline-block;
    text-align:center;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
[id*="_cmdCancel"] {
	padding:4px 8px;
	text-decoration:none!Important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


/** Kontaktform END */


.kontaktformular input,
.kontaktformular textarea,
.kontaktformular .item table {
    border-color:#f5f5f5;
	background:#f5f5f5;
}
.kontaktformular input:active,
.kontaktformular textarea:active,
.kontaktformular input:focus,
.kontaktformular textarea:focus,
.kontaktformular input:hover,
.kontaktformular textarea:hover {
    background: #fff;
	border-color:#ddd;
}

[id*="_cmdSend"] {
	background:#ec0016;
	color:#fff!Important;
}
[id*="_cmdCancel"] {
	background:#666;
	color:#fff!Important;
}
[id*="_cmdSend"]:hover,
[id*="_cmdCancel"]:hover {
	color:#fff!Important;
	background:#8496af;
}

/* HotHeader */
#headerwrapper{
    position:relative;
  /*  height:70%;
    min-height:300px;
    */
    margin-top: 69px;
    box-sizing: border-box;
}
#headerwrapper #dnn_KopfZeile {
    height:50%;
    min-height:300px;
    overflow:hidden;
}

.glit-userisadmin #headerwrapper {
    margin-top: 0px!important;
}
@media (min-width:992px){
    .glit-userisadmin #headerwrapper {
        margin-top: 175px!important;
    }
}


#headerwrapper .glitPageIconLarge {height:100%;}

/*.glit-page-home #headerwrapper,*/
.glit-page-home #headerwrapper #dnn_KopfZeile{
    height:70%;
    max-height:500px;
    overflow:hidden;
    position:relative;
}
.iconasbackground {min-height:300px;}


 
#hotheaderwrapper  {
    /*position:absolute;*/
    bottom:0;  
    width:100%; 
    height:100%; 
    box-sizing: border-box;
    padding:0 15px;
}
#hotheaderwrapper div {height:100%; padding:0;box-sizing: border-box;}



/*Google Maps FIX */
#hotheaderwrapper .edMaps_moduleWrapper div {
    height: auto;
}
#hotheaderwrapper .edMaps_map.edMaps_theme__default-Default .edMaps_infoWindow .edMaps_bubbleArrow .edMaps_leftSide,
#hotheaderwrapper .edMaps_map.edMaps_theme__default-Default .edMaps_infoWindow .edMaps_bubbleArrow .edMaps_rightSide {
    height: 30px;
}

#hotheaderwrapper #dnn_KopfZeile [class*="col-"] {padding:0 15px;}

#hotheaderwrapper [class*="col-"] {padding:0;margin:0;}
#hotheaderwrapper .DnnModule section.DNNContainer {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.glit-iseditmode #headerwrapper {height:auto;margin-top: 0!important;}
.glit-iseditmode #headerwrapper .glitPageIconLarge {min-height:300px;}
.glit-iseditmode #hotheaderwrapper .DnnModule section.DNNContainer {height:500px; overflow:hidden;}
.glit-iseditmode #hotheaderwrapper section.iconasbackground {padding-top:0;}
.glit-iseditmode #hotheaderwrapper {position:relative;}
.glit-iseditmode #hotheaderwrapper div {height:auto;}


#hotheaderwrapper .moduletitle {display:none;  text-align:left;}
#hotheaderwrapper section.iconasbackground { text-align:left; /* padding-top:130px;*/ }
#hotheaderwrapper section.iconasbackground .Normal p { 
   margin:130px 0 0 20px;
    font-size:20px;
    line-height:30px;
    padding:30px;
    background-color:rgba(255,255,255,0.8);
    width:50%;
    height:auto;
}
#hotheaderwrapper section.iconasbackground .Normal h1,
#hotheaderwrapper section.iconasbackground .Normal h2 {
    font-size:30px;
    line-height:45px;
    
}



div.slick-list {height:100%!Important;}

button.slick-next {right:5px; height:50px; width:30px; text-align:right; z-index:10;}
button.slick-prev {left:5px; height:50px; width:30px; text-align:left; z-index:10;}
.slick-prev::before, .slick-next::before {font-family:FontAwesome!Important; font-size:30pt!Important;}
.slick-prev:hover::before, .slick-next:hover::before {color:#3366cc;}
.slick-prev::before{content:"\f104"!Important;}
.slick-next::before{content:"\f105"!Important;}

ul.slick-dots {margin-left:0; bottom:0px!Important; margin-bottom:0;}
.slick-dots li button::before {display:none;}
.slick-dots li button {background-color:#eee!Important;}
.slick-dots li.slick-active button, .slick-dots li button:hover {background-color:#3366cc!Important;}


 


/*========== Container Silver ===========*/
.silver { 
	border:1px solid #cecfcf;
	background:#fff; 
}
.silver h2{
	margin-top:0;
} 
.silver .moduletitle { 
    	background: rgba(50,50,50,0.5);
	padding: 5px 5px 5px 0;
	color:white;
	padding-left:5px;
	padding-right:5px;
}
.silver [id$=ModuleContent] { 
	padding:5px; 
}

/*========== Container Blue ===========*/
.blue { 
	border:1px solid #cecfcf;
	background:#fff; 
}
.blue h2{
	margin-top:0;
} 
.blue .moduletitle { 
    	background: #3366cc;
	padding: 5px 5px 5px 0;
	color:white;
	padding-left:5px;
	padding-right:5px;
}
.blue [id$=ModuleContent] { 
	padding:5px; 
}

/* === BLOCKWUOTE Styling === */
blockquote  {
	padding:10px 20px 5px 20px;
	margin-left:35px;
    border-left-style:solid;
    border-left-width:5px;
}
blockquote p{
	font-size:1.3em;
	line-height:1.5em;
}
blockquote:before {
	/* hanging opening quote */
	display: block;
	height: 0;
	content: "“";
	margin-left: -.95em; font: italic 400%/1 Cochin,Georgia,"Times New Roman", serif;
}

/* === Table (Zebra) === */
.table table{width:100%;}

.table thead tr{
	font-size:20px;
}
.table thead th{
	padding:10px;
}
.table tr td{padding:10px;}
.table tr p{margin:0;}



/*Ghostbutton*/
.ghostbutton {
    display: inline-block;
    padding: 3px 10px;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.ghostbutton:hover {
    text-decoration: none;
}


.module_settings table{width:auto;}

blockquote  {
    border-color:#ddd;
}
blockquote:before {
	color: #ddd;
}


.table thead tr {
    background-color: #f07a80 !Important;
    color: white;
}

.table.zebra tr:nth-child(even) {
  background-color: #efefef;
}
.table.zebra tr:nth-child(odd) {
  background-color: white;
}

.ghostbutton {
    color: #e30915!Important;
    border-color: #e30915;
}

.ghostbutton:hover {
    color: #fff!Important;
    background-color: #e30915;
    border-color: #e30915;
}

#login {
    padding-right: 10px
}

@media only screen and (max-width:768px) {
    #search-action {
        display: block
    }
    #login {
        padding-right: 21px
    }
}

#login .loginGroup,
#login .loginGroup *,
#login .registerGroup,
#login .registerGroup * {
    display: block
}

#login .loginGroup,
#login .registerGroup {
    float: right;
    padding: 0;
    margin: 0
}

#login .loginGroup a,
#login .registerGroup a {
    display: block;
    position: relative;
    height: 32px;
    min-width: 12px;
    padding: 7px 15px 0;
    color: #fff;
    font-size: 11px;
    vertical-align: middle;
    box-sizing: border-box;
}

#login .loginGroup a:hover,
#login .registerGroup a:hover {
    background: #d7d7d7;
    color: #333;
    text-decoration: none
}

#login .loginGroup a:active,
#login .registerGroup a:active {
    color: #333
}

#login .loginGroup a strong,
#login .registerGroup a strong {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    font-size: 11px;
    text-indent: -9999px
}

#login .registerGroup li {
    float: left;
    line-height: 1.2em
}

#login .registerGroup li:first-child:hover {
    border-left: #222
}

#login .registerGroup .buttonGroup {
    margin-right: 0
}

#login .registerGroup .userProfileImg a {
    min-width: 25px;
    min-height: 32px;
    padding: 0;
    background: 0 0
}

#login .registerGroup a span {
    display: inline-block;
    position: absolute;
    right: 2px;
    top: -9px;
    min-width: 7px;
    margin-right: 3px;
    background: #3b96b6;
    text-align: center;
    font-size: 11px;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #333;
    text-shadow: 0 1px 0 #333
}

#login .registerGroup a img {
    height: 32px;
    width: 32px;
    background: #333
}

#login .userNotifications {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc
}

#login .userNotifications strong {
    height: 100%;
    background: url("/Portals/_default/Skins/bsd-luzern_2017/assets/images/notification_icon.png") center center no-repeat
}

#login .userMessages strong {
    height: 100%;
    background: url("/Portals/_default/Skins/bsd-luzern_2017/assets/images/message_icon.png") center center no-repeat
}

#login .userMessages a,
#login .userNotifications a {
    padding: 0 18px;
}

#login .userDisplayName a,
#login .loginGroup a {
    text-decoration: none;
}

#login .userMessages a span,
#login .userNotifications a span {
    display: inline-block;
    margin-top: 9px;
    margin-right: 0;
    background-color: transparent;
    font-size: 10px;
}

#userControlPanel {
    background: #383838;
    -moz-box-shadow: 1px 50px 100px 0 #cacaca;
    -webkit-box-shadow: 1px 50px 100px 0 #cacaca;
    box-shadow: 1px 50px 100px 0 #cacaca;
    min-width: 25px;
    min-height: 32px;
    padding: 0
}

#userControlPanel [class*="col-"] {
    padding-bottom: 0;
}

div.search {
    margin-top: 3px;
    display: inline-block;
    position: relative;
}

.search a.SearchButton {
    width: 26px;
    height: 26px;
    background-image: url("/Portals/_default/Skins/bsd-luzern_2017/assets/images/search.png");
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.searchInputContainer a.dnnSearchBoxClearText {
    z-index: 10000;
}


.eds_news_glit.eds_subCollection_news {
    font-size:20px;
    line-height: 28px;
}

.customrow [class*="col-"] {padding-bottom:0;}
.eds_news_glit.eds_subCollection_news .edn_article_map {margin-top:0;}
.eds_news_glit.eds_subCollection_news .edn_article .edn_articleSubTitle {font-size:24px;line-height:32px}


/* Aussenzentren */
.eds_news_glit.eds_subCollection_news .edn_mediaContainer {
    margin:15px 0 0 0;
}
.customrow.oeffnungszeiten,
.customrow.adresse,
.customrow.telefon,
.customrow.email {
    background-color:ghostwhite;
    padding:15px;
    margin:0 0 15px 0;
}

.customrow .custom-title {font-weight:bold;}

.aussenzentren .edn_article_gallery:before {
    content:"Team";
    display:block;
    font-size:25px;
    line-height:33px;
    font-weight:bold;
    color:#e30915;
    padding-bottom:20px;
}
.glit-tabid-78 .aussenzentren .edn_article_gallery:before, /* Stans */
.glit-tabid-107 .aussenzentren .edn_article_gallery:before, /* Sursee */
.glit-tabid-77 .aussenzentren .edn_article_gallery:before, /* Schwyz */
.glit-tabid-103 .aussenzentren .edn_article_gallery:before /* mobile Blutspendezentrum */  {
    content:"Leitung";
}
.glit-tabid-78 .aussenzentren .edn_article_gallery ul, /* Stans */
.glit-tabid-107 .aussenzentren .edn_article_gallery ul, /* Sursee */
.glit-tabid-77 .aussenzentren .edn_article_gallery ul, /* Schwyz */
.glit-tabid-103 .aussenzentren .edn_article_gallery ul /*  mobile Blutspendezentrum  */  {
    display:inline;
    width:auto;
    float:left;
    margin-right:15px!important;
}

.glit-tabid-78 .aussenzentren .edn_article_gallery:after, /* Stans */
.glit-tabid-107 .aussenzentren .edn_article_gallery:after, /* Sursee */
.glit-tabid-77 .aussenzentren .edn_article_gallery:after, /* Schwyz */
.glit-tabid-103 .aussenzentren .edn_article_gallery:after /*  mobile Blutspendezentrum  */  {
    content:"In unserem Blutspendemobil arbeiten abwechselnd Mitarbeiterinnen und Mitarbeiter aus verschiedenen Blutspendezentren der Zentralschweiz.";
    display:flex;
    max-width:calc(100% - 125px);
    min-height:100px;
    padding-bottom:10px;
    align-items:center;
    margin-top:-5px;
}


.customrow a {color:#000;}
.customrow a:hover {color:#e30915;}

/* Räume Liste */

.newslist.seminarraeume h2.title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}

.customfieldrow {
    padding: 10px 0;
    border-bottom: 2px solid #6e93bf;
}

.customfieldrow div[class*="col-"] {
    padding-bottom: 0;
}

.pricedescription {
    padding: 10px 0;
}

a.anfragebutton {
    display: block;
    padding: 8px 8px;
    margin-bottom: 5px;
    background-color: #f07a80;
    color: #fff!Important;
}
a.anfragebutton:hover {
    background-color:#e30915;
}


/* Dokuments */

ul.dokumentliste {
    list-style: none;
    margin: 30px 0 0 0!Important;
    padding: 15px!Important;
    background-color: #f07a80;
}
ul.dokumentliste:hover {
    background-color:#e30915;
}
ul.dokumentliste:before {
    content:'Dokumente';
    font-weight:bold;
    display:block;
    color:#fff;
}

ul.dokumentliste li {
    display: block;
    padding: 3px 0 0 0;
    
}

ul.dokumentliste li,
ul.dokumentliste li a {
    color: #fff!Important;
}

ul.dokumentliste li a i {
    display: inline;
}

/* MAP */
.edMaps_map.edMaps_theme__default-Default .edMaps_markerWrapper > .edMaps_newsContent > .edMaps_title > a,
.edMaps_map.edMaps_theme__default-Default .edMaps_markerWrapper > .edMaps_newsContent > .edMaps_title > a:hover {
    color:#e30915!Important;
}

/*Oeffnungszeiten */
	
.oeffnungszeiten_wrapper {
    padding:20px 20px 10px 20px;background-color:GhostWhite;
}
.oeffnungszeiten_wrapper article > div { /* row */
    padding-bottom:15px!Important;
}
.oeffnungszeiten_wrapper article > div > div { /* col */
    padding-bottom:0px!Important;
}

#donationcheckJS .currentQuestion .question {
    font-size: 1.0rem!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/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome/css/font-awesome.min.css");
/* latin-ext */
@font-face {
  font-family: "Coda";
  font-style: normal;
  font-weight: 400;
  src: local("Coda Regular"), local("Coda-Regular"), url("https://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8FUsGa6aN.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Coda";
  font-style: normal;
  font-weight: 400;
  src: local("Coda Regular"), local("Coda-Regular"), url("https://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8FUUGaw.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Coda";
  font-style: normal;
  font-weight: 400;
  src: local("Coda Regular"), local("Coda-Regular"), url("https://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8FUsGaw.woff2") format("woff2");
}
@font-face {
  font-family: "Coda";
  font-style: normal;
  font-weight: 400;
  src: local("Coda Regular"), local("Coda-Regular"), url("https://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8FUsGbQ.woff") format("woff");
}
.edMaps_moduleWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  position: relative;
}
.edMaps_moduleWrapper .edMaps_adminMessages {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
.edMaps_moduleWrapper .edMaps_adminMessages > div {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
.edMaps_moduleWrapper .edMaps_adminMessages > div > p {
  display: block;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}
.edMaps_moduleWrapper .edMaps_adminMessages > div.negative > p {
  color: #E60000;
}
.edMaps_moduleWrapper .edMaps_infoMessage {
  display: block;
  padding: 7px 20px;
  border: solid 1px #cccfd4;
  font-size: 13px;
  margin: 5px 0;
}
.edMaps_moduleWrapper .edMaps_infoMessage::before {
  font-size: 21px;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
  vertical-align: middle;
}
.edMaps_moduleWrapper .edMaps_infoMessage > span {
  vertical-align: middle;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_success {
  color: #aadc7b;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_success::before {
  content: "";
  color: #aadc7b;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_info {
  color: #8fbcdd;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_info::before {
  content: "";
  color: #8fbcdd;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_warning {
  color: #f6b96a;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_warning::before {
  content: "";
  color: #f6b96a;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_error {
  color: #e07171;
}
.edMaps_moduleWrapper .edMaps_infoMessage.edMaps_error::before {
  content: "";
  color: #e07171;
}
.edMaps_moduleWrapper label {
  font-weight: normal;
  margin: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  position: relative;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_widgetsLoaded .edMaps_widgetWrapper .edMaps_widgetSelectionContainer {
  opacity: 1;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_container {
  position: relative;
  overflow: hidden;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_container .edMaps_widgetSelectionContainer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  z-index: 10;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_container .edMaps_widgetSelectionContainer {
    width: 280px;
  }
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_categoryWidgetPositionLeft .edMaps_container .edMaps_widgetSelectionContainer {
  right: auto;
  left: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_categoryWidgetPositionLeft .edMaps_widgetSelectionWrapper.scroll-scrolly_visible > div {
  padding-right: 0;
  padding-left: 10px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_categoryWidgetPositionLeft .edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element.scroll-y {
  right: auto;
  left: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_labeled {
  margin: 0;
  padding: 12px 0 0;
  border: 0;
  position: relative;
  display: inline-block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_labeled > label {
  margin: 0;
  position: absolute;
  pointer-events: none;
  transition: all ease 0.2s;
  top: 0;
  left: 0;
  color: #189fd3;
  font: 12px/1.3 Arial, Helvetica, sans-serif;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_labeled > .edMaps_radioButtonGroup {
  margin-top: 6px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_textBox {
  display: inline-block;
  vertical-align: bottom;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_textBox > span.edMaps_text,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_textBox > input[type='text'] {
  color: #636363;
  font: 13px/1.3 Arial, Helvetica, sans-serif;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  padding: 0.3em 0.6em;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #c5c5c5;
  border-radius: 0;
  box-shadow: none;
  transition: border-bottom-color ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
  display: block;
  outline: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_textBox > input[type='text']:focus {
  border-bottom-color: #189fd3;
  box-shadow: 0 1px 0 #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow {
  vertical-align: middle;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow input[type='checkbox'] {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow input[type='checkbox'] + label {
  position: relative;
  margin: 0 0 0 18px;
  color: #919191;
  font: 13px/1.3 Arial, Helvetica, sans-serif;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow input[type='checkbox'] + label::before {
  position: absolute;
  top: -1px;
  left: -18px;
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid #919191;
  background: transparent;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 12px;
  line-height: 12px;
  text-indent: 1px;
  color: #919191;
  transition: all ease-in-out 0.2s;
  display: block;
  box-sizing: border-box;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow input[type='checkbox'] + label:hover::before {
  border-color: #60cb20 !important;
  color: #60cb20 !important;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_checkboxRow input[type='checkbox']:checked + label::before {
  content: "✔";
  border-color: #189fd3;
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li {
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  display: inline-block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > input {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > input:checked + label {
  border-color: #189fd3;
  background: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > input:checked + label:after {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > input:checked + label.edMaps_showText {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #bbbbbb;
  border-right-width: 0;
  background: #fff;
  display: block;
  width: 50px;
  text-align: center;
  transition: background ease-in-out 0.15s, border-color ease-in-out 0.15s, color ease-in-out 0.15s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label:after {
  content: "";
  font: 18px/1.3 FontAwesome;
  margin: 0;
  padding: 4px 0;
  border: 0;
  color: #bbb;
  transition: color ease-in-out 0.15s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label:hover:after {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label.edMaps_showText {
  width: auto;
  font: bold 14px/1.3 Arial, Helvetica, sans-serif;
  padding: 5px 10px;
  color: #bbb;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label.edMaps_showText:hover {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li > label.edMaps_showText:after {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li:first-child > label {
  border-radius: 5px 0 0 5px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li:first-child + li:last-child > label {
  border-left-width: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_radioButtonGroup > li:last-child > label {
  border-right-width: 1px;
  border-radius: 0 5px 5px 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button {
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  background: #f3f3f3;
  margin: 0;
  padding: 7px 14px;
  color: #555;
  transition: all ease-in-out 0.2s;
  font: 13px/1.3 Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button:hover {
  border-color: #189fd3;
  background: #189fd3;
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button:active {
  border-color: #0077ab;
  background: #0077ab;
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button.edMaps_iconOnly {
  font-size: 0;
  line-height: 0;
  padding: 4px 10px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button.edMaps_iconOnly:after {
  content: "";
  font: 18px/1.3 FontAwesome;
  margin: 0;
  padding: 0;
  border: 0;
  color: #bbb;
  transition: color ease-in-out 0.2s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_button.edMaps_iconOnly:hover:after {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message {
  display: block;
  border: 1px solid #bebebe;
  border-radius: 4px;
  margin: 10px 0 0;
  padding: 5px 10px;
  background: #ededed;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message > span {
  float: right;
  width: 20px;
  height: 20px;
  background: none;
  border: 0;
  border-radius: 0 4px 0 4px;
  margin: -2px -10px 0 0;
  padding: 0;
  text-align: center;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity ease-in-out 0.1s;
  font-size: 0;
  line-height: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message > span::before {
  content: "";
  font: 14px/1.3 FontAwesome;
  color: #555;
  padding: 0;
  margin: 0;
  text-shadow: 0 1px 0 #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message > span:hover {
  opacity: 1;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message > p {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  display: block;
  font: 12px/1.3 Arial, Helvetica, sans-serif;
  color: #555;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message > p:last-child {
  margin-bottom: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message.edMaps_negative {
  background: #e69191;
  border-color: #ae0000;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message.edMaps_negative > span::before {
  color: #aa0d0d;
  text-shadow: 0 1px 0 #ff9292;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message.edMaps_negative > p {
  color: #850c0c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message.edMaps_topCenterAnchor::before {
  content: "";
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0 0 0 -10px;
  border-color: transparent transparent #bebebe;
  border-style: none solid solid;
  border-width: 0 10px 8px;
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 50%;
  right: auto;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_message.edMaps_topCenterAnchor.edMaps_negative::before {
  border-color: transparent transparent #ae0000;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map {
  margin: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl {
  display: block;
  position: absolute;
  z-index: 1;
  top: auto;
  left: 50%;
  right: auto;
  bottom: auto;
  margin: 0 0 0 -159px;
  border: 0;
  border-radius: 0 0 4px 4px;
  padding: 0;
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transition: transform ease 0.2s;
  background: #fff;
  overflow: hidden;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  font-size: 0;
  line-height: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_info {
  padding: 4px;
  margin: 0 50px 0 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_info > span {
  display: inline-block;
  background: #e7e7e7;
  padding: 0;
  margin: 0;
  border: 3px solid #e7e7e7;
  border-left-width: 5px;
  border-right-width: 5px;
  border-radius: 4px;
  position: relative;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_info > span > span {
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  width: 100px;
  overflow: hidden;
  display: inline-block;
  color: #606060;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_info > span.edMaps_start {
  margin: 0 40px 0 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_info > span.edMaps_start:after {
  content: "";
  font: 20px/1.3 FontAwesome;
  position: absolute;
  top: -4px;
  left: auto;
  right: -35px;
  bottom: auto;
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button {
  border: 0;
  border-radius: 0;
  border-left: 1px solid #e3e3e3;
  padding: 3px 1px 4px 0;
  text-align: center;
  width: 25px;
  height: 100%;
  box-sizing: border-box;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button:after {
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button:hover {
  border-left-color: #1188b7;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button.edMaps_settings:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button.edMaps_close:after {
  color: #E75252;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsRouteMapControl > div.edMaps_actions > .edMaps_button.edMaps_close:hover:after {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl {
  display: block;
  position: absolute;
  z-index: 1;
  top: auto;
  left: 50%;
  right: auto;
  bottom: auto;
  margin: 0 0 0 -135px;
  border: 0;
  padding: 10px;
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transition: transform ease 0.2s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div {
  display: block;
  background: #fff;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 0 4px #000;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > span.edMaps_close {
  background: #f3f3f3;
  color: #919191;
  display: block;
  padding: 5px 0;
  margin: 0;
  border: 0;
  font: 14px/1.3 Arial, Helvetica, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > span.edMaps_close::before {
  color: #919191;
  content: "";
  font: 14px/1.3 FontAwesome;
  margin: 0 3px 0 0;
  padding: 0;
  border: 0;
  transition: color ease-in-out 0.2s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > span.edMaps_close:hover {
  background: #189fd3;
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > span.edMaps_close:hover::before {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 250px;
  height: 210px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper:after {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0.01;
  transition: opacity ease-in-out 0.2s;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  font: 125px/210px FontAwesome;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div {
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  height: 100%;
  width: 200%;
  transition: transform 0.2s ease-in-out;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div {
  margin: 0;
  padding: 10px;
  border: 0;
  position: relative;
  float: left;
  height: 100%;
  width: 50%;
  box-sizing: border-box;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div > div.edMaps_actions {
  position: absolute;
  top: auto;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div > ol.edMaps_messages {
  position: absolute;
  top: 0;
  left: 20px;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  background: none;
  z-index: 2;
  width: 210px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div > ol.edMaps_messages > li {
  list-style-type: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main {
  padding-bottom: 50px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation {
  position: relative;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > span.edMaps_myLocation,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > input {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > span.edMaps_myLocation {
  display: none;
  margin: 0;
  padding: 0.3em 0.6em 0.3em 20px;
  border: 0;
  border-bottom: 1px solid #c5c5c5;
  font: 13px/1.3 Arial, Helvetica, sans-serif;
  color: #636363;
  box-sizing: border-box;
  position: relative;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > span.edMaps_myLocation::before {
  font: 16px/1.3 FontAwesome;
  color: #636363;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  top: 2px;
  left: 3px;
  bottom: auto;
  right: auto;
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > button {
  margin: 0;
  padding: 0;
  border: 0;
  width: 30px;
  display: inline-block;
  height: 25px;
  border-radius: 0;
  background: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > button:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > button:hover:after {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 2;
  background: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 4px 4px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li {
  border: 0;
  border-left: 1px solid #189fd3;
  border-right: 1px solid #189fd3;
  padding: 6px 10px 6px 26px;
  margin: 0;
  display: block;
  list-style-type: none;
  font: 13px/1.3 Arial, Helvetica, sans-serif;
  color: #555;
  transition: color ease-in-out 0.2s;
  background: #f3f3f3;
  cursor: pointer;
  position: relative;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li::before {
  font: 16px/1.3 FontAwesome;
  color: #555;
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  right: auto;
  bottom: auto;
  transition: color ease-in-out 0.2s;
  display: block;
  width: 20px;
  text-align: center;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li:hover {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li:hover::before {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li.edMaps_active {
  background: #189fd3;
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li.edMaps_active::before {
  color: #fff;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: 1px solid #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li.edMaps_searchForLocation::before {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > ol > li.edMaps_myLocation::before {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_message {
  margin: 8px 0 0;
  position: absolute;
  z-index: 1;
  display: none;
  box-sizing: border-box;
  left: 15px;
  width: 200px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status {
  border: 0;
  background: none;
  margin: 0;
  padding: 0 5px;
  color: #555;
  transition: all ease-in-out 0.2s;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: auto;
  left: auto;
  right: 35px;
  bottom: 2px;
  cursor: default;
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status:after {
  content: "";
  font: 18px/1.3 FontAwesome;
  margin: 0;
  padding: 0;
  border: 0;
  color: #bbb;
  transition: color ease-in-out 0.2s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status > .edMaps_message {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: -30px;
  right: auto;
  z-index: 1;
  width: 75px;
  padding: 2px 4px;
  margin-top: 5px;
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status > .edMaps_message > p {
  font-size: 10px;
  line-height: 1.2;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status:hover:after {
  color: #999;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status:hover > .edMaps_message {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status.edMaps_negative:after {
  content: "";
  color: rgba(222, 67, 67, 0.7);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status.edMaps_negative:hover:after {
  color: #de4242;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status.edMaps_positive:after {
  content: "";
  color: rgba(96, 186, 67, 0.7);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation > .edMaps_status.edMaps_positive:hover:after {
  color: #5fb943;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_dropDownActive > ol {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_dropDownActive > button:after {
  color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_getMyLocation > span.edMaps_myLocation {
  display: inline-block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_getMyLocation > input {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_getMyLocation > .edMaps_status {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showMessage > .edMaps_message {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_error > span.edMaps_myLocation,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_error > input {
  border-color: #ae0000;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_error > input:focus {
  box-shadow: 0 1px 0 #ae0000;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyLocationSearch > .edMaps_button, .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > .edMaps_button {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyLocationSearch > input {
  width: 100%;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > input {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > span.edMaps_myLocation {
  width: 100%;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > .edMaps_status {
  right: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > .edMaps_status > .edMaps_message {
  left: -62px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation.edMaps_showOnlyMyLocation > .edMaps_status > .edMaps_message::before {
  right: 0;
  left: auto;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_startingLocation, .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_destinationLocation, .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel {
  display: block;
  margin-bottom: 10px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_destinationLocation > span {
  line-height: 1.5;
  height: 25px;
  overflow: hidden;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel > .edMaps_radioButtonGroup {
  text-align: center;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel > .edMaps_radioButtonGroup .edMaps_driving > label:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel > .edMaps_radioButtonGroup .edMaps_bicycling > label:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel > .edMaps_radioButtonGroup .edMaps_transit > label:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_modeOfTravel > .edMaps_radioButtonGroup .edMaps_walking > label:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_actions > .edMaps_getDirections {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_actions > .edMaps_options:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_main > div.edMaps_loading {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
  z-index: 2;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl > div > div.edMaps_sliderWrapper > div > div.edMaps_additionalOptions > div.edMaps_actions > .edMaps_backToMain:after {
  content: "";
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl.edMaps_showAdditionalOptions > div > div.edMaps_sliderWrapper > div {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_map > .edMaps_directionsMapControl.edMaps_processing > div > div.edMaps_sliderWrapper:after {
  left: 0;
  opacity: 1;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0 0 5px 5px;
  display: block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  background: #fff;
  overflow: hidden;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper *,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper *:before,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper *:after {
  box-sizing: border-box;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_locationSearchWrapper {
  margin: 20px 50px 0 0;
  width: 230px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_locationSearchWrapper > input[type='text'] {
  font-size: 14px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_userLocationTriggerWrapper {
  padding: 0;
  margin: 20px 0 0;
  border: 0;
  display: inline-block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector {
  margin: 20px 0 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderSwitch.edMaps_hidden {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper {
  display: none;
  margin: 0;
  padding: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider {
  margin: 17px 0;
  background: #e0e0e0;
  border: 0;
  border-radius: 0;
  padding: 0;
  height: 4px;
  box-shadow: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider > .noUi-base > .noUi-origin > .noUi-handle {
  width: 35px;
  height: 30px;
  border: 0;
  border-radius: 3px;
  background: #189fd3;
  box-shadow: none;
  top: -13px;
  transition: background ease-in-out 0.2s;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider > .noUi-base > .noUi-origin > .noUi-handle:after, .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider > .noUi-base > .noUi-origin > .noUi-handle::before {
  width: 2px;
  height: 14px;
  background: #fff;
  top: 8px;
  left: 14px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider > .noUi-base > .noUi-origin > .noUi-handle::before {
  left: 19px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_radiusSlider > .noUi-base > .noUi-origin > .noUi-handle:hover {
  background: #2cb3e7;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > .edMaps_textBox > input {
  margin: 0;
  width: 60px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul {
  margin: 0 0 0 10px;
  padding: 0;
  display: inline-block;
  position: relative;
  top: 3px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] {
  display: none;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 6px 0 0 29px;
  vertical-align: baseline;
  min-height: 30px;
  border-radius: 50% 0 0 50%;
  color: #919191;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label::before, .edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label:after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  display: block;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label:after {
  border: 2px solid #919191;
  background: transparent;
  width: 24px;
  height: 24px;
  top: 3px;
  left: 3px;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label:hover::before {
  background: #60cb20 !important;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio'] + label:hover:after {
  border-color: #60cb20 !important;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio']:checked + label::before {
  background: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector > .edMaps_radiusSliderWrapper > ul > li > input[type='radio']:checked + label:after {
  border-color: #189fd3;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_markersInRadiusSelector.edMaps_active > .edMaps_radiusSliderWrapper {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_directionsMapControl,
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_directionsRouteMapControl {
  display: none !important;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_directionsDetails {
  display: none;
  margin: 10px 0 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_directionsDetails > .edMaps_directionsResultsContainer {
  overflow: hidden;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper.edMaps_contentAbove {
  border-radius: 5px 5px 0 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsModal .edMaps_map {
  margin: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsModal .edMaps_map .edMaps_directionsMapControl {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails .edMaps_map {
  margin: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails .edMaps_map .edMaps_directionsRouteMapControl {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails.edMaps_showDirectionsModal .edMaps_map {
  margin: 0;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails.edMaps_showDirectionsModal .edMaps_map .edMaps_directionsRouteMapControl {
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails .edMaps_slmWrapper .edMaps_directionsDetails {
  display: block;
}
.edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_showDirectionsDetails .edMaps_slmWrapper, .edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_hasLocationSearch .edMaps_slmWrapper, .edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_hasUserLocationTrigger .edMaps_slmWrapper, .edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_hasMarkersInRadiusSelector .edMaps_slmWrapper, .edMaps_moduleWrapper > .edMaps_mapWrapper.edMaps_hasMarkerList .edMaps_slmWrapper {
  padding: 0 40px 20px;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul, .edMaps_moduleWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul,
.edMaps_moduleWrapper .eds_galleryManageMenu:hover > ul {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  opacity: 1;
  padding: 13px 13px 0;
  position: absolute;
  right: -33px;
  top: 45px;
  visibility: visible;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul, .edMaps_moduleWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul,
  .edMaps_moduleWrapper .eds_galleryManageMenu:hover > ul {
    right: -20px;
  }
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li, .edMaps_moduleWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li,
.edMaps_moduleWrapper .eds_galleryManageMenu:hover > ul > li {
  display: block;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li:first-child > a:after, .edMaps_moduleWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li:first-child > a:after,
  .edMaps_moduleWrapper .eds_galleryManageMenu:hover > ul > li:first-child > a:after {
    right: 27px;
  }
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu {
  text-align: left;
  position: static;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul {
  background-color: transparent;
  padding: 0;
  position: static;
  margin: 10px 0;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li {
  display: inline-block;
  margin-left: -1px;
  margin-bottom: 0;
  margin-top: -1px;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li > a {
  border-radius: 0;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li:first-child > a {
  border-radius: 3px 0 0 3px;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li:first-child > a:after {
  display: none;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenu > ul > li:last-child > a {
  border-radius: 0 3px 3px 0;
}
.edMaps_moduleWrapper.edMaps_initialState .eds_galleryManageMenuTrigger {
  display: none;
}
.edMaps_moduleWrapper .eds_galleryManageMenu {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  z-index: 99;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .edMaps_moduleWrapper .eds_galleryManageMenu {
    right: 15px;
    top: 0;
  }
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
  transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li {
  list-style-type: none;
  margin: 0 0 13px;
  padding: 0;
  display: none;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a {
  display: block;
  white-space: nowrap;
  padding: 12px 25px;
  line-height: 1;
  font-size: 16px;
  font-family: "Arial";
  color: #189fd3;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: solid 1px #dadada;
  border-radius: 3px;
  background-color: #fff;
  text-align: left;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a {
    font-size: 0;
    line-height: 0;
  }
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a:hover {
  color: #fff;
  background-color: #2b93dd;
  text-decoration: none;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a::before {
  font-family: "FontAwesome";
  color: #aeaeae;
  padding-right: 10px;
  font-size: 14px;
  font-size: 21px !important;
  line-height: 1 !important;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a::before {
    font-size: 0;
    line-height: 0;
    padding-right: 0;
  }
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li > a:hover::before {
  color: #fff;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li.eds_mapEditor a::before {
  content: "";
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li.eds_portalSettings a::before {
  content: "";
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li:first-child > a {
  position: relative;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li:first-child > a:after {
  position: absolute;
  top: -8px;
  right: 35px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #dadada transparent transparent #dadada;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.edMaps_moduleWrapper .eds_galleryManageMenu > ul > li:first-child > a:hover:after {
  background-color: #2b93dd;
}
.edMaps_moduleWrapper .eds_galleryManageMenuTrigger {
  display: block;
  padding-bottom: 20px;
  text-align: center;
}
.edMaps_moduleWrapper .eds_galleryManageMenuTrigger > span {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  height: 41px;
  width: 48px;
  background-color: #2b93dd;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
}
.edMaps_moduleWrapper .eds_galleryManageMenuTrigger > span::before {
  font-size: 25px;
  color: #fff;
  font-family: "FontAwesome";
  line-height: 41px;
  content: "";
}
.edMaps_moduleWrapper .eds_galleryManageMenuTrigger > span:hover {
  background-color: #3fa7f1;
}
.edMaps_moduleWrapper .edMaps_widgetSelector,
.edMaps_moduleWrapper .edMaps_tabsNav {
  background-color: #39485e;
}
.edMaps_moduleWrapper .edMaps_tabs .edMaps_tabsNav {
  line-height: 0;
  margin: 0;
  padding: 0;
}
.edMaps_moduleWrapper .edMaps_tabs .edMaps_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  background-color: #2d394a;
  box-shadow: 1px -1px 0px 0px #404f64 inset;
  text-align: center;
  width: 50%;
  padding: 10px;
  transition: all 400ms;
}
.edMaps_moduleWrapper .edMaps_tabs .edMaps_tabsNav > li > span {
  font: 16px/1.2 "Coda", cursive;
  color: #fff;
}
.edMaps_moduleWrapper .edMaps_tabs .edMaps_tabsNav > li.edsTabulator_active {
  background-color: #39485e;
  box-shadow: none;
}
.edMaps_moduleWrapper .edMaps_tabs .edsTabulator_tabsWrapper {
  overflow: hidden;
  position: relative;
}
.edMaps_moduleWrapper .edMaps_tabs .edsTabulator_tabsWrapper .edsTabulator_tab {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 0;
  z-index: 0;
  transition: opacity 300ms;
}
.edMaps_moduleWrapper .edMaps_tabs .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  width: 100%;
}

.edMaps_map {
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  overflow: hidden !important;
}
.edMaps_map.edMaps_pointerPosition_bottomCenter {
  margin-bottom: 24px;
}
.edMaps_map.edMaps_google,
.edMaps_map.edMaps_google *,
.edMaps_map.edMaps_google *:before,
.edMaps_map.edMaps_google *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.edMaps_map.edMaps_google img {
  max-width: none;
  width: auto;
  display: inline;
}
.edMaps_map.edMaps_google label {
  width: auto;
  display: inline;
}
.edMaps_map .edMaps_infoWindow {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  cursor: default;
}
.edMaps_map .edMaps_contentOverflow {
  overflow: auto;
}
.edMaps_map .edMaps_closeTrigger,
.edMaps_map .edMaps_contentOverflow,
.edMaps_map .edMaps_contentOverflow > .edMaps_contentWrapper {
  padding: 0;
  margin: 0;
  border: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
  box-sizing: content-box;
}
.edMaps_map .edMaps_infoWindowContentTest {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  position: absolute;
  visibility: hidden;
  box-sizing: border-box;
  overflow: auto;
}
.edMaps_map .edMaps_infoWindow {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  box-sizing: content-box;
}
.edMaps_map .edMaps_infoWindow > div:first-child:not(.edMaps_contentOverflow) > div:first-child {
  border: none !important;
}
.edMaps_map .edMaps_infoWindow > div:first-child:not(.edMaps_contentOverflow) > div:nth-child(2) {
  border: none !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.edMaps_map .edMaps_infoWindow > div:first-child:not(.edMaps_contentOverflow) > div:last-child {
  border: none !important;
  box-shadow: none !important;
}
.edMaps_map .edMaps_infoWindow > div:last-child:not(.edMaps_bubbleArrow) {
  background: none transparent !important;
  width: 20px !important;
  height: 20px !important;
  top: 5px !important;
  right: 4px !important;
  opacity: 0.7;
  transition: opacity ease-in-out 0.2s;
}
.edMaps_map .edMaps_infoWindow > div:last-child:not(.edMaps_bubbleArrow):after {
  content: "";
  font: 16px/1 FontAwesome;
  position: absolute;
  top: 1px;
  left: 3px;
  right: auto;
  bottom: auto;
  color: #676767;
}
.edMaps_map .edMaps_infoWindow > div:last-child:not(.edMaps_bubbleArrow):hover {
  opacity: 1;
}
.edMaps_map .edMaps_infoWindow > div:last-child:not(.edMaps_bubbleArrow) > img {
  display: none !important;
}
.edMaps_map .edMaps_contentOverflow {
  margin: 10px 24px 10px 15px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 0;
}
.edMaps_map .edMaps_contentOverflow > .edMaps_contentWrapper {
  position: relative;
}
.edMaps_map .edMaps_closeTrigger {
  background: none;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: auto;
  right: 4px;
  bottom: auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity ease-in-out 0.2s;
}
.edMaps_map .edMaps_closeTrigger:after {
  content: "";
  font: 16px/1 FontAwesome;
  position: absolute;
  top: 1px;
  left: 3px;
  right: auto;
  bottom: auto;
  color: #676767;
}
.edMaps_map .edMaps_closeTrigger:hover {
  opacity: 1;
}
.edMaps_map .edMaps_bubbleArrow {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 1;
  margin: 0;
  margin-left: -10px;
}
.edMaps_map .edMaps_bubbleArrow .edMaps_leftSide,
.edMaps_map .edMaps_bubbleArrow .edMaps_rightSide {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  overflow: hidden;
  height: 30px;
  overflow: hidden;
  width: 16px;
}
.edMaps_map .edMaps_bubbleArrow .edMaps_leftSide:after,
.edMaps_map .edMaps_bubbleArrow .edMaps_rightSide:after {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  height: 24px;
  position: absolute;
  width: 10px;
  content: " ";
}
.edMaps_map .edMaps_bubbleArrow .edMaps_leftSide {
  left: -6px;
}
.edMaps_map .edMaps_bubbleArrow .edMaps_leftSide:after {
  left: 6px;
  transform: skewX(22.6deg);
  transform-origin: 0 0 0;
}
.edMaps_map .edMaps_bubbleArrow .edMaps_rightSide {
  left: 10px;
}
.edMaps_map .edMaps_bubbleArrow .edMaps_rightSide:after {
  left: 0;
  transform: skewX(-22.6deg);
  transform-origin: 10px 0 0;
}
.edMaps_map .edMaps_infoWindowContentTest {
  padding: 11px 25px 11px 16px;
}
.edMaps_map .edMaps_infoWindowContentTest .edMaps_markerWrapper {
  padding-right: 5px;
}
.edMaps_map .edMaps_markerWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
.edMaps_map .edMaps_markerWrapper > .edMaps_content {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
.edMaps_map .edMaps_title {
  font-weight: bold;
  font-size: 13px;
  line-height: 1.3;
}
.edMaps_map .edMaps_html {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  font-size: 11px;
  line-height: 1.3;
  font-weight: normal;
}
.edMaps_map .edMaps_newsContent {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  width: 250px;
}
.edMaps_map .edMaps_newsContent > a {
  font-size: 20px;
  line-height: 1.3;
  color: #189fd3;
  transition: color ease-in-out 0.2s;
  display: block;
  text-align: center;
}
.edMaps_map .edMaps_newsContent > a > img {
  margin: 0 auto;
  padding: 0;
  border: 0;
  max-width: none;
}
.edMaps_map .edMaps_newsContent > a:hover {
  color: #2cb3e7;
}
.edMaps_map .edMaps_newsContent > .edMaps_title {
  display: block;
  margin: 10px 10px 0;
  padding: 0;
  border: 0;
  max-width: 370px;
  width: auto;
}
.edMaps_map .edMaps_newsContent > .edMaps_title > a {
  font-size: 20px;
  line-height: 1.3;
  color: #189fd3;
  transition: color ease-in-out 0.2s;
}
.edMaps_map .edMaps_newsContent > .edMaps_title > a:hover {
  color: #2cb3e7;
}
.edMaps_map .edMaps_newsContent > .edMaps_summary {
  display: block;
  margin: 10px 10px 0;
  padding: 0;
  border: 0;
  max-width: 370px;
  width: auto;
  font-size: 12px;
  line-height: 1.3;
  color: #939393;
}
.edMaps_map .edMaps_newsContent > .edMaps_summary > p {
  font-size: 12px;
  line-height: 1.3;
  color: #939393;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
}
.edMaps_map .edMaps_markerActions {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  display: block;
}
.edMaps_map .edMaps_markerActions > .edMaps_button {
  padding: 3px 8px;
  margin: 0 10px 0 0;
}
.edMaps_map .edMaps_markerActions > .edMaps_button.edMaps_streetViewUnavailable {
  opacity: 0.4;
  cursor: not-allowed;
}
.edMaps_map .edMaps_markerActions > .edMaps_button.edMaps_streetViewUnavailable:hover {
  background: #f3f3f3;
  color: #555;
  border-color: #e3e3e3;
}

.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList {
  display: block;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  max-height: 250px;
  overflow: none;
  overflow-y: auto;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div {
  display: block;
  margin: 0;
  padding: 13px 15px 9px 30px;
  border: 0;
  border-top: 1px dashed #e0e0e0;
  position: relative;
  cursor: pointer;
  min-height: 57px;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > img {
  position: absolute;
  top: 10px;
  left: 5px;
  right: auto;
  bottom: auto;
  border: 0;
  padding: 0;
  margin: 0;
  max-width: 22px !important;
  height: auto;
  max-height: 22px !important;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  line-height: 1.3;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > p.edMaps_distance {
  color: #777;
  font-size: 10px;
  margin: 0 0 0 3px;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > p.edMaps_title {
  color: #636363;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > div.edMaps_html {
  color: #919191;
  margin: 7px 0 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  line-height: 1.3;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div > .edMaps_distance {
  display: none;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div.edMaps_sorted > .edMaps_distance {
  display: block;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div.edMaps_sorted > div.edMaps_html {
  margin: 4px 0 0;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div.edMaps_hidden {
  display: none;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div.edMaps_defaultMarker::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 27px;
  background: url("/DesktopModules/EasyDNNmaps/static/maps_1_4/img/markers/default.png") no-repeat center center;
  left: 7px;
  top: 8px;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div.edMaps_infoWindowOpen {
  border: 0;
  border-left: 5px solid #189fd3;
  padding-left: 30px;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div:hover {
  background: #eee;
}
.edMaps_mapWrapper.edMaps_theme__default-Default .edMaps_markerList > div:first-child {
  border-top-width: 0;
}

.edMaps_minimize {
  background-color: #4a98d6;
  cursor: pointer;
  width: 100%;
  height: 41px;
  top: 0;
  right: 0;
  transition: all 400ms;
}
.edMaps_minimize:hover {
  background-color: #5eacea;
}
.edMaps_minimize > span {
  color: #fff;
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 10px 15px;
  position: relative;
}
.edMaps_minimize > span::before, .edMaps_minimize > span::after {
  font: 21px/1 "FontAwesome";
  display: inline-block;
}
.edMaps_minimize > span::before {
  content: "";
}
.edMaps_minimize > span::after {
  width: 60px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #296ba7;
  content: "";
  font-size: 25px;
  line-height: 40px;
}

.edMaps_container.edMaps_onResolutionResize .edMaps_widgetWrapper {
  width: auto !important;
}
.edMaps_container.edMaps__minimized.edMaps_onResolutionResize .edMaps_minimize {
  position: absolute;
  top: -80px;
  right: 50px;
  width: 48px;
  height: 48px;
  border: solid 3px #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24);
}
.edMaps_container.edMaps__minimized.edMaps_onResolutionResize .edMaps_minimize > span {
  padding: 0;
}
.edMaps_container.edMaps__minimized.edMaps_onResolutionResize .edMaps_minimize > span::before {
  display: none;
}
.edMaps_container.edMaps__minimized.edMaps_onResolutionResize .edMaps_minimize > span::after {
  width: 42px;
}
.edMaps_container.edMaps__minimized .edMaps_minimize > span::after {
  content: "";
}

.edMaps_widgetWrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  max-width: 100%;
}
.edMaps_widgetWrapper .edMaps_widgetSelectionContainer {
  opacity: 0;
  transition: opacity 400ms ease 300ms;
}
.edMaps_widgetWrapper *,
.edMaps_widgetWrapper *::before,
.edMaps_widgetWrapper *::after {
  box-sizing: border-box;
}
.edMaps_widgetWrapper .edMaps_selectorContent {
  overflow: hidden;
}

.edMaps_widgetSelectionWrapper {
  background-color: #38485f;
  width: 340px;
  transition: all 500ms;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edMaps_widgetSelectionWrapper {
    width: 280px;
  }
}
.edMaps_widgetSelectionWrapper.scroll-wrapper > .scroll-content {
  overflow-x: hidden !important;
}
.edMaps_widgetSelectionWrapper.scroll-scrolly_visible > div {
  padding-right: 10px;
}
.edMaps_widgetSelectionWrapper .edMaps_icon {
  margin-right: 5px;
  font-size: 0;
  line-height: 0;
  width: 20px;
  float: left;
}
.edMaps_widgetSelectionWrapper .edMaps_icon > img {
  max-width: 20px !important;
  max-height: 20px !important;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox {
  overflow: hidden;
  margin-left: 25px;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"] {
  display: none;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label {
  position: relative;
  margin: 0 5px 0 0;
  padding: 0 0 0 25px;
  width: auto;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font: normal normal 16px/1.1 "Coda", cursive;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  background-color: #fff;
  content: "";
  transition: all ease-in-out 0.2s;
  color: #fff;
  font: 10px/13px "FontAwesome";
  text-align: center;
  text-indent: 1px;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label:hover::before {
  content: "";
  border-color: #4a98d6;
  color: rgba(74, 152, 214, 0.4);
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"]:checked + label::before {
  content: "";
  border-color: #4a98d6;
  background-color: #4a98d6;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetCheckBox input[type="checkbox"]:checked + label:hover::before {
  color: rgba(255, 255, 255, 0.4);
}
.edMaps_widgetSelectionWrapper .edMaps_icon + .edMaps_widgetCheckBox {
  margin-left: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_descriptionContent {
  color: #989898;
  padding: 15px;
  font-size: 14px;
  background-color: #f1f1f1;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper .edMaps_listContentWrapper {
  position: relative;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper .edMaps_listContentWrapper::before {
  content: "";
  top: 0;
  border-style: solid;
  border-width: 4px;
  border-color: transparent;
  display: inline-block;
  position: absolute;
  opacity: 0;
  transition: all 200ms;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul.edMaps_listItems {
  margin: 0;
  padding: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper li.edMaps__categoryItem, .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper li.edMaps__routeItem {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  margin: 0 15px;
  padding: 10px 0;
  position: relative;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_widgetCheckBox {
  position: relative;
  z-index: 1;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_expandCollapse {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  display: none;
  text-align: right;
  cursor: pointer;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_expandCollapse::before, .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_expandCollapse::after {
  font: 14px/0 "FontAwesome";
  color: #4a98d6;
  transition: all 200ms;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_expandCollapse::before {
  content: "";
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li > .edMaps_itemWrapper .edMaps_expandCollapse::after {
  content: "";
  opacity: 0;
  color: #4a98d6;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__active > .edMaps_itemWrapper .edMaps_expandCollapse::before {
  transform: rotate(-180deg);
  opacity: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__active > .edMaps_itemWrapper .edMaps_expandCollapse::after {
  opacity: 1;
  transform: rotate(180deg);
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__active > .edMaps_listContentWrapper {
  height: auto;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__active > .edMaps_listContentWrapper::before {
  opacity: 1;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__hideCheckbox > .edMaps_itemWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label {
  padding-left: 0;
  cursor: pointer;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li.edMaps__hideCheckbox > .edMaps_itemWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label::before {
  display: none;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul li .edMaps_listContentWrapper {
  height: 0;
  overflow: hidden;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul > li.edMaps_hasChild > .edMaps_itemWrapper > .edMaps_expandCollapse, .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul > li.edMaps_hasDescription > .edMaps_itemWrapper > .edMaps_expandCollapse {
  display: inline-block;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul > li.edMaps_hasChild > .edMaps_itemWrapper > .edMaps_widgetCheckBox > label::before {
  display: none;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul > li.edMaps__active.edMaps_hasChild > .edMaps_itemWrapper, .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper ul > li.edMaps__active.edMaps_hasDescription > .edMaps_itemWrapper {
  border-bottom-color: transparent;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_itemWrapper {
  border-bottom-color: #4f5e74;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li.edMaps_hasChild > .edMaps_itemWrapper > .edMaps_widgetCheckBox > label {
  padding-left: 0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper {
  background-color: #f0f0f0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper::before {
  border-top-color: #38485f;
  left: 20px;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li > .edMaps_itemWrapper {
  border-bottom-color: #e5e5e5;
  margin-left: 20px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li > .edMaps_itemWrapper {
    margin-left: 10px;
  }
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li > .edMaps_itemWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label {
  color: #38485f;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper {
  border-left: solid 1px #f0f0f0;
  border-right: solid 1px #f0f0f0;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper {
  background-color: #fff;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li > .edMaps_itemWrapper {
  margin-left: 75px;
  border-bottom: none;
  padding-top: 7px;
  padding-bottom: 7px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li > .edMaps_itemWrapper {
    margin-left: 50px;
  }
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li > .edMaps_itemWrapper .edMaps_widgetCheckBox input[type="checkbox"] + label {
  color: #868686;
  font-size: 15px;
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li ul {
  margin-left: 25px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li ul {
    margin-left: 15px;
  }
}
.edMaps_widgetSelectionWrapper .edMaps_widgetList .edMaps_widgetListWrapper > .edMaps_listContentWrapper > ul > li > .edMaps_listContentWrapper > ul > li .edMaps_listContentWrapper li ul li > .edMaps_itemWrapper {
  padding-top: 5px;
  padding-bottom: 5px;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element {
  background-color: #dfdfdf;
  box-sizing: border-box;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element > div {
  border-radius: 0;
  top: 2px;
  bottom: 2px;
  height: auto;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element > div .scroll-element_track {
  background-color: #c7c7c7;
  border: solid 4px #dfdfdf;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element > div .scroll-bar {
  background-color: #4b99d7;
  border-radius: 0;
  opacity: 1;
  right: 2px;
  left: 2px;
  box-sizing: border-box;
  width: 7px;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element.scroll-y {
  right: 0;
  width: 11px;
}
.edMaps_widgetSelectionWrapper.scroll-wrapper .scroll-element.scroll-y .scroll-element_outer .scroll-element_track {
  border-top-width: 9px;
  border-bottom-width: 9px;
}


@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2015 Daniel Eden
 */

.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}@keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}@keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from,to{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}@keyframes wobble{from,to{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}

#togglemenu{
    position:fixed;
    width:100%!Important;
    height:100%!Important;
    top:0;
    right:-100%;
    z-index:10000;
    -webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-transition-duration: 0.5s;
	overflow-y:auto;
}
#togglemenu li{ position:relative;}
#togglemenupadding {padding:5% 15%;}
#togglemenu.expanded {
    right: 0;
    
}
#togglemenu ul {
    list-style:none; 
    margin:0;
    width:100%!Important;
}
#togglemenu > ul {
    border-bottom-width:1px;
    border-bottom-style:solid;
}
#togglemenu ul li {
    padding:5px 0;
    border-top-width:1px;
    border-top-style:solid;            
}
#togglemenu ul ul {padding:7px 0 0 0;}

#togglemenubutton {
    cursor: pointer;
    float: right;
    margin: 18px 0 0 0;
    text-align: right;
    width: 35px;
}
#togglemenubutton .icon-bar{
    display: block;
    height: 2px;
    margin-top: 6px;
    width: 35px;
}
#togglemenubuttonclose {
    cursor:pointer;
    padding-bottom:20px;
}
#togglemenu a {
    text-decoration:none;
}
/* Level 2 */
#togglemenu ul ul a {
    padding:0 0 0 20px;
    display:inline-block;
}
#togglemenu ul ul li {
    border-top-width:0px;
}

/* Level 3 */
#togglemenu ul ul ul a {
    padding:0 0 0 40px;
}


/* Navi Toggle Links - Falls auf- und zuklappen erw�nscht ist*/
#togglemenu ul ul {display:none;}
#togglemenu ul.isopen {display:block;}
.navitoggleicon {
	width:25px;
	height:25px;
	display:block;
	position:absolute;
	top:3px;
	right:0px;
	z-index:50;
	cursor:pointer;
	font-size:14px;
	text-align:center;
	border-width:1px;
	border-style:solid;
}

.navitoggleicon:after {
	content:"+";
}
.isopen.navitoggleicon:after{
	content:"-";
}






 #togglemenubutton .icon-bar{
    background-color: #000;
}
#togglemenu{
    background-color:#fff;
}
#togglemenu,
#togglemenu a {color:#000;}


#togglemenu ul li { border-color:#ddd;}
#togglemenu .navitoggleicon {
	color:#000;
	border-color:#000;
}
#togglemenu a:hover,
#togglemenu .navitoggleicon:hover,
#togglemenubutton .icon-bar:hover
#togglemenu li.mmSelected,
#togglemenu li.mmSelected > a {
    color:#e30915;
}



#metamenu-wrapper {padding:31px 0 0 0;}
ul.metamenu {margin:0; list-style:none;text-align:right;}
ul.metamenu li {display:inline-block; padding-right:20px;}
ul.metamenu li a {text-decoration:none;}


ul.metamenu a{color:#000;}
ul.metamenu a:hover{color:#e30915;}

/*
#metamenu-wrapper {height:25px;padding:10px 0;}
*/
#aussenzentrenmenu-wrapper { z-index:1; margin-top:25px; }


ul.aussenzentrenmenu {margin:0; list-style:none;text-align:left;position:absolute; display:none; width:100%;}
div.zentrenselect,
ul.aussenzentrenmenu li a {
    display:block; 
    padding:5px 50px 5px 20px; 
    cursor:pointer; 
    text-decoration:none; 
    border-bottom-width:1px;
    border-bottom-style:solid;
}
div.zentrenselect i {position:absolute; right:10px; top:8px;}



div.zentrenselect {color:#fff; background-color:#e30915;}
ul.aussenzentrenmenu li a {color:#fff; background-color:#f07a80; border-color:#fff;}
ul.aussenzentrenmenu li a:hover {color:#fff; background-color:#e30915;}

ul.desktopnav {
    box-sizing:border-box;
    list-style:none; 
    display:inline-block;
    padding-top:5px;
    padding-bottom:5px;
    margin:0;
}
ul.desktopnav li {
    display:inline-block; 
    float:left;
}

/** Hover Box **/
ul.desktopnav li ul li {width:250px;}
ul.desktopnav li ul {
    width:250px;
    position:absolute;
    
    -webkit-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);

	-webkit-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;

	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	-o-transition: -o-transform 0.3s ease-in-out;
	-ms-transition: -ms-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
    
 }
    ul.desktopnav li.root:hover > div > ul {
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    ul.desktopnav li.root li:hover > div > ul {
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

 
 
ul.desktopnav ul li{
    position:relative;
    
}

ul.desktopnav li a {
    text-decoration:none;
    
}

/** Level 1 **/
ul.desktopnav li.root a {
    padding:9px 17px 9px 0;
    line-height:22px;
    display:inline-block;
}

/** Level 2 **/

ul.desktopnav ul li {
    display:block;
    padding:0 2px 0 0;
}
ul.desktopnav li.root ul li a {
    padding:9px 10px;
    margin-bottom:1px;
}
ul.desktopnav li.root ul li a {
    display:block;
    text-align:left;
}
ul.desktopnav li.root ul li div.textwrapper {border:none;  }

/** Level 3 ***/
ul.desktopnav ul ul li { padding:0 0 0 0;margin-bottom:2px;}
ul.desktopnav li div.submenu_wrapper div.submenu_wrapper{
    overflow:visible;
    width:auto;
    position:static;
    z-index:inherit;
}
    
ul.desktopnav ul ul {
    left:100%;
    top:0;
    position:absolute;
    
}
ul.desktopnav li li li a {width:200px;}
ul.desktopnav li li li {
    width:0;
    overflow:hidden;
}
ul.desktopnav li:hover li:hover li {
    width:200px;
}

/* Menu Level3 nach Links wenn über Viewport */
ul.submenu.overlap {
    width:200px;
    right:auto;
    left:-202px;
    text-align:right;
}
ul.submenu li ul.submenu.overlap li { 
    margin-left:auto;
    margin-right:0;
}

/** Level 1 **/
ul.desktopnav li.root a {
    color: #000;
}

    ul.desktopnav li.root a:hover,
    ul.desktopnav li.root.active a
     {
        color: #e30915;
    }

ul.desktopnav li div.textwrapper {
    background-color: transparent;
}

ul.desktopnav li.root:hover div.textwrapper {
    background-color: transparent;
}
/*** Level 2 ***/
ul.desktopnav li.root:hover li div.textwrapper {
    background-color: #f07a80;
    color:#fff!Important;
}
ul.desktopnav li.root li div.textwrapper a,
ul.desktopnav li.root:hover li div.textwrapper a,
ul.desktopnav li.root:hover li div.textwrapper a:hover {  
    color:#fff!Important;
}

ul.desktopnav li.root:hover li:hover div.textwrapper,
ul.desktopnav li.root li.active div.textwrapper {
    background-color: #e30915;
     color:#fff;
}
/*** Level 3 ***/
ul.desktopnav li.root:hover li:hover li div.textwrapper {
    background-color: #f07a80;
}

ul.desktopnav li.root:hover li:hover li:hover div.textwrapper {
    background-color: #f07a80;
}


.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;
}


ul.footermenu { margin:0; list-style:none;}
ul.footermenu ul{ margin-left:20px; list-style:none;}

/* Level 1 */
ul.footermenu a {
    text-decoration:none;
    font-size:25px; 
    line-height:32px;
    padding:10px 0 0px 0;
    display:block;
}
/* Level 2 */
ul.footermenu ul {margin-left:0;}
ul.footermenu ul a {
    font-size:20px; 
    line-height:20px;
    padding:0 0 0 0;
}
ul.footermenu ul li { padding-bottom:20px; }
/* Level 3 */
ul.footermenu ul ul {margin-left:0;padding-top:5px;}
ul.footermenu ul ul a {
    font-size:16px; 
    line-height:20px;
    padding:0;
}
ul.footermenu ul ul li { padding-bottom:0px; }

ul.footermenu a{color:#fff;}
ul.footermenu a:hover{color:#000;}

/*!
 *  Font Awesome 4.5.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/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.eot?v=4.5.0");src:url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.woff2?v=4.5.0") format('woff2'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.woff?v=4.5.0") format('woff'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.ttf?v=4.5.0") format('truetype'),url("/DesktopModules/EasyDNNmaps/static/EasyDnnSolutions/ui/css/font-awesome-4.5.0/fonts/fontawesome-webfont.svg?v=4.5.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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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: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-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-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"}



/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type=text] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  box-sizing: border-box;
  font-family: Arial;
  color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent > h3 > span,
.eds_modalWrapper .eds_modalContent > h3 > label {
  color: inherit;
  font: inherit;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type=text]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type=text]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type=text]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type=text].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button],
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 48px !important;
  text-shadow: none !important;
  padding: 0 30px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-transform: none !important;
  margin: 0 !important;
  height: auto !important;
  transition: all 100ms linear !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3 !important;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7 !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px !important;
  background: none #e9e9ed !important;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7 !important;
}
.eds_modalWrapper .eds_modalContent input[type=radio] + label,
.eds_modalWrapper .eds_modalContent input[type=checkbox] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > span {
  width: auto;
  white-space: normal;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  line-height: 1.3;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > input,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  vertical-align: top;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "\f00d";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .edNews_tooltipContent {
  border-radius: 5px;
  border: 1px solid #B8D5E0;
  background: #0A445B;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  max-width: 350px;
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  top: auto;
  bottom: 100%;
  z-index: 999;
}
.eds_modalWrapper .edNews_tooltip {
  position: relative;
}
.eds_modalWrapper .edNews_tooltip::after {
  position: absolute;
  top: 0;
  left: auto;
  right: -6px;
  display: block;
  background: none;
  content: "\f059";
  font: 16px/1 "FontAwesome";
  text-align: center;
  padding: 0;
  color: #555;
  transition: color ease-in-out 0.4s;
}
.eds_modalWrapper .edNews_tooltip:hover .edNews_tooltipContent {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper .eds_labelAndInput:first-child .edNews_tooltipContent {
  top: 100%;
  bottom: auto;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages::before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success::before {
  content: "\f058";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "\f05a";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "\f071";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "\f06a";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type=radio] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before, .eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3::before {
  content: "\f0e0";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "\f022";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "\f085";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper.eds_width70 .eds_modalContent {
  width: 70%;
  max-width: 70%;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.eds_modalWrapper .styleDisplayNone {
  display: none !important;
}
.eds_modalWrapper .loading {
  position: relative;
}
.eds_modalWrapper .loading::before, .eds_modalWrapper .loading::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 999;
}
.eds_modalWrapper .loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.eds_modalWrapper .loading::after {
  content: "\f021";
  font: 900 3rem/1 "FontAwesome";
  color: #189fd3;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -1rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}

.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}

.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}









/*************** SIMPLE INNER SCROLLBAR ***************/

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.scrollbar-inner > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.scrollbar-inner > .scroll-element:hover .scroll-bar { background-color: #919191; }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }


/* update scrollbar offset if both scrolls are visible */

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }


.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }










/*************** SIMPLE OUTER SCROLLBAR ***************/

.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-outer > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer { height: 8px; top: 2px; }
.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer { left: 2px; width: 8px; }

.scrollbar-outer > .scroll-element .scroll-element_outer { overflow: hidden; }
.scrollbar-outer > .scroll-element .scroll-element_track { background-color: #eeeeee; }

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar { background-color: #d9d9d9; }
.scrollbar-outer > .scroll-element .scroll-bar:hover { background-color: #c2c2c2; }
.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }


/* scrollbar height/width & offset from container borders */

.scrollbar-outer > .scroll-content.scroll-scrolly_visible { left: -12px; margin-left: 12px; }
.scrollbar-outer > .scroll-content.scroll-scrollx_visible { top:  -12px; margin-top:  12px; }

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar { min-width: 10px; }
.scrollbar-outer > .scroll-element.scroll-y .scroll-bar { min-height: 10px; }


/* update scrollbar offset if both scrolls are visible */

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -14px; }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -14px; }

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -14px; }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -14px; }










/*************** SCROLLBAR MAC OS X ***************/

.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track { display: none; }
.scrollbar-macosx > .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}


.scrollbar-macosx > .scroll-element.scroll-x {
    bottom: 0px;
    height: 0px;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0px;
    top: 0;
    width: 0px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar { height: 7px; min-width: 10px; top: -9px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar { left: -9px; min-height: 10px; width: 7px; }

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer { left: 2px; }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size { left: -4px; }

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer { top: 2px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size { top: -4px; }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }










/*************** SCROLLBAR LIGHT ***************/

.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-light > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-light > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#dbdbdb), color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -o-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -ms-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: linear-gradient(to right, #dbdbdb 0%,#e8e8e8 100%);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
    background: #fefefe;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#fefefe), color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -o-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -ms-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: linear-gradient(to right, #fefefe 0%,#f5f5f5 100%);

    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/* scrollbar height/width & offset from container borders */

.scrollbar-light > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-light > .scroll-content.scroll-scrollx_visible { top:  -17px; margin-top:  17px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 0px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-bar { left: 0px; min-height: 10px; width: 10px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer { height: 12px; left: 2px; top: 2px; }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_size { left: -4px; }

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer { left: 2px; top: 2px; width: 12px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_size { top: -4px; }

/* update scrollbar offset if both scrolls are visible */

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }










/*************** SCROLLBAR RAIL ***************/

.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-rail > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #d0b9a0;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* scrollbar height/width & offset from container borders */

.scrollbar-rail > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible { margin-top: 17px; top: -17px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 1px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar { left: 1px; min-height: 10px; width: 10px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer { height: 15px; left: 5px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size { height: 2px; left: -10px; top: 5px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer { top: 5px; width: 15px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size { left: 5px; top: -10px; width: 2px; }

/* update scrollbar offset if both scrolls are visible */

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -25px; }

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -25px; }










/*************** SCROLLBAR DYNAMIC ***************/

.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
    opacity: 0.3;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.scrollbar-dynamic > .scroll-element .scroll-element_size {
    background-color: #cccccc;
    opacity: 0;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;

    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
    background-color: #6c6e71;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

/* scrollbar height/width & offset from container borders */

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto;
}
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;

    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -o-transition: height 0.2s;
    -ms-transition: height 0.2s;
    transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;

    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -ms-transition: width 0.2s;
    transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size { left: -4px; }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size { top: -4px; }


/* update scrollbar offset if both scrolls are visible */

.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }


/* hover & drag */

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
    overflow: hidden;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
    opacity: 1;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
    height: 20px;
    min-height: 7px;
}
.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
    min-width: 7px;
    width: 20px;
}










/*************** SCROLLBAR GOOGLE CHROME ***************/

.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-chrome > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-chrome > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_outer {}

.scrollbar-chrome > .scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e;
}

/* scrollbar height/width & offset from container borders */

.scrollbar-chrome > .scroll-content.scroll-scrolly_visible { left: -16px; margin-left: 16px; }
.scrollbar-chrome > .scroll-content.scroll-scrollx_visible { top:  -16px; margin-top:  16px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar { height: 8px; min-width: 10px; top: 3px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar { left: 3px; min-height: 10px; width: 8px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer { border-left: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track { height: 14px; left: -3px; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size { height: 14px; left: -4px; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer { border-top: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track { top: -3px; width: 14px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size { top: -4px; width: 14px; }

/* update scrollbar offset if both scrolls are visible */

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }








