﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }

@import url(http://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900);
@import url(http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Oswald:400,700,300);
@import url(http://fonts.googleapis.com/css?family=Lato:400,100,300,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300italic,400italic,500,500italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);


/*ColorIcons*/
.bg-blue { background:#3abfec;}
.bg-green { background:#9ace44;}
.bg-yellow { background:#f4b422;}
.bg-red { background:#f15f43;}

.ColorIcons { padding:10px 20px;}
.ColorIcons .col-icon {
    font-size: 55px;
    float: left;
    width: 70px;
}

.ColorIcons .col-right {
    color: #FFF;
    margin: 0px 0px 0px 70px;
}
.ColorIcons .col-right h3 { padding:0 0 10px 0;}
.subtitle { margin:0 auto; max-width:650px; text-align:center; padding:0 0 30px 0;}
.ColorIcons .col-icon {
    color: #fff;
}
/*top-contact*/
.top-contact {
    display: table;
    float: right;
    padding:32px 0 0 0;
}
.top-contact .box {
    float: left;
    display: table;
    margin: 0 25px 0 0;
    white-space: nowrap;
}
.top-contact .box.last { margin:0;}
.top-contact h6{
    font-weight: bold;
    color: #333;
}


.top-contact .icon-right { margin:0 0 0 40px ;}
.ColorBoxes { padding:0 0 30px 0;}
.ColorBoxes .box {
    color: #fff;
    padding: 45px 20px;
    width: 25%;
    float: left;
    text-align: center;
}
.ColorBoxes .box:hover em{ 
	transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
} 
.ColorBoxes .box em {
    font-size: 32px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
       transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
}

.ColorBoxes .box h4 {
    padding: 15px 0 0;
    font-weight:700;
    text-transform: uppercase;
}

.ColorBoxes .box p { padding:15px 0 0;}
.ColorBoxes .box a.button { background:#fff; color:#333; margin:0 0 0 25px;}
.ColorBoxes .box a.button:hover { background:#333; color:#fff;}
.ColorBoxes .box img { width:100%;}
 
.TopIcons { padding:10px 0 30px 0;}
.TopIcons .box { text-align:center; padding:0 0 20px 0;}
.TopIcons h3 { padding:20px 0 10px; color:#333;} 
 
.welcome-text {
  color: #FFF;
  padding:20px;
}

.welcome-text h2 {color:#fff;}
.welcome-text h3 {
  text-transform: capitalize;
  padding: 12px 0 0;
  line-height:1;
}


.quote-link, .quote-link:link, .quote-link:active, .quote-link:visited {
    color: #FFF;
    border: 2px solid #FFF;
    border-radius: 4px;
    padding:12px 20px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}
.quote-link:hover { color:#333; background:#fff;}
 
.BottomLeftContent { padding:30px 0;}
.BottomLeftContent h1 { text-transform:uppercase; line-height:1;}
.BottomLeftContent h3 { text-transform:uppercase; color:#333; padding:0 0 20px 0;}
.BottomLeftContent h4 { text-transform:uppercase; color:#333;}
.BottomLeftContent .image { float:left; width:50%; padding:0 20px 0 0;}
.BottomLeftContent em { font-style:normal;}
.BottomLeftContent p { padding:10px 0; color:#888;}

.LatestProjects { margin:0 -10px;}
.owl-carousel .owl-item {
    padding: 0;
}
.home-service { padding:0;}
.home-service .box { padding:0 0 30px 0;}
.home-service em {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 24px;
	margin:0 10px 0 0;
	float:left;
}
.home-service h3 {
    color: #333;
    line-height: 1;
	text-transform: uppercase;
	padding:7px 0 0 0;
}
.home-service h4 { padding:15px 0 10px;}
/*home-top-box*/
.home-top-box { 
	padding:50px 0 40px 0;  
}
.home-top-box .button { text-align:center;}
.home-top-box h1 { text-align:center; color:#333; text-transform:uppercase;}
.home-top-box .top-text p{ max-width:700px; margin:0 auto; text-align:center; padding:20px 0 40px; color:#888; }
.home-top-box .box {
  text-align: center;
  padding:50px 20px;
  border:1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition:all 0.3s ease-out 0s;
  -ms-transition:all 0.3s ease-out 0s;
  -o-transition:all 0.3s ease-out 0s;
  transition:all 0.3s ease-out 0s;
  background:#f6f6f6;
  margin: 0 0 20px 0;
}

.home-top-box .box h4 {
  color: #000;
  padding: 15px 0;
  position: relative;
  text-transform:uppercase;
}
 
.home-top-box .box p {
  color: #888;
  padding: 0 0 20px 0;
}

.home-top-box .box em {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  font-size:30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition:all 0.3s ease-out 0s;
  -ms-transition:all 0.3s ease-out 0s;
  -o-transition:all 0.3s ease-out 0s;
  transition:all 0.3s ease-out 0s;
}



.WhoWeAre h4{
    color: #333;
    padding: 10px 0;
}

#owl-AboutUs h4 { color:#333; padding:15px 0 5px;}
#owl-AboutUs p { padding:7px 0 15px 0;}

/*top icon*/
.home-banner { overflow:hidden; clear: both;}
.home-banner ul li { position:relative;}
.home-banner .image {
	background-position: 50% 0;
	background-repeat: no-repeat;
	min-height:500px;
	background-size: cover;
}

.home-banner .txt-content {
	color: #fff;
	text-align: center;
	left: 0;
	right: 0;
	position:absolute;
	top:30%;
}
.home-banner .box { max-width:750px; margin:0 auto;}
.home-banner .box h1 {
    text-transform: uppercase;
    font-weight:900;
}
.home-banner .box h1 span { font-weight:800;}
.home-banner .bx-wrapper img {
    max-width: 100%;
    display: inline-block;
    width: inherit;
}
.home-banner .box p { padding:0 0 20px 0;}


.home-banner .txt-content a {
  border-radius: 4px;
}
.home-banner .learn-more {
    text-transform: uppercase;
    border: 2px solid #1abc9c;
	background:#1abc9c;
}
.home-banner .learn-more:hover { border: 2px solid #fff; background:none;}
.home-banner .contact-us { border:1px solid #fff; 	text-transform:uppercase; }
.home-banner .contact-us:hover { background:#333; border:1px solid #333; }

.home-banner .img { position:relative;}
.home-banner .text {
    background: rgba(0,0,0,0.7);
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding:10px 30px 15px 30px;
}

.top-social {
    line-height: 1.2;
	padding:0 0 20px 0;
}

.top-social a, .top-social a:link, .top-social a:active, .top-social a:visited {
    color: #fff;
    font-size: 15px;
    margin: 0 5px;
    vertical-align: middle;
    background: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    line-height: 40px;
}

a.first-icon, 
a.first-icon:link, 
a.first-icon:active, 
a.first-icon:visited {
	color:#FFFFFF;
}
.ParallaxText {
    text-align: center;
    color: #fff;
	max-width:900px;
	margin:0 auto;
	padding: 0 30px;
}

.ParallaxText h1 { text-transform: capitalize; font-weight:300;}
.ParallaxText span { font-weight:800;text-transform: uppercase;}
.ParallaxText p {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.7;
}
/*TestimonialsTabs*/
.TestimonialsTabs { text-align:center;}
.TestimonialsTabs .img {
    padding: 5px;
    opacity: 0.5;
    border: 1px solid #ccc;
    width:80px;
	height:80px;
    border-radius: 50%;
	-moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	    display: inline-block;
    vertical-align: middle;
}


.TestimonialsTabs .details { padding:0 0 10px;}
.TestimonialsTabs .details p { font-style:italic; font-size:13px; padding:10px 0 15px 0;}
.TestimonialsTabs .details h4 { font-weight:bold; text-transform:uppercase;}
.TestimonialsTabs .img {
    border: 1px solid #ccc;
    opacity: 1;
    width: 90px;
	height:90px;
}

.TestimonialsTabs .img img {
    border-radius: 50%;
    max-width: 100%;
}


.TopService em  {
    border: 1px solid #ddd;
    transition: all 0.7s ease 0s;
    color: #333;
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
    margin: 0px 15px 0px 0px;
    font-size: 30px;
    float: left;
}
.TopService .details {
    margin: 25px 0;
}

.TopService .details img {
    border-radius: 50%;
    margin: 0 20px 0 0;
    width: 90px;
}
.TopService .details h5 a {
    color: #333;
    font-weight: 600;
    text-transform: capitalize;
}

.TopService .icon-right {
    margin: 0px 0px 0px 100px;
}


/*HomeTabs*/
.HomeTabs ul { padding:0; margin:0; }
.HomeTabs ul li {
    width: 33.333%;
    float: left;
    margin: 0;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.HomeTabs ul li.last { border:none;}
.HomeTabs ul li a {
    color: #fff;
    display: block;
    padding: 13px 0;
    font-size: 14px;
    text-transform: capitalize;
}
.HomeTabs ul li.active a{ background:rgba(0,0,0,0.2);}
.HomeTabs ul li a:hover{ background:rgba(0,0,0,0.2);}
/*home news*/
.news-list { margin:0; padding:0; list-style:none;}
.news-list li {
    clear: both;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    padding: 0 0 15px 0;
}
.news-list li:last-child { border:none;}
.news-list li:before { content:""; display:block;}
.news-list li:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.news-left {
    float: left;
    text-align: left;
    position: relative;
    width: 90px;
}
.news-left img { width:100%;}
.news-right {
    margin: 0px 0px 0px 110px;
}
.news-left .date {
    display: block;
    color: #FFF;
    font-size: 14px;
    width: 100%;
    height: 25px;
    position: absolute;
    bottom: 0px;
    text-align: center;
}
.news-left .date em{
    font-style: normal;
    font-weight: bold;
    font-size:16px;
}
.news-list h5 a { color:#333; font-weight:600;}

.news-list p {
    color: #888;
}

.news-list .comments-text a { color:#888;}
.news-list .comments-text a:hover { color:#1abc9c;}
.home-WhyUs .text { margin:0 0 0 70px;}
.home-WhyUs .text a { font-size:16px; padding:5px 0; display:inline-block;}
.home-WhyUs .box {
    margin: 0 0 15px 0;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 15px 0;
}
.home-WhyUs .box.last { border:none;}

.OurBlog .item { padding:0 0 25px 0;}
.OurBlog h5 { padding:10px 0 0 0; }
.OurBlog h5 a { color:#333;}
.OurBlog span { padding:0 0 0 10px;}
.OurBlog img { width:100%;}


/*footer-logo*/
ul.footer-logo {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.footer-logo li {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 14%;
  opacity: 0.5;
  text-align: center;
  padding: 0 15px;
}

.footer-logo li:hover { opacity:1;}
.footer-logo li img{ width:100%;}

/*Who we are */
.WhoWeAre {
    padding:0;
}
.WhoWeAre .box { padding:0 0 20px 0;}
.WhoWeAre .box .image { 
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}



.WhoWeAre p { padding:0 0 10px 0;}
.HomeColorArea h3 { padding:0 0 20px 0;}
.HomeColorArea .img { width:40%; float:left; margin:0 20px 0 0;}


.HomeColorArea .box { display:table; margin:0 0 10px 0;}
/*============================================================
    Portfolio
============================================================*/
.home-works { padding:0 0 40px 0;}
#projects {
    width: 100%;
}

.project-filter {
  margin-bottom: 40px;
}

.project-filter ul li {
  padding: 0;
}

.project-filter ul li a {
  color: #000;
  display: block;
  line-height: 18px;
  padding: 10px 20px;
  text-transform: uppercase;
}

.project-filter ul li a:hover,
.project-filter ul li a.active {
    background-color: #00C7FC;
    color: #fff;
}

.mix {
    display: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.plus {
  background: url("/Portals/_default/skins/brandoslategrey/images/plus.png") no-repeat scroll center center;
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  position: absolute;
  top: 50%;
  -webkit-transition: 0.3s ease-out 0s;
  -moz-transition: 0.3s ease-out 0s;
  -ms-transition: 0.3s ease-out 0s;
  -o-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  border: 2px solid #fff;
 }

figcaption.mask {
  padding:8px 0;
  width: 100%;
  -webkit-transition: 0.3s ease-out 0s;
  -moz-transition: 0.3s ease-out 0s;
  -ms-transition: 0.3s ease-out 0s;
  -o-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}



figcaption.mask h5 {
  color: #333;
  font-weight:bold;
  padding:10px 0;
  text-transform:capitalize;
}
.gallery-item .text-link { font-weight:bold; text-transform:uppercase;}
figcaption.mask p {
	padding:0 0 10px 0;
}


.plus-mask{
  background-color: #333;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  opacity:0;
  -webkit-transition: 0.3s ease-out 0s;
  -moz-transition: 0.3s ease-out 0s;
  -ms-transition: 0.3s ease-out 0s;
  -o-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}
.gallery-item:hover .plus-mask { opacity:0.95;}
.gallery-item:hover .box { top:50%;}
.gallery-item .box {
    display: inline-block;
    position: absolute;
    top:-40px;
    z-index: 999;
    text-align: center;
    margin: -25px 0px 0px;
    left: 0px;
    width: 100%;
  -webkit-transition: 0.3s ease-out 0s;
  -moz-transition: 0.3s ease-out 0s;
  -ms-transition: 0.3s ease-out 0s;
  -o-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}
.gallery-item .box a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin: 0 3px;
    background: #fff;
}
.gallery-item .box a span { line-height:40px;}

/*Home Team*/
.home-team { padding:0 0 20px 0;}
.home-team .box { margin:0 0 20px 0;}
.home-team .img { position:relative;}
.home-team .mask {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    text-align: center;
	width:100%;
	height:100%;
 -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;

}
.home-team .box .social a {
	font-size:24px;
    color: #fff;
	margin:0 8px;
}
.home-team .social{ padding:30% 0 20px; opacity:0;    -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.home-team .details {
    background: #fff;
    color: #333;
    margin: 0 30px;
    padding: 10px;
 -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.home-team .details h4 { font-weight:600;} 
.mask-text { position:absolute; bottom:30px; width:100%;}
.home-team .box:hover .mask { background:rgba(0,0,0,0.6);}
.home-team .box:hover .social {opacity:1;} 



.PageTeam-top { text-align:center; padding:20px 0 0;}
.PageTeam-top h1 { color:#333; font-weight:300;}
.PageTeam-top p { max-width:700px; margin:0 auto; padding:20px 0; font-size:15px; color:#888;}
.PageTeam-top .box h5 { font-weight:bold; color:#333; text-transform:capitalize;}
.PageTeam-top .box { padding:20px 10px ; border-radius:5px; min-height:120px;}
.PageTeam-top .box:hover h5,
.PageTeam-top .box:hover em{ color:#fff;}
.PageTeam-top .button { margin:30px 0 40px;}
.TeamNews img { width:100%;}
.TeamNews .img { position:relative;}
.TeamNews .date {
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
}
.TeamNews h4 { color:#333; font-weight:bold; padding:20px 0 10px;}
.TeamNews p { padding:0 0 10px 0;}
.TeamNews .sub-title { padding:0 0 30px 0;}
/*Home-Accordion*/
.home-accordion {
    border-radius: 2px;
}


.home-accordion .panel-default > .panel-heading {
	color: #333333;
	background:none;
	border: 1px solid #eee;
	padding:0;
	border-radius:0;
}
.home-accordion .panel-title a {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding: 13px 10px 13px 20px;
    line-height: 1.3;
}
.home-accordion  .panel { margin:0 0 8px 0!important;}
.home-accordion .panel-title a.collapsed { 	color: #333;background-color: transparent;}


.home-accordion .panel-title a.collapsed:hover { background:#eee;}
.panel-group .panel + .panel {
	margin-top: 5px;
	border: none;
}
.panel-group .panel-body img { padding:0 20px 0 0; max-width:130px;}
.panel-group .panel {
	border:none!important;
	box-shadow:none;
	border-radius: 0;
}
.page-faq .panel-default > .panel-heading {
    border: 1px solid #e5e5e5;
    background: none;
}
.page-faq .panel-title > a {
    display: block;
	font-weight:normal;
	color:#7C7C7C;
}
.page-faq .panel-title > a:hover { color:#1abc9c;}
.home-accordion .panel-title a em {
	font-size: 20px;
	line-height: 45px;
	display: inline-block;
	vertical-align: top;
	margin:0 5px 0 0;
}

.home-accordion .panel-body { border:1px solid #eee; border-top:none!important;}
.page-faq .panel-default > .panel-heading + .panel-collapse .panel-body { border:none;}
.home-accordion .accordion-toggle .accordion-icon:before { content:"\f146";}
.home-accordion .collapsed .accordion-icon:before { content:"\f0fe";}
.home-accordion .in .accordion-icon:before  { content: "\f146";}

.ui-icon-triangle-1-e:before { content:"\f146";}
.ui-icon-triangle-1-s:before { content:"\f0fe";}
.home-accordion .panel-title {
    position: relative;
	overflow:hidden;
}
.home-accordion .panel-title a.accordion-toggle:before {
    position: absolute;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 45px solid #1abc9c;
    bottom: 0;
    margin-left: 0px;
    right: 35px;
}
.home-accordion .panel-title a.accordion-toggle:after {
  content: "-";
  display: inline-block;
  vertical-align: middle;
  font-family: lato;
  position: absolute;
  right: 0;
  font-size: 28px;
  width: 45px;
  height: 48px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  top: 0;
}
.home-accordion .panel-title a.accordion-toggle.collapsed:after {
    content: "+";
    display: inline-block;
    vertical-align: middle;
    font-family: open sans;
    position: absolute;
    right: 0;
    font-size: 24px;
    width: 45px;
    height: 48px;
    text-align: center;
    line-height: 42px;
    color: #555;
    top: 0;
    font-weight: 600;
}
.home-accordion .panel-title a.accordion-toggle.collapsed:before {     
	border-bottom: 45px solid #eee;
}


/*page-about*/
.AboutTop h1 {
    font-weight: 800;
    color: #333;
	padding:0 0 20px 0;
}
.AboutTop h1 span { font-weight:300;}
.AboutTop img { width:100%;}
.AboutTop .image { width:50%; float:left;}
.AboutTop .ContentText{ width:50%; float:left; padding:0 0 0 30px;}
.AboutTop .Features { padding:20px 0 0 0;}
.AboutTop .Features em {
    font-size: 24px;
    padding: 0px 20px 0px 0px;
    vertical-align: middle;
}
.AboutTop .details { font-size:15px; line-height:1.8;}
.AboutTop .Features p { padding:5px 0; line-height:1; color:#333;}
.sub-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}
.WhyUs .box { padding:0 0 20px 0;}
.WhyUs h5 { color:#333; text-transform:uppercase; padding:0 0 10px 0; font-weight:bold;}
.WhyUs em { font-size:20px; padding:0 10px 0 0;}

/*page-service-mid*/
.page-service-mid { color:#555;}
.page-service-mid .sub-title { color:#aaa;}
.page-service-mid .featured-pro { 
	background:#fff;
    -moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.page-service-mid img { width:100%;}
.page-service-mid .box {
    padding: 10px 0px 20px;
    margin: 0 0 20px 0;
}
.page-service-mid .box p { padding:0 0 20px 0;}
.page-service-mid .box a {
    text-transform: uppercase;
}

.home-offer .img { position:relative;}
.home-offer .featured-pro { margin:0 0 30px 0;}
.home-offer .cover {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 25px;
}

.home-offer h5 {
    width: 100%;
    color: #fff;
    background:rgba(0,0,0,0.5);
    position: relative;
    padding: 10px 20px;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.home-offer h5 a { color:#fff; text-transform:capitalize; font-weight:bold;}
.home-offer .box {
    border: 1px solid #e9e9e9;
    border-top: none;
    padding: 30px;
    -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.home-offer .box p { padding:0 0 10px 0;}
.home-offer .featured-pro:hover .box{box-shadow: 0 0px 10px #ccc; }
.ServiceBottom {
    text-align: center;
    padding:20px;
	border: 1px solid #ddd;
}

.ServiceBottom h2 {
    text-transform: capitalize;
    color: #333;
}

.ServiceBottom p{
    font-style: italic;
	padding: 10px 0 20px;
}

/*TeamStyle01 */
.TeamStyle01 { text-align:center; padding:0 0 20px 0;}
.TeamStyle01 img {
    margin: 0 auto;
}

.TeamStyle01 h5 { color:#333; font-weight:bold; padding:15px 0 5px;}

.TeamStyle01 p{ padding:5px 0 15px;}
.TeamStyle01 .social a { font-size:16px; padding:0 5px;}
.TeamStyle01 .box { padding:0 0 20px 0;}
.TeamStyle01 .details { }

.TeamStyle02 figure {
  position: relative;
}
.TeamStyle02 figure.box {
    text-align: center;
    margin: 0px 0px 30px;
}
.TeamStyle02.inner figure.box { background:#fff;}
.bottomline {
  display: inline-block;
  font-size: 16px;
  background: none repeat scroll 0% 0% #FFF;
  width: 80px;
  height: 1px;
  vertical-align: middle;
  color: rgb(204, 204, 204);
  margin: 25px auto;
}
.TeamStyle02 .img { position:relative; overflow:hidden;}
.TeamStyle02 .mask {
  position: absolute;
  bottom:-50px;
  left: 0;
  width: 100%;
	-webkit-transition:0.3s ease-out 0s;
	-moz-transition: 0.3s ease-out 0s;
	-ms-transition: 0.3s ease-out 0s;
	-o-transition: 0.3s ease-out 0s;
	transition:0.3s ease-in 0s;
	color:#fff;
	height:50px;
	background: rgba(0,0,0,0.7);

}
.TeamStyle02 figure.box:hover .mask { bottom:0;}
.TeamStyle02 { text-align:center; }
.TeamStyle02 .sub-title { padding:0px 0 30px;}

.team-text { text-align:center; margin:0px auto 40px; text-transform:capitalize; width:60%;}
.TeamStyle02 .box h5 {
  color: #333;
  text-transform: capitalize;
}
.TeamStyle02 .box h6:after {
    width: 40px;
    height: 1px;
    background: #aaa;
    position: absolute;
    content: "";
    left: 50%;
    margin: 0 0 0 -20px;
    top: 0;
}
.TeamStyle02 .box .social a { background:#fff;}
.TeamStyle02 .box p {
    color: #777;
    text-align: left;
    padding: 10px 0 0 0;
}
.TeamStyle02 .box .social a:hover { background:#fff; color:#333;}
.TeamStyle02 .mask .social a {
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
}
.TeamStyle02 .mask .social a:hover { color:#111;}
.TeamStyle02 .mask .social {
  top: 50%;
  position: relative;
  margin: -20px 0 0 0;
}
.TeamStyle02 .mask p { padding:0 0 20px 0;}
.TeamStyle02 .details {
    background:#f6f6f6;
    PADDING:30px 20px;
    border-bottom: 2px solid transparent;
	-webkit-transition:0.3s ease-out 0s;
	-moz-transition: 0.3s ease-out 0s;
	-ms-transition: 0.3s ease-out 0s;
	-o-transition: 0.3s ease-out 0s;
	transition:0.3s ease-in 0s;

}
/*footer contact  */

.home-contact p{ padding:0 0 10px 0;}

.footer-title {
  color: #fff;
  text-transform: capitalize;
  padding: 0 0 20px 0;
}

.home-contact .social-icon { margin:20px 0 0 0;}
.contact-info { padding:0; margin:0;}
.home-contact .contact-info li {
    line-height: 20px;
    padding:10px 0px;
    clear: both;
}
.home-contact .contact-info em {
  font-size: 20px;
  min-width: 30px;
  display: inline-block;
  vertical-align: middle;
  float: left;
  line-height:1;
}
.home-contact .contact-info a { color:#aaa;}
.home-contact .contact-info em.fa-envelope-o { font-size:16px;}

.home-contact .social-icon a {
    width: 40px;
    height: 40px;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    margin: 0px 2px;
    border: 1px solid #555;
}
.footer-row1 { color:#888; padding:0 0 20px 0;}
h1.footer-logo {
    text-transform: uppercase;
    font-size: 48px;
    font-weight:800;
    color: #fff;
    line-height: 1;
    padding: 0 0 20px 0;
}
.footer-row1 .link-history {
    display: inline-block;
    border: 1px solid #777;
    padding: 8px 20px;
    color: #aaa;
    font-size: 14px;
	text-transform:uppercase;
}
.footer-row1 p span {
    color: #ddd;
    text-transform: capitalize;
    display: block;
    font-weight: 600;
}
.footer-row1 p { padding:0 0 20px 0;}
.footer-row1 .social-icon a em{ line-height:40px;}
/*latest-news*/
.latest-news h6{ font-size:13px;}
.latest-news span { padding:5px 0 0 0; display:block; color:#888;}
.latest-news .details a{ color:#ccc;}

.latest-news .NewsIcon {
    color: #FFF;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    margin: 0 10px 0 0;
}

.latest-news .box { padding:0 0 20px 0;}



/* newsletter*/
.footer-newsletter h6 {
  color: #aaa;
  border-bottom: 1px solid #393939;
  padding: 15px 0;
  margin: 0 0 20px 0;
}
.footer-newsletter .social a {
  color: #777;
  font-size: 24px;
  margin: 0 5px;
}

.footer-newsletter p {
  padding: 0 0 20px 0;
  color: #aaa;
}

.newsletter { position:relative; max-width:300px;}
.newsletter input {
  border: medium none;
  border-radius: 0;
  background:rgba(255,255,255,0.1);
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 70px 0 10px;
  color: #bbb;
  outline: none;
}
.newsletter button {
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  line-height: 40px;
  text-transform: capitalize;
  border-radius: 0;
  color: #FFFFFF;
  padding: 0 13px;
  outline: none;
  height: 40px;
}
.newsletter button:hover { opacity:0.8;}

/*home-other-links*/
ul.home-other-links { margin:0; padding:0; list-style:none;}
.home-other-links li {
  float: left;
  width: 50%;
  line-height: 1;
  vertical-align: middle;
  padding: 0 10px 20px 0;
}
.home-other-links li a { color:#aaa; }
.home-other-links li a:hover { color:#117EC3; }
.home-other-links li em { margin:0 6px 0 0; color:#117EC3;}


.fa-round {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.footer-links {
  text-align: right;
  color: #aaa;
  padding: 25px 0 0 0;
}
.footer-links a,
.footer-links a:link, .footer-links a:active, .footer-links a:visited { display:inline-block; color:#aaa;}

/*footer-social*/
.footer-social { text-align:right; padding:20px 0 0 0;}
.footer-social a, .footer-social a:link, .footer-social a:active, .footer-social a:visited {
    color: #888;
    margin: 0px 8px;
	font-size:16px;
}

/*Flickr*/
.Flickr a {
	margin: 0;
	display: block;
	float: left;
}

.Flickr a:hover { opacity:1;}
.Flickr a img { width:80px; border:3px solid transparent;}
.Flickr a img:hover { border:3px solid #ccc;}
/*Testimonials*/
.Testimonials { font-size:13px;}
.Testimonials-top { position:relative; margin:0 0 20px 0;}
.Testimonials-top p {
    background: none repeat scroll 0% 0% #EEE;
    border-radius: 5px;
	padding:20px 20px;
	line-height:2em;
}
.triangle {
	border-width: 8px 8px 0;
	height: 6px;
	border-color: #eee transparent;
	border-style: solid;
	margin: 0;
	display: inline-block;
	left: 50px;
	position: absolute;
	bottom: -8px;
}
.Testimonials-info img {
    width: 70px;
    margin: 0 20px 0 30px;
}
.info-right { padding:15px 0 0 0; font-size:14px; text-transform:capitalize;}
.info-right em { font-size:13px;} 





/* Contact page*/
.contact-info p { padding:0 0 20px 0;}
.contact-info em {
  vertical-align: middle;
  line-height: 30px;
  font-size: 16px;
  width:30px;
}
.contact-info .box { padding:0 0 10px 0;}
.contact-info .address em { position:absolute; left:0;}
.contact-info .address div { margin:0 0 0 35px;}
.contact-page p.text-center { padding:20px 0 50px 0;}
.contact-section input[type="text"],
.contact-section textarea {
  width: 100%;
  display: inline-block;
  padding: 12px 10px;
  background: #ffffff;
  color: #777;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  border: 1px solid #bbb;
  outline: none;
  margin: 0 0 20px;
}
.contact-section textarea { min-height:150px;}
.contact-section input[type="submit"] {
	display: inline-block;
	outline: none;
	padding: 10px 57px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	transition: all 0.2s ease-in-out;
	color: #ffffff;
    border-radius: 4px;
	border:none;
}
.contact-section input[type="submit"]:hover {
	opacity:0.8;
}
.contact-section {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.contact-section .info-post {
  overflow: hidden;
  margin-bottom: 30px;
}
.contact-section .info-post span.icon-info {
  display: inline-block;
  float: left;
  width: 60px;
  height: 60px;
  margin: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #1abc9c;
  text-align: center;
}
.contact-section .info-post span.icon-info em {
  font-size: 24px;
  line-height: 56px;
}
.contact-section .info-post p {
  padding-top: 20px;
  color: #333333;
  font-size: 15px;
  font-style: 600;
  margin: 0 0 0 80px;
}
.contact-section .info-post p span {
  color: #1abc9c;
}
.contact-section .info-post p a {
  color: #333333;
}

.contact-section .submit-area { text-align:center;}
#submit_contact:hover { color:#fff!important;}
.ContactIcons { text-align:center; max-width:800px; margin:0 auto;}
.ContactIcons em {
    color: #fff;
    width:60px;
    height: 60px;
    border-radius: 7px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
}
.ContactIcons h4 { color:#333; padding:10px 0 0; font-weight:600;}
.ContactIcons p { color:#999;}
.ContactIcons .box { padding:0 0 20px 0;}
/*service-tabs*/
.service-tabs ul {
    padding: 0px;
    margin: 0px;
    list-style: outside none none;
    background:#f6f6f6;
    overflow: hidden;
}
.service-tabs { padding:0 0 30px 0;}

.service-tabs ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
  text-align: center;
  position:relative;
  width:33.333333%;
      border-right: 1px solid #fff;
}

.service-tabs ul li.last { border:none;}
.service-tabs ul li a {
    padding: 14px 0px;
    display: block;
    color: #333;
    font-size: 16px;
    border-bottom: none;
    transition: none;
    font-weight:500;
    text-transform: capitalize;
	font-family: raleway;
}





.service-tabs .tab-content { background:#f6f6f6; padding:12px 30px;}
.service-tabs .tab-content p { padding:5px 0;}
.service-tabs .tab-pane {
  padding:20px 0px 20px;
}
.service-tabs .tab-pane h4 { color:#333;}
.service-tabs .tab-pane img {
    padding: 0px 20px 0px 0px;
    max-width:160px;
}
/*------ Blan Tables ------*/
.plan_col {
  background: #ffffff;
  position: relative;
  font-weight: 600;
  font-family: open sans;
}
.content_section:not(.white_section):not(.bg_fixed) .plan_col.plan_column1 {
	border-radius: 4px;
}
.plan_col.plan_column1 {
    text-align: center;
	border:1px solid #ddd;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	margin:0 0 20px 0;
}
.plan_col .spec_req2 {
    left: 50%;
    position: absolute;
    top: 0;
	z-index: 1;
    transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
}
.plan_column1 .plan_price_block {
    display: block;
    height: 115px;
    position: absolute;
    top: 0;
    width: 115px;
	overflow: hidden;
	z-index: 2;
	top: -55px;
}
.plan_column1 .plan_price_block .plan_price_in {
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}
.plan_column1 .plan_price_block .plan_price_in .price {
    color: #1ccdca;
    display: block;
    font-size: 28px;
    font-weight: 300;
    line-height: 28px;
    padding-top: 32px;
}
.plan_column1 .plan_price_block .plan_price_in .price small {
    color: #1ccdca;
    font-size: 59%;
    font-weight: 300;
    margin-right: 5px;
}
.plan_column1 .plan_price_block .plan_price_in .plan_per {
	color: #1ccdca;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.plan_col.plan_column1 > h6{
	position: relative;
    border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	-o-border-radius: 5px 5px 0px 0px;
    padding-bottom: 20px;
    padding-top: 35px;
	margin: -1px;
}
.plan_col .polygon_con {
	max-height: 115px;
    max-width: 115px;
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
}
.plan_col .polygon_con .polygon_fill {
    fill: #fff;
	stroke: #1CCDCA;
}
.plan_col.active_plan .polygon_con .polygon_fill, .plan_col:hover .polygon_con .polygon_fill {
    fill: #fff;
	stroke: #1CCDCA;
}
.plan_col .polygon_con svg {
    height: 100%;
    width: 100%;
}
.plan_col.plan_column1 > h6 .plan_price_name {
    font-family: "Oswald","Open Sans",sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.plan_col.plan_column1 li {
    border-bottom: 1px solid #F1EFF0;
    padding: 13px 0px;
	color: #878787;
}
.plan_col.plan_column1 li span { font-size:14px; font-weight:normal; padding:0 0 0 10px;}
.plan_col.plan_column1 li:first-child {
    border-top: 1px solid #f1eff0;
}
.plan_col.plan_column1 .plan_price_btn {
    background: #555;
    display: inline-block;
    font-size: 14px;
    margin: 30px 0;
    padding:12px 25px;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
}
.plan_col.plan_column1 .plan_price_btn:hover{
	background: #576162;
	border-color: #576162;
	color: #fff;
}
.plan_price_btn i {
    margin-right: 10px;
}
.plan_col li i {
    margin-right: 10px;
}
.plan_col li i.check_icon {
    color: #92C135;
}

.plan_col.plan_column1:hover  > h6, .plan_col.plan_column1.active_plan > h6{
    color: #fff;
}
.plan_col.plan_column1:hover > h6:after{
	opacity: 1;
}
.plan_price_in { display:block; font-size:24px; font-weight:600;}
.plan_col ul { padding:0; margin:0; list-style:none;}
.hm-pricing-list { text-align:center;}
.hm-pricing-list .box { border:1px solid #ddd; border-radius: 4px; overflow:hidden;	margin:0 0 20px 0;
 }
.hm-pricing-list .box:hover { box-shadow: 0 1px 9px #ccc;}
.hm-pricing-header h2 {
    padding: 10px 0;
    background: rgba(0,0,0,0.4);
    font-size: 24px;
}
.hm-currency { font-size:24px;}
.hm-duration {
    font-size: 18px;
    position: absolute;
    bottom: -10px;
    left:40px;
	font-style: normal;
}

.hm-value { font-size:48px;}
.hm-pricing-body em { font-style:normal;}
.hm-pricing-features { margin:0; padding:0; list-style:none;}
.hm-pricing-features li:nth-of-type(2n+1) {
	background: rgba(23, 61, 80, 0.06);
}
.hm-pricing-features li { padding:15px 0;}
.hm-pricing-body{
  font-weight: 600;
  font-family:open sans;
}
.hm-pricing-list .box .hm-price {
    height: 130px;
    width: 130px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 20px 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 100px;
	position:relative;
}
.hm-pricing-list header {  padding:0;}
.hm-pricing-footer { background:#555;}
.hm-pricing-footer .hm-select {
  color: #fff;
  padding: 15px 0;
  text-transform: uppercase;
  display: block;
  font-size: 16px;
}
.price-table .col-md-4 {
  width: 33.33333333%;
  float:left;
}
/*pricing table*/
.pricing-table {
    margin: 0 0 50px;
    text-align: center;
}
.pricing-table .price-item {
    border: 1px solid #E5E1E1;
}
.pricing-table .price-item {
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
	margin:25px 0;
}
.pricing-table .header { background:#1abc9c;}

.pricing-table .header h2 {
    background: none repeat scroll 0 0 #1abc9c;
    color: #FFFFFF;
    margin: 0;
    padding: 0.8em 0;
}
.pricing-table .price h2 {
    border-bottom: 1px solid #E5E1E1;
}
.post-content ul, #woocommerce-container .summary ul, #woocommerce-container .tab-content ul {
    list-style-position: inside;
    margin-bottom: 10px;
}
.pricing-table ul { padding:0; margin:0;}
.pricing-table ul li {
    border-bottom: 1px solid #E5E1E1;
}
.pricing-table ul li {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #E5E5E5;
    border-style: none none solid;
    border-width: 0 0 1px;
    list-style-type: none;
    margin: 15px 10px;
    padding-bottom: 10px;
}

.pricing-table .price-item.featured .header h2 { padding: 30px 0;}
.pricing-table .price-item.featured p { margin:25px 0 15px;}
.pricing-table .price-item.featured {
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
     -o-transition: all 0.2s linear 0s;
	 transition: all 0.2s linear 0s;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.6);
	margin:0;
}
.pricing-table A, 
.pricing-table A:link, 
.pricing-table A:active, 
.pricing-table A:visited
{
	color:#FFFFFF;
}
.pricing-table .price-item.featured .button, #submit { padding:10px 35px;}



.box.listed-left .box-text {
    margin-left: 90px;
}
.box.listed-left {
    text-align: left;
    margin: 0 0 30px 0;
}
/*page service*/
.page-service .box {
  border-radius: 5px;
  text-align: center;
  padding: 15px 10px;
    -moz-transition: all 0.7s ease 0s;
  -webkit-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.page-service .box h4 { padding:0 0 20px 0;}
.page-service .box p { color:#999;}
.page-service .box em {
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px 0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;

}
.page-service h5{
  color: #333;
  font-weight: 600;
  padding:0 0 5px 0;
}
.page-service .details {
  padding: 20px 25px;
  background-color: #f8f8f8;
}
.page-service .button-medium:hover { color:#fff;}

/*Meet the team*/
.meet-team .left-img { float:left; margin:0 20px 0 0;}
.meet-team .left-img img {
    width: 130px;
	border-radius: 50%;
}
.left-img a { border-radius: 50%;border: 8px solid #eee!important; display:inline-block; overflow:hidden;  max-width:140px;}
.team-content .icons a {
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    color: #FFF;
    font-size: 18px;
}
.team-content .icons a:hover { background:#444!important;}
.team-content .icons {
	margin: 10px 0px;
}
.meet-team p { padding:0px 0 20px 0; font-size:14px; line-height:1.8;}
.team-content span { color:#aaa;}
ul.looping { margin:0; padding:0 0 0 10px;}
ul.looping li {
    overflow: hidden;
    margin: 30px 0px;
}
.looping .article_content { padding:15px 0 0 0;}
.post_media {
	float: left;
	max-width: 34%;
	margin-right: 15px;
}
.post_media img{
	border-radius: 50%;
	border: 10px solid #e6e6e6;
	width:180px;
}
.looping h4 {
    font-family: open sans;
    font-weight: normal;
}
.looping .social_icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #333;
    color: #333;
    border-radius: 50%;
    font-size: 16px;
}
.looping .social_icons a:hover { background:#333; color:#fff!important; border:1px solid #333!important;}
.looping p.description { padding:10px 0;}
.page-team h1 {
	font-size: 60px;
	font-weight: normal;
	padding: 40px 0 0 0;
	line-height: 1em;
	color: #333;
}
.page-team h4 {
    font-weight: normal;
    padding: 10px 0;
    color: #000;
}
.page-service-top { padding:20px 0;}
.quote.fa {
    background: none repeat scroll 0% 0% #1abc9c;
    border-radius: 50%;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 75px;
}
.Testimonial { color:#fff; font-size:18px; text-align:center; line-height:1.8; overflow:hidden;}
.quote-name{
	display: inline-block;
	margin:10px 0px 0px 0;
	padding:0 15px;
}
.quote-name span{
	display: block;
	font-size: 14px;
	line-height: 1.2;
	font-weight:bold;
}
.quote-name em {
	font-size: 11px;
	line-height: 1;
	display: block;
	color: #fff;
}
.Testimonial .figure a {
	display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto;
	text-align: center;
	border: 2px solid white;
}

.Testimonial .figure a img {
	width:98px;
	height:98px;
	border-radius: 50%;
	-webkit-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	margin: 10px 0 0 0px;
	display: inline-block;
}

.Testimonial .figure a:hover { opacity:0.6;}
.Testimonial .figure { padding:0 0 20px 0;}
.Testimonial .figure p { width:80%; margin:0 auto; font-style:italic; line-height:1.5; padding:0px 0 30px 0;}

/*PhotoGallery*/
.PhotoGallery .gird-item {
    position: relative;
    overflow: hidden;
}
.PhotoGallery.inner .gird-item { margin:0 0 30px 0;}
.PhotoGallery.inner img { width:100%;}
.PhotoGallery .hover-icon {
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
	-moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	text-align:center;
}
.PhotoGallery .hover-icon .box {
    position: absolute;
    top:-50px;
    width: 100%;
	-moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	text-align:center;
}

.PhotoGallery .hover-icon span {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
	display:inline-block;
	margin:0 2px;
}
.PhotoGallery h2 { font-weight:500; text-align:center; color:#333; padding:0 0 10px 0;}
.PhotoGallery .hover-text {
    position: absolute;
    bottom: -85px;
    width: 100%;
	-moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	background:#fff;
	padding:10px;
	text-align:center;
}
.PhotoGallery.inner .hover-text { background:rgba(255,255,255,0.85);}
.PhotoGallery .gird-item:hover .hover-icon{ opacity: 1; }
.PhotoGallery .gird-item:hover .hover-text { bottom:0;}
.PhotoGallery .gird-item:hover .hover-icon .box { top:25%;}


/*---pane-layout---*/
.pane-layout-style .col-sm-3 span,
.pane-layout-style .col-sm-4 span,
.pane-layout-style .col-sm-5 span,
.pane-layout-style .col-sm-6 span,
.pane-layout-style .col-sm-7 span,
.pane-layout-style .col-sm-8 span,
.pane-layout-style .col-sm-9 span,
.pane-layout-style .col-sm-10 span,
.pane-layout-style .col-sm-11 span,
.pane-layout-style .col-sm-12 span,
.pane-layout-style .FullContent span { background:#ccc; height:60px; display:block; margin:10px 0; padding:20px 0 0 0;}
.ZF0047-Tabs-Home ul li.item1.ui-tabs-selected a { border-radius: 5px 0 0 5px;}


/*progressbar*/
.progressbar {
	background: #eee;
	height: 30px;
	position: relative;
	margin: 0 0 15px 0;
}
.progress-item { height:30px;}
.skill-item {
	position: absolute;
	top: 0;
	color: #fff;
	left: 10px;
	right: 10px;
	line-height: 30px;
}
.progress-main p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 20px 0;
	-webkit-font-smoothing:antialiased
}
.skill-item h6 { line-height:30px;}
.skill-item span { color:#888;}
@-webkit-keyframes progressbar {
   0% { width: 0; }
}
@-moz-keyframes progressbar {
   0% { width: 0; }
}
keyframes progressbar {
   0% { width: 0; }
}

.progressbar > div { 
  -webkit-animation: progressbar 2s;
  -moz-animation: progressbar 2s;
  animation: progressbar 2s;
}

/*404 Page*/
.Page404 { text-align:center;}
.Page404 h1 {
    font-size: 150px;
    line-height:1;
    font-weight: 800;
}
.Page404 .text { font-size:16px; line-height:2em;}
.Page404 .icon-cafe {
    font-size: 80px;
    line-height: 110px;
}
.coffee em{ font-size:80px;}






/*---------Responsive Layout--------------*/

@media handheld, only screen and (max-width:1680px) {
.home-banner .image {
	min-height: 600px;
}
}
@media handheld, only screen and (max-width:1440px) {
.home-banner .image {
	min-height: 500px;
}
}

@media handheld, only screen and (max-width:1280px) {
.home-banner .image {
	min-height: 450px;
}
.home-banner .box h1 {
  font-size: 45px;
}
.top-info {
    margin: 10px 0 0 0;
}
.top-info em {
    display: block;
    float: none;
}
h1.footer-logo { font-size:42px;}
}
@media handheld, only screen and (max-width:1100px) {
.home-other-links li { width:auto;}
.welcome-text h2 { font-size:24px;}
}
@media handheld, only screen and (max-width:1024px) {

.AppBox .features {
  margin: 25% 0 0 0;
}
.our-product .features h2 { font-size:24px;}
.home-banner .image {
	min-height: 400px;
}


.home-banner h2 { font-size:36px;}
.home-banner .box h1 {
  font-size: 40px;
}

.ParallaxText p {
  width: auto;
  font-size: 14px;
}
.service-tabs ul li a {
    font-size: 14px;
}

}
@media handheld, only screen and (max-width:960px) {
.top-contact {
    display: none;
}
.myteam-top p {
  width: auto;
}
.home-service {
    padding: 0;
}
}
@media handheld, only screen and (max-width:930px) {
.home-team .mask p { line-height:1.5;}

}

@media handheld, only screen and (max-width:900px) {
.quote-link, .quote-link:link, .quote-link:active, .quote-link:visited {
  padding: 10px 20px;
  font-size: 14px;
}
.inner-banner-bg { min-height:200px;}
.AboutTop .image{
    width: auto;
    float: none;
}
.AboutTop .ContentText {
    width: auto;
    float: none;
	padding:20px 0 0 0;
}


.AppBox .features {
  margin: 10% 0 0 0;
}
.service-tabs .tab-pane img {
  max-width: 40%;
}

.ColorBoxes .box { width:50%; }


.home-banner .box h1 {
  font-size: 30px;
}
.OurMission p { width:90%;}
}


@media handheld, only screen and (max-width:800px) {
.home-top-icon .top-text { width:auto;}
.home-team .col-sm-3 { width:50%; float:left;}
.home-team .mask .social { display:block;}
.home-team .mask p { line-height: inherit;}
.welcome-text h2 {
  font-size: 22px;
}
.AppBox p { font-size:12px;}
.AppBox .pull-right, .AppBox .pull-left {
  margin: 0 0 20px 0;
}
.footer-logo li { padding:0;}


}
@media handheld, only screen and (max-width:768px) {

.home-contact .contact-info em {
	display: none;
}
.home-main-top .col-sm-4 img{ max-height:145px;}
}
@media handheld, only screen and (max-width:767px) {
.ContactIcons .col-sm-3 { float:left; width:50%;}
.home-other-links li { min-width:150px; width:auto;}
.price-table .col-md-4 {
  width: auto;
  float: none;
}
.home-top-icon {
	padding: 20px 0;
}
.none767 { display:none;}
.home-main-top .col-sm-4 img{ max-height: none;}
.home-top-icon .row .col-sm-4 { width:auto;}
.home-contact .contact-info em {
	display: inherit;
}

.home-contact .contact-info li {
	vertical-align: top;
}
.home-team {
    padding: 0;
}
.home-team .box {
    margin: 0 auto 30px auto;
    max-width: 450px;
}
.contact-section {
  padding: 20px 0px 20px;
}
.page-team.text-right { text-align:left;}
.our-product .left-img {
	width: auto;
	float: none;
	vertical-align: middle;
	text-align: center;
}
.our-product .features {
	float: none;
	width: 100%;
	padding: 0 20px;
}
.home-banner .image { min-height:250px;}
.home-banner .txt-content {
	padding: 0 40px;
	top: 20%;
}
.home-banner .txt-content a {
	padding: 5px 15px;
}
.home-banner h2 {
	font-size: 30px;
}
.home-banner p {
  font-size: 12px;
}
.home-banner .box h1 {
  font-size: 24px;
}
.choose-us .features { float:none; width:auto; padding:0;}
.choose-us .left-img { float:none; width:80%; text-align:center; margin:0 auto;}
.Flickr a {
	float: none;
	display:inline-block;
}
.Testimonial { font-size:14px;}
.Testimonial .figure p {
	width: auto;
}
.quote.fa {
	width: 50px;
	height: 50px;
	line-height: 55px;
}
.Testimonial .figure a {
	width: 100px;
	height: 100px;
}
.Testimonial .figure a img {
	width: 88px;
	height: 88px;
	margin: 5px 0 0 0px;
}

.page-about-us .stat2 .subtitle {
    padding: 0px;
}
.welcome-text { text-align:center;}
.welcome-text h3{ padding:10px 0;}
.welcome-text .text-right { text-align:center;}
.home-top-box {
  padding: 20px 0px 40px;
}

.WhoWeAre {
    padding: 20px 0px 0px;
}
.home-about .featured-pro {
  margin: 0 auto 20px auto;
}

.service-tabs .tab-pane img {
  max-width: 180px;
}
.myteam-top .button a {
  padding: 8px 15px;
  font-size: 12px;
}
.footer-links {
  text-align: center;
  padding: 0;
}

.product-list .col-sm-3 { width:50%; float:left;}
.top-info {
  display: none;
}
.top-info em {
    float: left;
	display:inline-block;
}
.top-info .item { width:33%; float:left;}

.team-text {
  width: auto;
}
.TeamStyle02 figure.box {
    margin: 0px auto 30px;
    max-width: 450px;
}

.footer-social {
    text-align: center;
    padding: 0;
}

.ColorIcons .col-right { margin:20px 0px 20px 60px;}
.ColorIcons .col-icon {
    color: #FFF;
    font-size: 45px;
    float: left;
    width: 60px;
}
.home-top-box .top-text p {
    padding: 20px 0px 10px;
}
.service-tabs .tab-pane {
    padding: 30px 0px 0;
}
.HomeColorArea .col-right {
    margin: 0 0 0 100px;
}
.HomeColorArea .img {
    width: 100px;
}
.HomeColorArea {
    padding:30px 0;
}
}
@media handheld, only screen and (max-width:640px) {


.home-banner .box h1 {
  font-size: 20px;
}
.home-banner p {
  line-height: 1.3;
  font-size: 12px;
}
.home-banner .txt-content a {
	padding: 2px 10px;
	font-size: 11px;
}
.our-blog .details p {
    font-size: 12px;
}
}
@media handheld, only screen and (max-width:600px) {
.top-social {
	text-align: center;
}
.home-banner h2 {
	font-size: 24px;
}
.ParallaxText p {
  font-size: 13px;
}

}
@media handheld, only screen and (max-width:520px) {
.home-top-icon .box {
	padding: 10px 0;
}
.home-banner h2 {
	font-size: 20px;
}
.service-tabs ul li {
    float: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
    border-right: none;
}
.home-banner .text p { display:none}
.home-banner .text h3 {
    font-size: 16px;
    line-height: 1.2;
}
.ColorBoxes .box {
    width: 100%;
	float:none;
}

}
@media handheld, only screen and (max-width:480px) {
.page-team h1 {
	font-size: 30px;
}
.home-team .col-sm-3 { width:auto; float:none;}
.home-top-box .box {
  width: auto;
  float: none;
  margin: 0 0 20px 0;
}
.ContactIcons .col-sm-3 { float:none; width:100%;}

.home-about {
    padding: 0;
}
.product-list .col-sm-3 { width:auto; float:none;}
.ParallaxText h1 {
    font-size: 20px;
}
figcaption.mask { padding:10px 0;}
.home-banner p {
  font-size: 10px;
}
}
@media handheld, only screen and (max-width:400px) {


.home-top-icon .box .icon { float:left;}
.box .icon {
	float: none;
	text-align: center;
}
.box.listed-left .box-text {
	margin-left: 0;
	text-align: center;
}


.home-banner .box h1 {
    font-size: 14px;
}
}
@media handheld, only screen and (max-width:375px) {
.home-banner .image {
    min-height: 200px;
}
.home-banner .txt-content a {
    padding: 0px 8px;
    font-size: 10px;
}
.home-banner .txt-content a.contact-us { display:none;}

.home-banner h2 {
    font-size: 16px;
	white-space:nowrap;
}
.home-banner p {
    font-size: 10px;
}
.ParallaxText h1 {
    color: #FFF;
    font-size: 18px;
}
.home-banner .text h3 {
    font-size: 14px;
}
.home-banner .txt-content {
    padding: 0 40px;
    top: 15%;
}
.home-banner .box p {
    padding: 0 0 10px 0;
}
}
@media handheld, only screen and (max-width:360px) {

.home-banner h2 {
    font-size: 14px;
}
.home-banner p {
    font-size: 10px;
}
.home-other-links li { min-width: inherit; width:auto;}
.service-tabs ul li a {
  padding: 12px 10px;
}
figcaption.mask span {
    font-size: 10px;
}
figcaption.mask h5 {
    font-size: 12px;
}
.home-banner p {
  font-size:9px;
}

}
@media handheld, only screen and (max-width:350px) {
.service-tabs .tab-pane img {
  width: 100%;
  max-width: none;
  padding: 0 0 10px 0;
}
}
@media handheld, only screen and (max-width:300px) {




}

@media handheld, only screen and (max-width:239px) {
.home-banner .button {
    display: none;
}
}













/*---------------------------------*/
/*****Bx Slider**/
/*---------------------------------*/

/** RESET AND LAYOUT
===================================*/
.bx-wrapper ul,
.bx-wrapper ul li { padding:0; margin:0; list-style:none;}
.bxslider { margin:0; padding:0;}
.bx-wrapper {
	position: relative;
	margin: 0 auto 0px;
	padding: 0;
	*zoom: 1;
	z-index:1;
	-webkit-transform: none!important;
	-webkit-font-smoothing:antialiased
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
	width:100%;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
    overflow: visible;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: relative;
	bottom:0;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
	display:none;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	background-image: url("/Portals/_default/skins/brandoslategrey/images/bx-prev.png");
	left:20px;
}

.bx-wrapper .bx-next {
	right:20px;
	background-image: url("/Portals/_default/skins/brandoslategrey/images/bx-next.png");
}

.bx-controls-direction { display:none;}
.bx-wrapper:hover .bx-controls-direction { display: inherit;}
.bx-wrapper .bx-controls-direction a {
    display: inline-block;
    color: #FFF;
    position: absolute;
    text-indent: -9999em;
    width: 50px;
    height: 50px;
    margin:-25px 0 0 0;
    top: 50%;
    z-index: 99;
    border: 2px solid transparent;
	background-color:rgba(0,0,0,0.5);
	background-position:50% 50%;
	background-repeat:no-repeat;
	border-radius:50%;
}
.bx-wrapper .bx-controls-direction a:hover { background-color:#000;}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
.Testimonial .bx-wrapper .bx-controls-direction a { border:none; background-color:none;}
.Testimonial .bx-wrapper .bx-controls-direction a:hover { background-color:rgba(0,0,0,0.4);}


/*btn-style1*/
.btn-style1 .bx-wrapper .bx-pager.bx-default-pager a:hover, 
.btn-style1 .bx-wrapper .bx-pager.bx-default-pager a.active { opacity:1;}
/*btn-style2*/
.btn-style2 .bx-wrapper .bx-controls-direction a {
    color: #fff;
    width: 56px;
    height: 56px;
	opacity:0.7;
}
.btn-style2 .bx-wrapper .bx-controls-direction a:hover {
	opacity:1;
	
}
.btn-style2 .bx-controls-direction {
    display: block;
}


.btn-style2 .bx-wrapper .bx-prev {
	left:0;
}
.btn-style2 .bx-wrapper .bx-next {
	right: 0;
}
.btn-style2 .bx-wrapper .bx-pager.bx-default-pager a {
    width: 15px;
    height: 4px;
    border-radius: 0px;
    background: #FFF none repeat scroll 0% 0%;
    margin: 0px 3px;
}
.btn-style2 .bx-wrapper .bx-controls-direction a:before {
    content: " ";
    position: absolute;
    border: 4px solid rgba(0,0,0,0.3);
    left: -2px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    top: -2px;
}




/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url("/Portals/_default/skins/brandoslategrey/css/images/controls.png") -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url("/Portals/_default/skins/brandoslategrey/css/images/controls.png") -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

.bx-example1-style .bx-wrapper .bx-controls-direction a {
  margin: -40px 0 0 0;
  border-radius: 50%;
  position: absolute;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
}

/*btn-small*/
.btn-small .bx-controls-direction {
  /*display: inherit;*/
}

.btn-small .bx-wrapper .bx-prev {
  left: 0;
}
.btn-small .bx-wrapper .bx-next {
  right: 0;
}
.btn-small .bx-wrapper .bx-controls-direction a {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 0;
    border-radius: 0;
    background-color: #000;
    opacity: 0.6;
}
.btn-small .bx-wrapper .bx-controls-direction a:hover {opacity:0.95; }
/*---------------------------------*/
/* Carousel*/
/*---------------------------------*/
/* For Carousel firefox bug */
.carousel-inner img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
}
.carousel-control {
	opacity: 0.6;
	filter: alpha(opacity=60);
	background: #000;
	display: inline-block;
	color: #fff;
	position: absolute;
}
.carousel-control:hover,
.carousel-control:focus {
  outline: none;
  color: #ffffff;
  text-decoration: none;
  opacity:0.8;
  filter: alpha(opacity=80);
}
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
	display: block;
	width: 100%!important;
}

/* carousel Fred*/
.over-hidden { overflow:hidden;}
.list_carousel {
				margin: 0;
				position:relative;
}
.list_carousel ul {
				margin: 0;
				padding: 0;
				list-style: none;
				display: block;
				height:auto!important;
}
.list_carousel li {
				color: #999;
				text-align: center;
				padding: 0;
				margin: 0 10px;
				display: block;
				float: left;
}
.list_carousel.responsive {
				width: auto;
				margin-left: 0;
}
.prev {
				float: left;
				margin:0 5px 0 0;
}
.next {
				float: right;
}
.pager {
				width: 300px;
				text-align: center;
}
.pager a {
				margin: 0 5px;
				text-decoration: none;
}
			.pager a.selected {
				text-decoration: underline;
}
.timer {
				height: 6px;
				width: 0px;
}
/* button-controls */
.button-controls{
  position: absolute;
  right: 0;
  top: -60px;
}
.button-controls .prev:before {
  content: "\f104";
  display: inline-block;
  font-family: FontAwesome;
  vertical-align: top;
}

.button-controls .next:before {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  vertical-align: top;
}
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}
    .slider-wrapper {
        width: auto;
        /* width: 80%; */
    }
    .top-banner{
        background-color: #333;
    }
.theme-default .nivoSlider {
	position:relative;
	background:#fff url("/Portals/_default/skins/brandoslategrey/images/loading.gif") no-repeat 50% 50%;
    margin-bottom:10px;
}
.theme-default .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-default .nivoSlider a {
	border:0;
	display:block;
}

.theme-default .nivo-controlNav {
	text-align: center;
	padding: 20px 0;
}
.theme-default .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url("/Portals/_default/skins/brandoslategrey/images/bullets.png") no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-default .nivo-controlNav a.active {
	background-position:0 -22px;
}

.theme-default .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url("/Portals/_default/skins/brandoslategrey/images/arrows.png") no-repeat;
	text-indent:-9999px;
	border:0;
	opacity: 0;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-default:hover .nivo-directionNav a { opacity: 1; }
.theme-default a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
.theme-default a.nivo-prevNav {
	left:15px;
}

.theme-default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-default .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-default .nivo-caption a:hover {
    color:#fff;
}

.theme-default .nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}

/*bx-thumbnail*/
.bxslider-thumbnail .bx-wrapper{  
  border: 1px solid #eee;
  padding: 5px;
}
#bx-thumbnail-pager {
  text-align: center;
  border: 1px solid #eee;
  padding: 10px 5px;
  border-top: none;
}
#bx-thumbnail-pager a { cursor:pointer;}
#bx-thumbnail-pager img {
  max-width: 70px;
  border: 2px solid transparent;
}



/*home-banner */
.home-banner .bx-wrapper .bx-controls-direction a {
	border-radius: 0;
	border:none;
}
.home-banner .bx-wrapper .bx-controls-direction a:hover { background-color:#555;}
.home-banner .bx-wrapper .bx-prev {
	left: 0;
}

.home-banner .bx-wrapper .bx-next {
	right:0;
}


.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { background:#fff; opacity: 0.5;}

.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a:hover, 
.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #fff;
	opacity:1;
}
.testimonial-slider .bx-wrapper .bx-controls-direction a { background-color:#000; opacity: 0.5;}
.testimonial-slider .bx-wrapper .bx-controls-direction a:hover { opacity: 0.9;}

.testimonial-slider .bx-wrapper .bx-pager{ padding:0; line-height:1;}
/*---------------------------------*/
/* Responsive */
/*---------------------------------*/

@media handheld, only screen and (max-width:768px) {
.ui-tabs .bx-controls-direction { display:none;}
.slide-big-btn .carousel-control { display:none;}
/* slide-small-btn*/
.slide-small-btn .carousel-control.left {
    width: 25px;
    height: 30px;
    margin: -15px 0px 0px;
    top: 50%;
    line-height: 20px;
	font-size:16px;
}

.slide-small-btn .carousel-control.right {
	width: 25px;
	height: 30px;
	margin: -15px 0px 0px;
	top: 50%;
	line-height: 20px;
	font-size:16px;
}

/* slide-btn-style1*/
.slide-btn-style1 .carousel-control.left {
	width: 20px;
	height: 20px;
	margin: -10px 0px 0px;
	top: 50%;
	line-height: 20px;
	border: none;
	font-size: 14px;
	line-height: 20px;
}

.slide-btn-style1 .carousel-control.right {
	width: 20px;
	height: 20px;
	margin: -10px 0px 0px;
	top: 50%;
	line-height: 20px;
	border: none;
	font-size: 14px;
	line-height: 20px;
}
}


@media handheld, only screen and (max-width:767px) {
.inner-btn-style .carousel-control.left {
    width: 25px;
	height: 30px;
	margin: -45px 0px 0px;
	line-height: 20px;
	font-size: 16px;
	border: 5px solid #ffffff;
	border-left: none;
}

.inner-btn-style .carousel-control.right {
	width: 25px;
	height: 30px;
	margin: -45px 0px 0px;
	line-height: 20px;
	font-size: 16px;
	border: 5px solid #ffffff;
	border-right: none;
}


.bx-wrapper .bx-controls-direction a {
	width: 40px;
	height: 40px;
	margin: -20px 0 0 0;
	top: 50%;
}
}
@media handheld, only screen and (max-width:480px) {
.bx-wrapper .bx-prev {
	left: 10px;
}
.bx-wrapper .bx-next {
	right: 10px;
}
.Testimonial .bx-wrapper .bx-prev { margin:60px 0 0 -120px; }

.Testimonial .bx-wrapper .bx-next { margin:60px -120px 0 0; }
}
@media handheld, only screen and (max-width:360px) {
.Testimonial .bx-wrapper .bx-prev { margin:80px 0 0 -120px; }

.Testimonial .bx-wrapper .bx-next { margin:80px -120px 0 0; }

}
@media handheld, only screen and (max-width:320px) {
.mini-btn .carousel-control.left {
    top:175px;
}

.mini-btn .carousel-control.right {
	top:175px;
}

}















/* fancyBox  */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url("/Portals/_default/skins/brandoslategrey/images/fancybox_sprite.png");
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url("/Portals/_default/skins/brandoslategrey/images/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url("/Portals/_default/skins/brandoslategrey/images/blank.gif"); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url("/Portals/_default/skins/brandoslategrey/images/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}
.fancybox-custom .fancybox-skin {
			box-shadow: 0 0 50px #222;
		}










/*!
 *  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 PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("/Portals/_default/skins/brandoslategrey/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/Portals/_default/skins/brandoslategrey/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'), url("/Portals/_default/skins/brandoslategrey/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'), url("/Portals/_default/skins/brandoslategrey/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'), url("/Portals/_default/skins/brandoslategrey/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'), url("/Portals/_default/skins/brandoslategrey/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;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.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: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  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;
}
/* Deprecated as of 4.4.0 */
.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: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-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;
}












/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url("/Portals/_default/skins/brandoslategrey/css/grabbing.png") 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	font-size: 0;
	position: relative;
    width: 50px;
    height: 50px;
	margin:-25px 0 0 0;
	text-align:center;
	position:absolute;
	top:50%;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;

}
.owl-theme .owl-controls .owl-buttons div:hover { 
	background:rgba(0,0,0,0.5); 
}
.owl-theme .owl-controls .owl-buttons div.owl-prev { left:0;}
.owl-theme .owl-controls .owl-buttons div.owl-next { right:0;}

.home-banner .owl-theme:hover .owl-buttons div{ opacity: 1; }

.owl-theme .owl-controls .owl-buttons div.owl-prev:after {
    content: "\f104";
    color: #fff;
    font-size: 36px;
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
	font-family:fontawesome;
	text-align:center;
}
.owl-theme .owl-controls .owl-buttons div.owl-next:after {
    content: "\f105";
    color: #fff;
    font-size: 36px;
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
	font-family:fontawesome;
	text-align:center;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url("/Portals/_default/skins/brandoslategrey/css/AjaxLoader.gif") no-repeat center center
}


/*custom css*/
#owl-demo .item {
    margin:0;
}

.owl-row {
    margin-left: -15px;
    margin-right: -15px;
}

/*owl-btn1*/
.owl-btn1 .owl-theme .owl-controls .owl-buttons div.owl-prev{
    right: 56px;
    position: absolute;
    top: -50px;
}
.owl-btn1 .owl-theme .owl-controls .owl-buttons div.owl-next{
    position: absolute;
    right: 15px;
    top: -50px;
}

.LatestProjects #owl-demo .item {
    margin: 0px;
}

/*owl-btn2*/
.owl-btn2 .owl-theme .owl-controls .owl-buttons div { width:30px;}
.owl-btn2 .owl-theme .owl-controls .owl-buttons div:hover { opacity:0.7;}
.owl-btn2 .owl-theme .owl-controls .owl-buttons div:after { font-size:30px;width:30px; vertical-align:middle; position: absolute; top:0;}
.owl-btn2 .owl-theme .owl-controls .owl-buttons div.owl-prev {
    right:20px;
    position: absolute;
    top: -57px;
    background: none;
}
.owl-btn2 .owl-theme .owl-controls .owl-buttons div.owl-next{
    position: absolute;
    right: -10px;
    background: none;
    top: -57px;
}

/*PhotoGallery*/
.PhotoGallery .owl-theme .owl-controls .owl-buttons div.owl-prev:after,
.PhotoGallery .owl-theme .owl-controls .owl-buttons div.owl-next:after { font-size:18px; line-height:40px; width:40px; height:40px;}
.PhotoGallery .owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    font-size: 0;
    position: absolute;
    background: #555;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 0;
    text-align: center;
    top: 50%;
}
.PhotoGallery .owl-theme .owl-controls .owl-buttons div.owl-prev { left:0;}
.PhotoGallery .owl-theme .owl-controls .owl-buttons div.owl-next { right:0;}
.PhotoGallery .owl-theme .owl-controls { margin:0;}









@media handheld, only screen and (max-width:767px) {


.owl-theme .owl-controls .owl-buttons div.owl-prev::after,
.owl-theme .owl-controls .owl-buttons div.owl-next::after{ width:40px; height:40px; line-height:40px; font-size:20px;}
.owl-theme .owl-controls .owl-buttons div { width:40px; height:40px; line-height:40px; margin-top:-20px;}


}


/* CSS Document */
/* ********** Main ************** */
.wrapper:before {
  content:"";
  position: fixed;
  z-index:-1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	background-image: url("/Portals/_default/skins/brandoslategrey/images/bodybg.jpg");
    background-position:50% 0;
    background-repeat: no-repeat;
  background-size: cover;
	height:100%;
	width:100%;
	background-color: #fff;
}
.wrapper { 
	padding: 20px 20px;
}
.SkinWidth{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}
.SkinWidth:before,
.SkinWidth:after,
.SkinWidthBox:before,
.SkinWidthBox:after
 {
  display: table;
  content: "";
  clear: both;
}


.SkinWidth2 {
    max-width: 1160px;
    margin: 0px auto;
}
.SkinWidth2:before,
.SkinWidth2:after,
.SkinWidth2:before,
.SkinWidth2:after
 {
  display: table;
  content: "";
  clear: both;
}

.SkinMain { padding:0;}
.Wide .SkinWidth.NavBar { max-width:1140px;}
.Boxed .SkinBody {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
    max-width: 1170px;
    margin: 0px auto;
    background: #fff;
}
.LogoRight { float:right; }
.Navbar {
    position: relative;
	background:#fff;
}
.NavMenu {
    display: inline-block;
    vertical-align: middle;
}

.NavMenu .menu-home{
    float: left;
    background: rgba(0,0,0,0.1);
    color: #fff;
    font-size: 32px;
    padding: 23px 25px;
    border-right: 1px solid rgba(255,255,255,0.2);
	color:#fff;
}
.left { float:left;}
.right { float:right;}
.LeftMenu{
    margin: 15px 0 20px 0;
}
.w26 { width:26%;}
.w71 { width:71%;}
.wrapper .TopBar {
    background: #262d34;
    padding: 10px 0px;
    border-bottom: 1px solid #373b4a;
}
.dnnrow {
    display: table;
    content: "";
    clear: both;
    width: 100%;
}
.ContentBox {
    padding: 0 10px;
}
.SkinHeader { position:relative;}
.wrapper .header { min-height:100px; background:#2b333b;}
.SkinPadding { padding:0 20px;}
.logo-right { float:right;}


.GrayColor {
  background: #f6f6f6;
}

.skin-header {
    min-height: 40px;
    background: none repeat scroll 0% 0% #1D2225;
    line-height: 40px;
}
.header-bg {
	padding: 20px 0 0 0;
	position: absolute;
	left: 0;
	right: 0;
}

.header-mid {
	margin:20px 0 0 0;
}
.inner-header-mid { position:relative;}
.nav-cover {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.9;
}
.isStuck .nav-cover {
    opacity:1;
}
.MiddleColorArea { position:relative;}
.ColorBorder:before { content:""; position:absolute; width:100%; height:12px; background:rgba(0,0,0,0.2);}
.ColorBorder:after { content:""; position:absolute; width:100%; height:12px; background:rgba(0,0,0,0.2); bottom:0;}

.MobileBar {
	display:none;
}
.innerbanner-position {
	position: relative;
	background: url("/Portals/_default/skins/brandoslategrey/css/images/default-innerbg.jpg") no-repeat 50% 0;
	background-size: cover;
	min-height:300px;
	z-index:4;
}

/* ********** Breadcrumb Style ************** */

.breadcrumb-header {
    padding:50px 20px;
    background-color: rgba(255,255,255,0.04);
    background-size: cover;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-image: url("/Portals/_default/skins/brandoslategrey/images/breadcrumbimage.jpg");
	text-align:center;
}

.BreadcrumbPane .Normal {
    color: #fff;
    font-size: 14px;
    text-align: center;
    letter-spacing: .5px;
}
.page-name {
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  line-height:1;
}


.skin-breadcrumb {
	color: #fff;
	font-size: 14px;
	text-transform: capitalize;
	padding:10px 0 0 0;
	font-weight:400;
}

.skin-breadcrumb a,
.skin-breadcrumb a:link, 
.skin-breadcrumb a:active,
.skin-breadcrumb a:visited { color:#fff;}
.skin-breadcrumb .fa-home { font-size:18px;}

.dnn-menu {
    margin: 7px 0 0 0;
	float:right;
}
.mycontent { 
	min-height:500px; 
	margin:0 auto;
	padding:30px 0;
}
.ParallaxBg {
  background-image: url("/Portals/_default/skins/brandoslategrey/images/ParallaxBg.jpg");
  background-position: 0 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position:relative;
}
.ColorParallaxBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.95;
}
.GrayBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.85;
	background:#2C2F34;
}


.menu_box { display:none;}
.skin-footer {
	background:#2C2F34;
	position: relative;
	z-index: 1;
}
.footer-main { padding:30px 0 0px;}

.footer-bar { min-height:70px; background: rgba(0,0,0,0.25);}
.display-none { display:none;}


/* ********** Logo Style ************** */
.dnn-logo {
    float: left;
    padding:21px 20px;
}

.is-sticky .dnn-logo { padding:5px 20px;}
.is-sticky .dnn-logo img { max-height:80px;}
/* sticky */
.sticky-wrapper { margin:0;}
.is-sticky .StickyNav {
    z-index:1001;
    box-shadow:0 1px 9px #aaa;
	background: #fff;
}


.showControlBar .is-sticky .loginstatus {
    top: 55px !important;
}

/* ********** Login Style ************** */
.login-style {
    color: #fff;
	text-align:right;
}

.login-style em { padding:0 5px 0 0;}
.login, 
a.login:link, 
a.login:active, 
a.login:visited { color:#aaa; font-size:13px; }


.user, 
a.user:link, 
a.user:active, 
a.user:visited { color:#fff; margin:0 10px 0 0;}
a.user:hover { text-decoration: underline; }

/* ********** Language Style ************** */
.language-object { display:inline-block; vertical-align:middle;}
.language-object .Language img {
    border: medium none;
    width: 22px;
	margin:0 2px;
}
.language-object .Language.selected img {
    border: 1px solid #FFFFFF;
}

/* ********** Links Style ************** */
.footlins { 
	text-align: right; 
	padding:27px 0 10px 0; 
}
.footlins A, .footlins A:link, .footlins A:visited, .footlins A:active {
    color:#fff;
    font-size: 14px;
    text-transform: capitalize;
}
.footlins A:hover {
    color: #333;
    text-decoration: none;
}
/* ********** Copyright ************** */
.copyright {
  padding: 25px 0px 10px 0;
  color: #aaa;
  text-transform: capitalize;
  font-weight: 400;
  font-size:13px;
}
.TermsCss,
.TermsCss:link,
.TermsCss:active,
.TermsCss:visited { color:#aaa;}

/* ********** Search Style ************** */
.icon-search {
    float: right;
    color: #333;
    cursor: pointer;
    font-size: 18px !important;
    transition: none;
	width:20px;
}

.skin_search {
    position: relative;
    width: 20px;
	display:inline-block;
}
.skin_search .fa-search {
    color: #fff;
    font-size:17px;
	position:relative;
	z-index:999;
	-moz-transition:none;
	-webkit-transition:none;
	-o-transition:none;
}
.skin_search a.active { 
	background:url("/Portals/_default/skins/brandoslategrey/css/images/close.png") no-repeat scroll 0 50% transparent; 
	text-indent:-9999em; 
	display:block;
	height:25px;
}
.skin_search .icon-search:hover { 
	color: #666666; 
	text-decoration:none;
}
.skin-search {
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    margin:0 20px 0 10px;
    position: relative;
}
.MobileBar .icon-search {
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  float: right;
  width: 50px;
  padding: 15px 0 0 0;
  cursor:pointer;
}
.fa-search.active:before {
    content: "\f00d";
}
.shortline {
    color: #555;
    display: inline-block;
    font-size: 16px;
    background: none repeat scroll 0% 0% #fff;
    width: 1px;
    height: 20px;
    vertical-align: middle;
    opacity: 0.3;
	margin: 0 5px;
}
.search_bg 
.searchInputContainer { display:block!important;}
.search_bg ul.searchSkinObjectPreview,
.search_bg .searchInputContainer a.dnnSearchBoxClearText { display:none!important;}

.search_bg {
    height: 40px;
    position: absolute;
    right: 0px;
    vertical-align: middle;
    margin: 0px;
    width: 220px;
    z-index: 903;
    text-align: left;
    overflow: hidden;
    padding: 0;
    background:#333;
	display:none;
	top:35px;
}
.search_bg input[type="text"] {
    color: #fff;
    outline: medium none;
    text-align: left;
    vertical-align: top;
    width: 175px;
    transition: all 0.8s ease 0s;
    padding: 0 8px 0 10px;
    text-transform: capitalize;
    border: none;
    background: none;
    position: absolute;
    height:40px;
}
.search_bg .NormalTextBox {
    font-family: arial;
    font-size: 14px;
    font-weight: normal;
}
.search_bg a, .search_bg a:link, .search_bg a:active, .search_bg a:visited {
    display: block;
    height: 40px;
    width: 45px;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    text-indent: -9999em;
    color: white;
    font-size: 0;
    line-height: 40px;
    transition: all 0.8s ease 0s;
}
.search_bg a:hover { text-decoration:none;}
.search_bg a:before {
  content: "\f002";
  font-family:fontawesome;
  text-indent: 9999em;
  font-size:16px;
	padding: 0 15px;
}

/* ********** Back to top Style ************** */

element.style {
    display: inline;
}
#goup {
    /*background: none repeat scroll 0 0 #0DB9CC;
    border-radius: 50% 50% 50% 50%;
    bottom: 40px;
    color: #ffffff;
    cursor: pointer;
    display: block;
    height: 40px;
    line-height: 40px;
    opacity: 0.5;
	 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    padding: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    z-index: 903;
	*/
	bottom:43px;
	
}

.goup a img {
    border-radius: 5px;
    background: #000;
}

#top-link:hover { opacity:1;}
#top-link .icon-up-open { font-size:16px;}

/* ********** Pane Style ************** */

.HeaderPane { padding:0;}
.TopDarkPane { background:#27303b; padding:30px;}
.ColorBoxPane { padding:30px 0;}
.HeaderPane .SubHead {
    color: #ccc;
}
.TopGrid6A,
.TopGrid6B,
.TopGrid4A,
.TopGrid4B,
.TopGrid4C,
.TopGrid3A,
.TopGrid3B,
.TopGrid3C,
.TopGrid3D,
.TopGrid8Left,
.TopGrid4Right,
.TopGrid4Left,
.TopGrid8Right,
.TopGrid9Left,
.TopGrid3Right,
.TopGrid3Left,
.TopGrid9Right,
.MiddleGrid6A,
.MiddleGrid6B,
.MiddleGrid4Left,
.MiddleGrid4Center,
.MiddleGrid4Right,
.MiddleGrid3Left,
.MiddleGrid3CenterA,
.MiddleGrid3CenterB,
.MiddleGrid3Right,
.MiddleGrid8A,
.MiddleGrid4B,
.MiddleGrid4A,
.MiddleGrid8B,
.MiddleGrid9A,
.MiddleGrid3B,
.MiddleGrid3A,
.MiddleGrid9B,
.MiddleGrid12,
.BottomGrid12,
.BottomGrid6A,
.BottomGrid6B,
.BottomGrid4Left,
.BottomGrid4Center,
.BottomGrid4Right,
.BottomGrid3Left,
.BottomGrid3CenterA,
.BottomGrid3CenterB,
.BottomGrid3Right,
.BottomGrid8A,
.BottomGrid4B,
.BottomGrid4A,
.BottomGrid8B,
.BottomGrid9A,
.BottomGrid3B,
.BottomGrid3A,
.BottomGrid9B,
.BottomContent {
	padding-top:10px;
	padding-bottom:10px;
}

.PaneLayoutMid { margin:10px 0;}
.TopShowPane { padding:0;}
.TopContentPane { 
	padding:20px 0 0px 0; 
	margin:0;
}
.TopGrayPane {
  padding: 60px 0;
}

.BannerPane { 
	padding:0; 
	margin:0;
}
.InnerBannerPane{ 
	padding:0; 
	margin:0;
	position:relative; 
	z-index:1;
}
.InnerBannerPane .Normal img { width:100%;}
.ParallaxPane {
    padding:50px 0px;
	position:relative;
}
.ColorParallaxPane { position:relative; padding:30px 0;}
.FullWidthPane .CommandButton, .FullWidthPane A.CommandButton:link, .FullWidthPane A.CommandButton:visited, .FullWidthPane A.CommandButton:active {
    color: #FFFFFF;
}
.no-margin { margin:0 !important;}
.ContentPaneHome {
    padding: 10px 0 30px;
}
.ContentPane {
    margin: 10px 0;
    padding: 5px 0 0;
    text-align: left;
    vertical-align: top;
}
.ContentPaneInner {
	margin:0 0 10px 0;
	padding:0;
}
.MultiColor-bg .ColorContentPane {
    padding: 0;
	min-height:inherit;
}
.FooterColorPane {
	padding:0;
}
.FooterPane1,
.FooterPane2,
.FooterPane3,
.FooterPane4 {
    margin: 20px 0;
}
.LeftSideBar {
    margin: 10px 0 0;
    padding: 5px 0 0;
}
.RightSideBar {     
    margin: 0;
    padding:0;
}
.RightPadding {
    margin: 10px 0 0;
    padding: 5px 0 0;
}
.ColorContentPane { padding:40px 0;}

.ColorContentPane .CommandButton, 
.ColorContentPane A.CommandButton:link, 
.ColorContentPane A.CommandButton:visited, 
.ColorContentPane A.CommandButton:active { 
	color:#FFFFFF;
}
.FooterSocialPane { margin:10px 0 0 0;}
.GrayPane { padding:30px;}

.TreeMenu { display:none }
.MobileMenu {
    display: none;
}
.menu_hidden { display:none!important; }


/*Responsive layout*/
@media handheld, only screen and (max-width:1080px) {
.dnn-logo {
    float: none;
    text-align: center;
	padding:20px 0 10px;
}
.LogoRight {
    float: none;
    text-align: center;
}
.sticky-wrapper {
    margin: 0;
    height: auto !important;
}
}
@media handheld, only screen and (max-width:960px) {

.login-style {
    text-align: center;
}

.HeaderPane {
    float: none;
    padding:0;
}




.col-sm-3.FooterPane1,
.col-sm-3.FooterPane2,
.col-sm-3.FooterPane3,
.col-sm-3.FooterPane4 { width:50%;}


.stick .dnn_logo {
	display:none;
}
.stick .dnn_menu {
	float: none;
}

}
@media handheld, only screen and (max-width:900px) {





.isStuck .dnn-logo {
  padding: 0;
  margin: 10px 0;
}
.StickHeight {
  min-height: 130px;
}
.breadcrumb-position { top:40px;}
}


@media handheld, only screen and (max-width:767px) {
Body {-webkit-text-size-adjust:none;}

.fl, .fr{ float:none;}
.stick {
    box-shadow: none;
    height: auto;
    padding: 0;
    position: static;
    width: auto;
}
.stick .dnn_menu { float:none;}
.is-sticky .StickyNav {
    z-index: 905;
    position: static !important;
}
.dnn_menu { display:none;}
.NavMenu { display:none;}
.sticky-wrapper { height:auto!important;}
.footer-bar {
	min-height: 60px;
}
.header-bg { padding:0; position:relative;}
.header-mid { position:relative!important; margin:0; min-height:55px;}

.skin-search { height:auto;}

#dnn_LayoutStyle_plDisplay { display:none;}
.stuck-top { padding:5px 0 0 0; background:#202830;}
/* ********** Logo Style ************** */
.dnn-logo.left {
	padding:10px 0;
	float:none;
	text-align:center;
}


.dnn-logo img {
	width:100%;
}

.isStuck .dnn-logo img {
  max-height: none;
}




/* ********** Breadcrumb Style ************** */
.Breadcrumb {
    min-height:30px;
    line-height:30px;
}
.footlins { text-align:center; padding:15px 0; }

.menu_box, .menu_box:link, .menu_box:active, .menu_box:visited {
    margin: 0px;
    font-size: 26px;
    color: #333;
    padding: 0;
    display: inline-block;
}
.menu_box span {
    font-size: 20px;
    display: inline-block;
	line-height:1.5;
	text-transform:uppercase;
}

.isStuck .menu_box, .isStuck .menu_box:link, .isStuck .menu_box:active, .isStuck .menu_box:visited {
	margin: 0;
}
.StandardMenu,
.MegaMenu { display:none;}
.menu_hidden { display:inherit!important; }
.Breadcrumb h4 { font-size:20px; }

.footer-bar .col-sm-6 { width:auto; float:none; text-align:center;padding: 20px 0 0 0;}

/* ********** Login Style ************** */
.login_style { text-align:center;}

/* ********** Copyright Style ************** */

.copyright {
	padding: 0px 0px 10px 0;
	text-align:center;
}

/* ********** Pane Style ************** */

.TopContentPane {
    width: auto;
}

.PortfolioPane {
    padding:0;
}
.BannerPane {
    margin: 0;
    padding: 0;
}
.ShowPane1 {
    margin: 10px 0;
    width: auto;
}
.ShowPane2 {
    margin: 10px 0;
    width: auto;
}
.ShowPane3 {
    margin: 10px 0;
    width: auto;
}
.ShowPane4 {
    margin: 10px 0;
    width: auto;
}
.UpperRightSidebarContent {
    margin: 10px 0;
    width: auto;
}
.UpperRightSideBar {
    margin: 10px 0;
    width: auto;
}
.UpperLeftSidebar {
    margin: 10px 0;
    width: auto;
}
.UpperLeftSidebarContent {
    margin: 10px 0;
    width: auto;
}
.UpperHalfLeft {
    margin: 10px 0;
    width: auto;
}
.UpperHalfRight {
    margin: 10px 0;
    width: auto;
}
.UpperThirdLeft {
    margin: 10px 0;
    width: auto;
}
.UpperThirdCenter {
    margin: 10px 0;
    width: auto;
}
.UpperThirdRight {
    margin: 10px 0;
    width: auto;
}
.UpperQuartleft {
    margin: 10px 0;
    width: auto;
}
.UpperQuartCenterLeft {
    margin: 10px 0;
    width: auto;
}
.UpperQuartCenterRight {
    margin: 10px 0;
    width: auto;
}
.UpperQuartRight {
    margin: 10px 0;
    width: auto;
}
.ContentPaneHome {
    padding: 10px 0 30px;
}
.ContentPane {
    margin: 10px 0;
    padding: 5px 0;
    text-align: left;
    vertical-align: top;
}
.MiddleContent {
    margin: 10px 0;
}
.BottomContent {
    margin: 10px 0;
}
.ColorContentPane {
    width: auto;
}
.FullWidthPane {
	padding: 40px 0 10px 0;
}

.col-sm-3.FooterPane1,
.col-sm-3.FooterPane2,
.col-sm-3.FooterPane3,
.col-sm-3.FooterPane4 { width:auto; float:none;}
.GrayColor {
  margin: 30px 0;
}
.GrayPane {
  padding: 30px 0;
}
.HeaderPane2 {
  float: none;
  width: 100%;
}
.LeftBar.left {
    float: none;
    width: 100%;
}
.RightBar.right {
    float: none;
    width: 100%;
}

.isStuck {
  position: inherit!important;
  box-shadow: none;
}

.StickHeight {
  min-height: 1px;
}
.ParallaxBg{
  background-attachment: scroll;
}
.search_bg a, .search_bg a:link, .search_bg a:active, .search_bg a:visited {
  border-radius:0;
}
.page-name {
    font-size: 24px;
}
.BreadcrumbPane .Normal {
	font-size: 13px;
}
.skin-breadcrumb {
	font-size: 13px;
}

.dnn-logo {
    float: left;
    padding: 20px;
	max-width: 70%;
}
.LogoRight {
    float: right;
    padding:30px 25px 30px 10px;
    text-align: center;
}
.skin-search {
	display:none;
}
.login-style {
  float: none;
  text-align: center;
}
.wrapper .header { min-height: inherit;}
.footer-main {
    padding: 20px 0 20px;
}
.is-sticky .dnn-logo { padding:20px;}
}
@media handheld, only screen and (max-width:640px) {

.footlins { display:none;}

}
@media handheld, only screen and (max-width:600px) {
.skin-header .container .row .left,
.skin-header .container .row .right{ float:none; text-align:center;}

.TopBar .col-sm-6 { width:auto; float:none;}
.login-style {
  text-align: center;
  float: none;
}
.skin-breadcrumb.right {
    float: none;
    text-align: center;
    padding: 5px;
}



}
@media handheld, only screen and (max-width:520px) {

}
@media handheld, only screen and (max-width:480px) {
.breadcrumb1 { display:none;}


}


@media handheld, only screen and (max-width:375px) {



}


@media handheld, only screen and (max-width:360px) {


}
@media handheld, only screen and (max-width:320px) {
}
@media handheld, only screen and (max-width:240px) {


}















.DNNStandard .breadcrumb {
    padding: inherit;
    margin: inherit;
    list-style: outside none none;
    background:none;
    border-radius: 0;
}
.DNNStandard ul {
  position: relative;
  margin:0;
  padding:0;
  width:100%;

}
.DNNStandard li {
    float: left;
    list-style-type: none;
    position: relative;
    margin: 0;
    padding: 0px;
	z-index: 903;
}
/*.DNNStandard li:after { content:"|"; position:absolute; right:-1px; top:38px; color:#ccc;}*/
.DNNStandard li.last a{
	border-right:none;
}
.DNNStandard li a {
    display: block;
    color: #333;
    font-size: 14px;
    font-family: open sans;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
    font-weight: 600;
    padding:15px;
	border-radius: 5px;
	margin:25px 4px 25px 0;
	text-transform:uppercase;
	position:relative;
}
.menuicon {
    display: block;
    text-align: center;
    font-size: 20px;
    border: 1px solid rgb(255, 255, 255);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0px auto 10px auto;
    line-height: 43px;
}
.is-sticky .menuicon { 
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	display:none;
}
.DNNStandard li a span {
	display:block;
}

.DNNStandard li.haschild span:after {
    content: "";
    right: 10px;
    font-family: FontAwesome;
	font-weight: normal;
	padding: 0px 0px 0px 0;
	line-height: 1;
}


.DNNStandard li a div {
  display: block;
  line-height: 33px;
  margin: 0;
  padding: 0;
}

.DNNStandard .subLevel {
    position: absolute;
    width: auto;
    padding:10px 0;
    z-index: 1210;
    display: none;
    min-width: 200px;
	text-align:left;
	top:100%;
	border-radius: 5px;
}



.DNNStandard li.hover .subLevel{ display:block; }
.DNNStandard li ul{margin:0;padding:0;position:relative;z-index:1200;}
.DNNStandard li li {
    float: none;
    clear: both;
    width: auto;
	margin:0;
	padding:0;
	border:none;
	text-align:left;
	display:block;
}
.DNNStandard li li a {
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    position: relative;
    font-size: 13px;
    margin:0 15px;
    border-radius: 0;
	border-right:none;
	padding:0;
	min-height: inherit;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	opacity: 0.85;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.DNNStandard li li div{ display:block;  }
.DNNStandard li li span {
    padding: 12px 5px;
    display: block;
    margin: 0;
    min-height: inherit;
    line-height: 1.3;
}

/*submenu Level2*/
.DNNStandard li.haschild li a span:after { content:"";}
.DNNStandard li.haschild li.haschild a span:after{
  content: "\f105";
  font-family: FontAwesome;
  padding:0;
  font-size: 14px;
  font-weight: normal;
  position:absolute;
  right:5px;
  line-height:1;
}

/*submenu Level3*/
.DNNStandard li.haschild li.haschild li a span:after { content:"";}
.DNNStandard li.haschild li.haschild li.haschild a span:after{
  content: "\f105";
  font-family: FontAwesome;
  padding:0;
  font-size: 14px;
  font-weight: normal;
  position:absolute;
  right:5px;
}

/*submenu Level4*/
.DNNStandard li.haschild li.haschild li.haschild li a span:after { content:"";}
.DNNStandard li.haschild li.haschild li.haschild li.haschild a span:after{
  content: "\f105";
  font-family: FontAwesome;
  padding:0;
  font-size: 14px;
  font-weight: normal;
  position:absolute;
  right:5px;
}

/*submenu Level5*/
.DNNStandard li.haschild li.haschild li.haschild li.haschild li a span:after { content:"";}
.DNNStandard li.haschild li.haschild li.haschild li.haschild li.haschild a span:after{
  content: "\f105";
  font-family: FontAwesome;
  padding:0;
  font-size: 14px;
  font-weight: normal;
  position:absolute;
  right:5px;
}

/*submenu Level6*/
.DNNStandard li.haschild li.haschild li.haschild li.haschild li.haschild li a span:after { content:"";}





.DNNStandard li li div img{ margin-right:.5em;width:16px;height:16px;vertical-align:middle;}

.DNNStandard .subLevelRight {
    display: none;
    position: absolute;
    left:200px;
    width: auto;
    top: 0;
    padding:10px 0;
    min-width: 200px;
	border-radius: 5px;
	margin-top:-10px;
	
}
.DNNStandard .subLevel li.hover > .subLevelRight{display:block;}
.DNNStandard .subLevelRight ul{ display:block;}
.DNNStandard .subLevelRight ul li{ position:relative;}
.DNNStandard .subLevelRight ul li a{ display:block;}
.DNNStandard .subLevelRight ul li a div{ display:block; }



/*---current---*/


/*---isStuck---*/
.is-sticky .DNNStandard li a {
    margin:10px 4px 10px 0;
}
.is-sticky .DNNStandard li li a {
    margin: 0 15px;
}

/*---lampback---*/
#magic-line {
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100px;
    height: 5px;
    padding: 0px;
    background: #FFF none repeat scroll 0% 0%;
}

@media handheld, only screen and (max-width:1080px) {

.DNNStandard li a {
    margin: 10px 4px 10px 0;
	font-size:13px;
}
}
@media handheld, only screen and (max-width:960px) {


}

@media handheld, only screen and (max-width:860px) {
.DNNStandard li a { font-size:12px; padding: 10px;}
}

@media handheld, only screen and (max-width:767px) {

.DNNStandard ul { display:none;}
}




/* Mega Menu Styles */
ul.dnnmega {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}


ul.dnnmega ul {
    padding:0;
	margin:0;
	
}
ul.dnnmega ul ul ul{ padding:0;}
/*WAM - removed z-index*/
.dnnmega .breadcrumb { background:none;}

ul.dnnmega li {
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0px;
    z-index: 903;
}

ul.dnnmega li.mmLast a{ 
	border-right:none;
}
ul.dnnmega li a{
    display: block;
    color: #333;
    font-size: 14px;
    font-family: open sans;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
    font-weight: 600;
    padding:15px;
	border-radius: 5px;
	margin:25px 4px 25px 0;
	text-transform:uppercase;
	position:relative;
}
ul.dnnmega li.mmItemHover a:after  {
    content: "\f0d8";
    font-family: fontawesome;
    position: absolute;
    bottom: -30px;
    left: 50%;
    font-size: 32px;
    margin-left: -10px;
    -moz-transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.dnnmega li.mmBreadcrumb li a:after { display:none;}
ul.dnnmega li.mmItemHover li a:after { display:none;}
.menuicon {
    display: block;
    text-align: center;
    font-size: 20px;
    border: 1px solid rgb(255, 255, 255);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0px auto 10px auto;
    line-height: 43px;
}
ul.dnnmega li li .menuicon { display:none;}
ul.dnnmega li.mmHasChild li span{ padding:0;}
ul.dnnmega li span {
    display: block;
}

/*
ul.dnnmega li.mmHasChild a span:after {
    content: "\f107";
    right: 10px;
    font-family: FontAwesome;
    font-weight: normal;
    padding: 0px 0px 0px 7px;
    line-height: 1;
}
*/
ul.dnnmega li.mmHasChild li a span:after { content:"";}



ul.dnnmega li .megaborder {
    position: absolute;
    left:100px;
    z-index: 1200;
    float: left;
    display: none;
    text-align: left;
    min-height: 180px;
	min-width:380px;
}
ul.dnnmega li.mmFirst .megaborder {
    right:inherit;
    left: 0;
}
ul.dnnmega li.child-2 .megaborder {
    right:inherit;
    left: 0;
}
ul.dnnmega li.child-3 .megaborder {
    right:inherit;
    left: 0;
}


ul.dnnmega li.mmLast .megaborder {
    right:0;
    left:inherit;
}

ul.dnnmega li:nth-last-child(2) .megaborder {
    right:0;
    left:inherit;
}
ul.dnnmega li:nth-last-child(3) .megaborder {
    right:0;
    left:inherit;
}

ul.dnnmega .megaborder .M {
    display: block;
    border-top: 0px none;
    border-bottom: 0px none;
    min-height: 135px;
    padding: 10px 0 20px 10px;
	margin:0;
}




ul.dnnmega li li {
    display: block;
    width: 180px;
    float: left;
    margin: 0;
    height: auto !important;
	text-align: left;
	border: none;
}


ul.dnnmega li li a {
  display: block;
  padding: 10px 0px;
  line-height: 1.5;
  margin: 0px 10px;
  text-transform: capitalize;
  background:none;
  font-weight:400;
  border-radius:0;
  border-bottom:1px solid rgba(255, 255, 255, 0.15);
  color:#fff;
  font-size:14px;
  min-height: initial;
  border-right:none;
}
ul.dnnmega li li a span {
    display: block;
    padding: 0px;
	margin: 0;
}
ul.dnnmega li li li a {
    border: medium none;
    font-weight: 400;
    margin: 0px!important;
    padding: 0px 0px 0px 10px;
	position:relative;
	text-transform: capitalize;
	color:#fff;
}

ul.dnnmega li li li a span:before { content:"\f0da"; font-family:FontAwesome; display:inline-block; font-size:12px; position:absolute; left:0; vertical-align:top;}

ul.dnnmega li li li a span {
    text-transform: capitalize;
    padding:8px 0 8px 5px !important;
    line-height: 1;
	font-size:12px;
}


ul.dnnmega li.category li.leaf, ul.dnnmega li.category li.mmLast {
    clear: left;
    float: none;
    position: static;
    padding: 0px 0px 0px 12px;
}


ul.dnnmega img.mmIcon { 
    margin-right: 0.5em;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
ul.dnnmega li.root > a > span img.mmIcon { height: 16px;}

/*---Current & Selected---*/
ul.dnnmega li.mmBreadcrumb li a { color:#fff;}
.dnnmega li.selected .subLevel li a{
	border:none;
}
.dnnmega li.selected .subLevel li a{
	border:none;
}


.dnnmega li.mmBreadcrumb li a {
  background: none;
  border-top: none!important;
  border-radius:0;
}


.is-sticky ul.dnnmega li a {
    margin: 10px 4px 10px 0;
}
.is-sticky ul.dnnmega li li a {
    margin: 0px 10px;
}
.is-sticky ul.dnnmega li.mmItemHover a:after { bottom: -15px;}
@media handheld, only screen and (max-width:1080px) {

ul.dnnmega li a {
    margin: 10px 4px 10px 0;
	font-size:13px;
}
}
@media handheld, only screen and (max-width:960px) {


}

@media handheld, only screen and (max-width:860px) {
ul.dnnmega li a { font-size:12px; padding: 10px;}
}


@media handheld, only screen and (max-width:767px) {

ul.dnnmega { display:none;}
}





/*---MobileMenu---*/
.treeview li { list-style-type: none }
.MobileMenu .treeview, .MobileMenu .treeview ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	display:block;
	background:#2B333B;
}

.MobileMenu .treeview ul {
	margin:0;
	padding:0;
	background:#22282F;
}
.MobileMenu .treeview .hitarea { cursor:pointer;}
.MobileMenu .treeview .hitarea:before {
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  line-height: 40px;
  content: "\f107";
  font-family: FontAwesome;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 45px;
}
.MobileMenu .treeview .expandable-hitarea:before { 	
	content: "\f107";
 }
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}

.MobileMenu .treeview li {
    list-style-type: none;
  border-bottom:1px solid #39444F;
  margin:0;
  position:relative;
}
.MobileMenu .treeview li li { border:none; margin:0;}
.MobileMenu .treeview li a {
  color: #ddd;
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 13px 20px;
  text-transform: capitalize;
}
.MobileMenu .treeview ul li a {
  font-weight: 400;
  font-size: 13px;
  padding-left: 30px;
  border:none;
  color: #ddd;
  background-color: transparent;
}
.MobileMenu .treeview ul li a.current { background:none;}
.MobileMenu .treeview ul li a:before { content:"-"; margin:0 5px 0 0;}
.MobileMenu .treeview ul li li a {
  padding-left: 45px;
}
.MobileMenu .treeview ul li li li a {
  padding-left: 50px;
}
.MobileMenu .treeview li li.collapsable a{ background:none; color:#ddd;}

.MobileMenu .treeview li.collapsable ul a { background:inherit; color:#ddd;}

/*---LeftMenu---*/
.MenuName {
  background:#E2E4E4;
  color: #555;
  font-size: 14px;
  padding: 12px 0 12px 20px;
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
}

.MenuName:before {
  content: "\f0c9";
  font-family: FontAwesome;
  padding: 0 10px 0 0;
  font-size: 18px;
}


.LeftMenu .treeview, .LeftMenu .treeview ul {
    padding: 8px;
    margin: 0px;
    list-style: outside none none;
    display: block;
    position: relative;
	overflow:hidden;
	background:#3A4147;
}

.LeftMenu .treeview ul {
	margin:0;
	padding:0;
	border:none;
}
.LeftMenu .treeview .hitarea { cursor:pointer;}
.LeftMenu .treeview .hitarea:before  {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    content: "-";
    font-family: FontAwesome;
    font-size: 24px;
    text-align: center;
    line-height:50px;
}
.LeftMenu .treeview li .hitarea:before { color:#fff;}
.LeftMenu .treeview li .expandable-hitarea:before { 	
	content: "+";
	color: #fff;
	font-size:18px;
 }
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}

.LeftMenu .treeview li {
    list-style-type: none;
}
.LeftMenu .treeview li a {
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 15px 20px;
    border-top:1px solid #555;
    color: #ccc;
	font-family:open sans;
	text-transform: capitalize;
}
.LeftMenu .treeview li:first-child a { border-top:none;}
.LeftMenu .treeview li li:first-child a { border-top:1px solid #555;}
.LeftMenu .treeview li:first-child li a { border-top:1px solid #555;}
.LeftMenu .treeview ul li a {
  font-weight: 400;
  font-size: 13px;
  padding-left: 30px;
}
.LeftMenu .treeview ul li li a {
  padding-left: 45px;
  border:none;
}
.LeftMenu .treeview ul li li li a {
  padding-left: 60px;
}
.LeftMenu .treeview ul li li li li a {
  padding-left: 75px;
}
.LeftMenu .treeview a.selected:hover { color:#fff;}

.LeftMenu .treeview li.collapsable ul a {
    background: inherit;
    color: #aaa;
}



@media handheld, only screen and (max-width:767px) {
.LeftMenu { display:none;}

}






/*Color Css*/
.TextColor { color:#708090;}
.BackgroundColor { background:#708090;}
.DefaultBackground { background:#708090;}
.DefaultBorderColor{ border-color:#708090;}
.DefaultColor  { color:#708090;}
.MultiColor-bg { background:#708090; }
A, A:link, A:active, A:visited{
    color: #708090;
}
.how-to-use h3 {
    border-left: 3px solid #708090;
}
.box1 { background:#7a8b9b;}
.box2 { background:#708090;}
.box3 { background:#657483;}
.box4 { background:#5b6977;}

/*Button*/
.button, .button:link, .button:active, .button:visited {
    padding: 10px 20px;
    display: inline-block;
    font-size: 14px;

}
.btn-text, .btn-text:link, .btn-text:active, .btn-text:visited {
    background: #708090;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-text:hover { background:#333;}

.btn-text-dark, .btn-text-dark:link, .btn-text-dark:active, .btn-text-dark:visited {
    background: #708090;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
	border:2px solid #708090;
	padding: 8px 15px;
}
.btn-text-dark:hover { background:none;}


/*Login*/
a.login:hover { color:#708090;}

/*Search*/
.icon-search:hover { color:#708090;}
.search_bg a, .search_bg a:link, .search_bg a:active, .search_bg a:visited { background:#708090;}

/*Footer*/
.TermsCss:hover {
  color: #708090;
}
/*back to top*/
.goup a img {
    border: 2px solid #708090;
}
/*breadcrumb*/
.skin-breadcrumb a:hover { text-decoration:underline; color:#708090;}

/*HomePage*/
.home-top-box .box:hover { background:#708090; color:#fff; }
.home-top-box .box em { background:#708090; color:#fff; border:1px solid #708090;}
.home-top-box .box:hover em { border:1px solid #fff; }
.home-top-box .box:hover h4,
.home-top-box .box:hover p { color:#fff;}
.top-contact .icon {
    color: #708090;
    font-size: 25px;
    float: left;
    padding: 10px 0 0 0;
}

.plus-mask .box a {
    color: #708090;
}
.gallery-item .box a:hover{ background:#708090; color:#fff;}

.top-social a:hover { color:#708090;}

.service-tabs ul li.active a {
    background:#708090;
	color:#fff;
}
.service-tabs ul {
    border-bottom: 2px solid #708090;
}
.home-WhyUs em {
    font-size: 24px;
    background: #708090;
    float: left;
    color: #fff;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}
.TopService .details h5 a:hover { color:#708090;}
.home-accordion .panel-title a {
  color: #fff;
  background-color:#708090;
}

.TopIcons em {
    background: #708090;
    color: #fff;
    width: 80px;
    height: 80px;
    line-height: 76px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
	border:2px solid #708090;
	-moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}

.TopIcons .box:hover em { background:none; color:#708090;}
.footer-newsletter .social a:hover { color:#708090;}
.home-contact .contact-info em{ color:#708090;}
.home-offer h5 em {
    float: right;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
	color:#fff;
}
.home-offer .featured-pro:hover h5 { background: #708090;}


.TopService .details:hover em { background:#708090; color:#fff;}
.home-team .box:hover .details { background:#708090; color:#fff;}
.home-contact .social-icon a:hover { background:#708090; border:1px solid #708090;}
.latest-news .NewsIcon {
    background: #708090;
}
.news-left .date { background:#708090;}
.news-list h5 a:hover { color:#708090;}
.footer-social a:hover { color:#708090;}
.home-other-links li a:hover { color:#708090; }
.home-other-links li em { margin:0 6px 0 0; color:#708090;}
h1.footer-logo span { color:#708090;}
.footer-row1 .social-icon a:hover { background:#708090;}
.ServiceBottomLeft .details { margin:0 0 20px 0;}
.ServiceBottomLeft .details h4 { color:#333;}

.ServiceBottomLeft .details em {
    background: #708090;
    color: #FFF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 15px 0 0;
}
.ServiceBottomLeft .details p { padding:5px 0 0 60px;}

.TestimonialsTabs ul li.active .img { border:1px solid #708090;    opacity: 1; width:90px;}
.TestimonialsTabs ul li:hover .img {  border:1px solid #708090;opacity: 1;}
.latest-news .details a:hover { color:#708090;}
.home-team .box .social a:hover { color:#708090;}
.PageTeam-top h6 { color:#708090; font-weight:bold;}
.PageTeam-top .box em { font-size:30px; color:#708090;}
.PageTeam-top .box:hover { background:#708090;}

.page-service .box:hover em { background:none; color:#708090;}
.page-service .box em { background-color: #708090; border:2px solid #708090;}

.TeamNews .date { background:#708090;}
.home-contact .contact-info a:hover{ color:#708090;}
.TeamStyle01 h6 {
    color: #708090;
    font-weight: 300;
}

.TeamStyle02 .box h6 {
    color: #708090;
    padding: 10px 0 10px 0;
    position: relative;
    margin: 10px 0 0 0;
}

.TeamStyle02 .box .social a {
    background: #708090;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    border-radius: 50%;
}
.PhotoGallery .hover-text h5 { color:#708090; font-weight:bold;}
.PhotoGallery .hover-icon span {
    color: #708090;
}
.PhotoGallery .hover-icon span:hover { background:#708090; color:#fff;}

.footer-links a:hover { color:#708090; }
.HomeTabs ul {  background:#708090;}
.footer-row1 .link-history:hover { background:#708090; color:#fff; border:1px solid #708090; }

/*inner page*/

.featured-pro h5:after { 
    background: #708090;
}


.page-about-top h4:after {
    content: "";
    height: 2px;
    background: #708090;
    position: absolute;
    width: 30px;
    bottom: 0;
    left: 0;
}

.plan_col.plan_column1 > h6 {
    color: #fff;
    background: #708090;
}
.plan_col.plan_column1:hover { border:1px solid #708090;box-shadow: 0 1px 9px #ccc;}
.plan_col.plan_column1:hover .plan_price_btn { background:#708090;}
.plan_col.plan_column1:hover > h6, .plan_col.plan_column1.active_plan > h6 {
    background: #708090;
}

.plan_col li i.wrong_icon {
    color: #708090;
}

.hm-pricing-header {
    background: #708090;
	color:#fff;
}

.hm-popular .hm-pricing-footer { background:#708090;}
.hm-pricing-list .box:hover .hm-pricing-footer{ background:#708090;}



.ContactIcons em {
    background: #708090;
}


/*Container*/
.Container002 .dnntitle:after {
    background: #708090;
}
.Container004 {
    border-bottom: 3px solid #708090;
}
.Container004 .dnntitle {
    color: #708090;
}
.Container007 .dnntitle .title-bg:after {
  border-bottom: 45px solid #708090;
}

.Container013 .dnntitle:after {
    background: #fff;
}






/*Standard Menu*/
.DNNStandard li a:hover{ background:#708090; color:#fff; }
.DNNStandard li.hover a{ background:#708090; color:#fff; }
.DNNStandard li.hover li a{ background:none; }
.DNNStandard li.current li a{ background:none; }
.DNNStandard li.selected a{ background:#708090; color:#fff; }
.DNNStandard li.current a { background:#708090; color:#fff; }
.DNNStandard li.hover li a:after{ display:none;}
.DNNStandard li li a:hover:after{ display:none;}
.DNNStandard li.hover li a:hover:after{ display:none;}

.DNNStandard li.current li a:after { display:none;}

.DNNStandard li li a:hover { padding-left:10px; opacity:1;}


.DNNStandard .subLevel,
.DNNStandard .subLevelRight { background:#708090;  }

.DNNStandard .subLevel::before {
    content: "\f0d8";
    font-family: fontawesome;
    position: absolute;
    top: -13px;
    left:30px;
    font-size: 32px;
    color: #708090;
}


/*Mega Menu*/
ul.dnnmega li a:hover{
    background: #708090;
    color: #fff;
}
ul.dnnmega li.mmItemHover a {
    background: #708090;
    color: #fff;
}
ul.dnnmega li.mmItemHover li a{ background:none;}

ul.dnnmega li li a:hover { text-decoration:underline!important;}

ul.dnnmega li.mmItemHover a:after { color:#708090;}


.dnnmega li.mmBreadcrumb a {
    background: #708090;
    color: #fff;
}
ul.dnnmega li .megaborder {
    background: #708090;
	border-radius: 5px;
}

/*Left Menu*/
.LeftMenu .treeview a.selected {
  color: #fff;
  background: #708090;
}
.LeftMenu .treeview a:hover { color: #fff; cursor: pointer; background:#708090; }

.LeftMenu .treeview li a.current,
.LeftMenu .treeview li.collapsable a{ background: #708090; color:#fff;}
.LeftMenu .treeview li.collapsable ul a:hover { color:#708090; background:rgba(255,255,255,0.05);}
.LeftMenu .treeview li.collapsable ul a.selected { color:#708090;background: none; border-right: none;}
.LeftMenu .treeview li.collapsable ul a.selected:hover { color:#708090; background:rgba(255,255,255,0.05);}

/*Mobile Menu*/
.MobileMenu .treeview a.current,
.MobileMenu .treeview a.selected {
	background:#708090;
	color:#fff;
}

.MobileMenu .treeview a:hover {
	background:#708090;
	color:#fff;
}

.MobileMenu .treeview li li a:hover { background:rgba(255,255,255,0.05); color:#708090;}
.MobileMenu .treeview li li.collapsable a:hover { color: #708090;}
.MobileMenu .treeview li.collapsable ul a:hover { color:#708090; background:rgba(255,255,255,0.05);}
.MobileMenu .treeview li li a.selected { color:#708090;background: none;}
.MobileMenu .treeview li li a.selected:hover { background:rgba(255,255,255,0.05); color:#708090;}






/*Slider*/
.btn-style1 .bx-wrapper .bx-pager.bx-default-pager a { background:#708090; opacity:0.5;}

.bx-wrapper .bx-controls-direction a {
    background-color: #708090;
}
.btn-style2 .bx-wrapper .bx-controls-direction a{
    background-color: #708090;
}


.btn-style2 .bx-wrapper .bx-pager.bx-default-pager a:hover, 
.btn-style2 .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #708090;
}

.button-controls a, .button-controls a:link, .button-controls a:active, .button-controls a:visited {
  color: #708090;
  text-align: center;
  top: inherit;
  border: 1px solid #708090;
  border-radius:50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
}
.button-controls a:hover { color:#fff; background:#708090;}

#bx-thumbnail-pager a.active img,
#bx-thumbnail-pager img:hover { border:2px solid #708090;}



.home-banner .owl-theme .owl-buttons div { 
	background:#708090;
	opacity:0;
}

.owl-theme .owl-controls .owl-page span { background:#708090;}
.PhotoGallery .owl-theme .owl-controls .owl-buttons div:hover { background:#708090;}




@media handheld, only screen and (max-width:767px) {







}


/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.eot");
  src: url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'), url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.woff2") format('woff2'), url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.woff") format('woff'), url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.ttf") format('truetype'), url("/Portals/_default/skins/brandoslategrey/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  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;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
    max-width: 1170px;
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: 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%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: 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%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: 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%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: 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%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}
textarea.form-group-sm .form-control,
select[multiple].form-group-sm .form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}
textarea.form-group-lg .form-control,
select[multiple].form-group-lg .form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px 15px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding: 48px 0;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}














.hll{
	background-color:#ffc
}

.c{
	color:#999
}

.err{
	color:#A00;
	background-color:#FAA
}

.k{
	color:#069
}

.o{
	color:#555
}

.cm{
	color:#999
}

.cp{
	color:#099
}

.c1{
	color:#999
}

.cs{
	color:#999
}

.gd{
	background-color:#FCC;
	border:1px solid #C00
}

.ge{
	font-style:italic
}

.gr{
	color:red
}

.gh{
	color:#030
}

.gi{
	background-color:#CFC;
	border:1px solid #0C0
}

.go{
	color:#AAA
}

.gp{
	color:#009
}

.gu{
	color:#030
}

.gt{
	color:#9C6
}

.kc{
	color:#069
}

.kd{
	color:#069
}

.kn{
	color:#069
}

.kp{
	color:#069
}

.kr{
	color:#069
}

.kt{
	color:#078
}

.m{
	color:#F60
}

.s{
	color:#d44950
}

.na{
	color:#4f9fcf
}

.nb{
	color:#366
}

.nc{
	color:#0A8
}

.no{
	color:#360
}

.nd{
	color:#99F
}

.ni{
	color:#999
}

.ne{
	color:#C00
}

.nf{
	color:#C0F
}

.nl{
	color:#99F
}

.nn{
	color:#0CF
}

.nt{
	color:#2f6f9f
}

.nv{
	color:#033
}

.ow{
	color:#000
}

.w{
	color:#bbb
}

.mf{
	color:#F60
}

.mh{
	color:#F60
}

.mi{
	color:#F60
}

.mo{
	color:#F60
}

.sb{
	color:#C30
}

.sc{
	color:#C30
}

.sd{
	color:#C30;
	font-style:italic
}

.s2{
	color:#C30
}

.se{
	color:#C30
}

.sh{
	color:#C30
}

.si{
	color:#A00
}

.sx{
	color:#C30
}

.sr{
	color:#3AA
}

.s1{
	color:#C30
}

.ss{
	color:#FC3
}

.bp{
	color:#366
}

.vc{
	color:#033
}

.vg{
	color:#033
}

.vi{
	color:#033
}

.il{
	color:#F60
}

.css .nt+.nt,.css .o,.css .o+.nt{
	color:#999
}

@font-face{
	font-family:anchorjs-link;
	src:url(data:application/x-font-ttf;
	charset=utf-8;
	base64,AAEAAAALAIAAAwAwT1MvMg6v8yoAAAC8AAAAYGNtYXDL8RqdAAABHAAAADxnYXNwAAAAEAAAAVgAAAAIZ2x5Zkm2oNUAAAFgAAABWGhlYWQAHd4cAAACuAAAADZoaGVhB3sECwAAAvAAAAAkaG10eAYAAEcAAAMUAAAADGxvY2EACgCsAAADIAAAAAhtYXhwAAYAcAAAAygAAAAgbmFtZUQXtNYAAANIAAABOXBvc3QAAwAAAAAEhAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAACDmAAPA/8D/wAPAAEAAAAAAAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEACgAAAAGAAQAAQACACDmAP//AAAAIOYA////4RoCAAEAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAIARwAHA7kDeQA2AG0AAAEnLgEiBg8BDgEUFh8BHgMXNy4DLwEuATQ2PwE+ATIWHwEeARQGDwEeAxU3PgE0JicBLgMnBx4DHwEeARQGDwEOASImLwEuATQ2PwEuAzUHDgEUFh8BHgEyNj8BPgE0Ji8BA7kEI1ldWiPaIyQkIwQDBgYGBFAEBwYHAwQTExMT2xMwMjETBBMTExNjBwkGA5gkIyMk/r4DBgYGBFAEBwYHAwQTExMT2xMwMjETBBMTExNjBwkGA5gkIyMkBCNZXVoj2iMkJCMEA3UEJCMjJNojWV1aIwQDBgUFA1ACBQUFAwQUMDIxE9oTExMTBBMxMjATYxAhISIRmSNaXVkj/sYDBgUFA1ACBQUFAwQUMDIxE9oTExMTBBMxMjATYxAhISIRmSNaXVkjBCQjIyTaI1ldWiMEAAEAAAABAABR/4xQXw889QALBAAAAAAAzqNM0wAAAADOo0zTAAAAAAO5A3kAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAABHA7kAAQAAAAAAAAAAAAAAAAAAAAMAAAAAAgAAAAQAAEcAAAAAAAoArAABAAAAAwBuAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoAKABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoAKABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADAALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;
	charset=utf-8;
	base64,d09GRgABAAAAAATwAAsAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDq/zKmNtYXAAAAFoAAAAPAAAADzL8RqdZ2FzcAAAAaQAAAAIAAAACAAAABBnbHlmAAABrAAAAVgAAAFYSbag1WhlYWQAAAMEAAAANgAAADYAHd4caGhlYQAAAzwAAAAkAAAAJAd7BAtobXR4AAADYAAAAAwAAAAMBgAAR2xvY2EAAANsAAAACAAAAAgACgCsbWF4cAAAA3QAAAAgAAAAIAAGAHBuYW1lAAADlAAAATkAAAE5RBe01nBvc3QAAATQAAAAIAAAACAAAwAAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAg5gADwP/A/8ADwABAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAAoAAAABgAEAAEAAgAg5gD//wAAACDmAP///+EaAgABAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAACAEcABwO5A3kANgBtAAABJy4BIgYPAQ4BFBYfAR4DFzcuAy8BLgE0Nj8BPgEyFh8BHgEUBg8BHgMVNz4BNCYnAS4DJwceAx8BHgEUBg8BDgEiJi8BLgE0Nj8BLgM1Bw4BFBYfAR4BMjY/AT4BNCYvAQO5BCNZXVoj2iMkJCMEAwYGBgRQBAcGBwMEExMTE9sTMDIxEwQTExMTYwcJBgOYJCMjJP6+AwYGBgRQBAcGBwMEExMTE9sTMDIxEwQTExMTYwcJBgOYJCMjJAQjWV1aI9ojJCQjBAN1BCQjIyTaI1ldWiMEAwYFBQNQAgUFBQMEFDAyMRPaExMTEwQTMTIwE2MQISEiEZkjWl1ZI/7GAwYFBQNQAgUFBQMEFDAyMRPaExMTEwQTMTIwE2MQISEiEZkjWl1ZIwQkIyMk2iNZXVojBAABAAAAAQAAUf+MUF8PPPUACwQAAAAAAM6jTNMAAAAAzqNM0wAAAAADuQN5AAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAARwO5AAEAAAAAAAAAAAAAAAAAAAADAAAAAAIAAAAEAABHAAAAAAAKAKwAAQAAAAMAbgACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAA4AAAABAAAAAAACAA4ARwABAAAAAAADAA4AJAABAAAAAAAEAA4AVQABAAAAAAAFABYADgABAAAAAAAGAAcAMgABAAAAAAAKACgAYwADAAEECQABAA4AAAADAAEECQACAA4ARwADAAEECQADAA4AJAADAAEECQAEAA4AVQADAAEECQAFABYADgADAAEECQAGAA4AOQADAAEECQAKACgAYwBpAGMAbwBtAG8AbwBuAFYAZQByAHMAaQBvAG4AIAAwAC4AMABpAGMAbwBtAG8AbwBuaWNvbW9vbgBpAGMAbwBtAG8AbwBuAFIAZQBnAHUAbABhAHIAaQBjAG8AbQBvAG8AbgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff');
	font-weight:400;
	font-style:normal
}

.anchorjs-icon{
	font-family:FontAwesome;
	speak:none;
	font-style:normal;
	font-weight:400;
	font-variant:normal;
	text-transform:none;
	line-height:1;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale
}

.anchorjs-link{
	float:left;
	width:1em;
	height:1em;
	margin-left:-1.2em;
	opacity:0;
	color:inherit;
	text-align:center
}

@media (max-width:480px){
	.anchorjs-link{
		display:none
	}

}

.anchorjs-link:focus,:hover>.anchorjs-link{
	opacity:.75;
	transition:color .16s linear
}

:hover>.anchorjs-link:hover{
	opacity:1;
	text-decoration:none
}

.anchorjs-icon{
	font-size:60%;
	vertical-align:.2em
}

.anchorjs-icon:before{
	content:"\f0c1"
}

/*!
 * Bootstrap Docs (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under the Creative Commons Attribution 3.0 Unported License. For
 * details, see http://creativecommons.org/licenses/by/3.0/.
 */body{
	position:relative
}

.table code{
	font-size:13px;
	font-weight:400
}

h2 code,h3 code,h4 code{
	background-color:inherit
}

.btn-outline{
	color:#563d7c;
	background-color:transparent;
	border-color:#563d7c
}

.btn-outline:active,.btn-outline:focus,.btn-outline:hover{
	color:#fff;
	background-color:#563d7c;
	border-color:#563d7c
}

.btn-outline-inverse{
	color:#fff;
	background-color:transparent;
	border-color:#cdbfe3
}

.btn-outline-inverse:active,.btn-outline-inverse:focus,.btn-outline-inverse:hover{
	color:#563d7c;
	text-shadow:none;
	background-color:#fff;
	border-color:#fff
}

.bs-docs-booticon{
	display:block;
	font-weight:500;
	color:#fff;
	text-align:center;
	cursor:default;
	background-color:#563d7c;
	border-radius:15%
}

.bs-docs-booticon-sm{
	width:30px;
	height:30px;
	font-size:20px;
	line-height:28px
}

.bs-docs-booticon-lg{
	width:144px;
	height:144px;
	font-size:108px;
	line-height:140px
}

.bs-docs-booticon-inverse{
	color:#563d7c;
	background-color:#fff
}

.bs-docs-booticon-outline{
	background-color:transparent;
	border:1px solid #cdbfe3
}

#skippy{
	display:block;
	padding:1em;
	color:#fff;
	background-color:#6f5499;
	outline:0
}

#skippy .skiplink-text{
	padding:.5em;
	outline:1px dotted
}

#content:focus{
	outline:0
}

.bs-docs-nav{
	margin-bottom:0;
	background-color:#fff;
	border-bottom:0
}

.bs-home-nav .bs-nav-b{
	display:none
}

.bs-docs-nav .navbar-brand,.bs-docs-nav .navbar-nav>li>a{
	font-weight:500;
	color:#563d7c
}

.bs-docs-nav .navbar-nav>.active>a,.bs-docs-nav .navbar-nav>.active>a:hover,.bs-docs-nav .navbar-nav>li>a:hover{
	color:#463265;
	background-color:#f9f9f9
}

.bs-docs-nav .navbar-toggle .icon-bar{
	background-color:#563d7c
}

.bs-docs-nav .navbar-header .navbar-toggle{
	border-color:#fff
}

.bs-docs-nav .navbar-header .navbar-toggle:focus,.bs-docs-nav .navbar-header .navbar-toggle:hover{
	background-color:#f9f9f9;
	border-color:#f9f9f9
}

.bs-docs-footer{
	padding-top:40px;
	padding-bottom:40px;
	margin-top:100px;
	color:#767676;
	text-align:center;
	border-top:1px solid #e5e5e5
}

.bs-docs-footer-links{
	padding-left:0;
	margin-top:20px
}

.bs-docs-footer-links li{
	display:inline;
	padding:0 2px
}

.bs-docs-footer-links li:first-child{
	padding-left:0
}

@media (min-width:768px){
	.bs-docs-footer p{
		margin-bottom:0
	}

}

.bs-docs-social{
	margin-bottom:20px;
	text-align:center
}

.bs-docs-social-buttons{
	display:inline-block;
	padding-left:0;
	margin-bottom:0;
	list-style:none
}

.bs-docs-social-buttons li{
	display:inline-block;
	padding:5px 8px;
	line-height:1
}

.bs-docs-social-buttons .twitter-follow-button{
	width:225px!important
}

.bs-docs-social-buttons .twitter-share-button{
	width:98px!important
}

.github-btn{
	overflow:hidden;
	border:0
}

.bs-docs-header,.bs-docs-masthead{
	position:relative;
	padding:30px 15px;
	color:#cdbfe3;
	text-align:center;
	text-shadow:0 1px 0 rgba(0,0,0,.1);
	background-color:#6f5499;
	background-image:-webkit-gradient(linear,left top,left bottom,from(#563d7c),to(#6f5499));
	background-image:-webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image:-o-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image:linear-gradient(to bottom,#563d7c 0,#6f5499 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
	background-repeat:repeat-x
}

.bs-docs-masthead .bs-docs-booticon{
	margin:0 auto 30px
}

.bs-docs-masthead h1{
	font-weight:300;
	line-height:1;
	color:#fff
}

.bs-docs-masthead .lead{
	margin:0 auto 30px;
	font-size:20px;
	color:#fff
}

.bs-docs-masthead .version{
	margin-top:-15px;
	margin-bottom:30px;
	color:#9783b9
}

.bs-docs-masthead .btn{
	width:100%;
	padding:15px 30px;
	font-size:20px
}

@media (min-width:480px){
	.bs-docs-masthead .btn{
		width:auto
	}

}

@media (min-width:768px){
	.bs-docs-masthead{
		padding:80px 0
	}

	.bs-docs-masthead h1{
		font-size:60px
	}

	.bs-docs-masthead .lead{
		font-size:24px
	}

}

@media (min-width:992px){
	.bs-docs-masthead .lead{
		width:80%;
		font-size:30px
	}

}

.bs-docs-header{
	margin-bottom:40px;
	font-size:20px
}

.bs-docs-header h1{
	margin-top:0;
	color:#fff
}

.bs-docs-header p{
	margin-bottom:0;
	font-weight:300;
	line-height:1.4
}

.bs-docs-header .container{
	position:relative
}

@media (min-width:768px){
	.bs-docs-header{
		padding-top:60px;
		padding-bottom:60px;
		font-size:24px;
		text-align:left
	}

	.bs-docs-header h1{
		font-size:60px;
		line-height:1
	}

}

@media (min-width:992px){
	.bs-docs-header h1,.bs-docs-header p{
		margin-right:380px
	}

}

.carbonad{
	width:auto!important;
	height:auto!important;
	padding:20px!important;
	margin:30px -30px -31px!important;
	overflow:hidden;
	font-size:13px!important;
	line-height:16px!important;
	text-align:left;
	background:0 0!important;
	border:solid #866ab3!important;
	border-width:1px 0!important
}

.carbonad-img{
	margin:0!important
}

.carbonad-tag,.carbonad-text{
	display:block!important;
	float:none!important;
	width:auto!important;
	height:auto!important;
	margin-left:145px!important;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important
}

.carbonad-text{
	padding-top:0!important
}

.carbonad-tag{
	color:inherit!important;
	text-align:left!important
}

.carbonad-tag a,.carbonad-text a{
	color:#fff!important
}

.carbonad #azcarbon>img{
	display:none
}

@media (min-width:480px){
	.carbonad{
		width:330px!important;
		margin:20px auto!important;
		border-width:1px!important;
		border-radius:4px
	}

	.bs-docs-masthead .carbonad{
		margin:50px auto 0!important
	}

}

@media (min-width:768px){
	.carbonad{
		margin-right:0!important;
		margin-left:0!important
	}

}

@media (min-width:992px){
	.carbonad{
		position:absolute;
		top:0;
		right:15px;
		width:330px!important;
		padding:15px!important;
		margin:0!important
	}

	.bs-docs-masthead .carbonad{
		position:static
	}

}

.bs-docs-featurette{
	padding-top:40px;
	padding-bottom:40px;
	font-size:16px;
	line-height:1.5;
	color:#555;
	text-align:center;
	background-color:#fff;
	border-bottom:1px solid #e5e5e5
}

.bs-docs-featurette+.bs-docs-footer{
	margin-top:0;
	border-top:0
}

.bs-docs-featurette-title{
	margin-bottom:5px;
	font-size:30px;
	font-weight:400;
	color:#333
}

.half-rule{
	width:100px;
	margin:40px auto
}

.bs-docs-featurette h3{
	margin-bottom:5px;
	font-weight:400;
	color:#333
}

.bs-docs-featurette-img{
	display:block;
	margin-bottom:20px;
	color:#333
}

.bs-docs-featurette-img:hover{
	color:#337ab7;
	text-decoration:none
}

.bs-docs-featurette-img img{
	display:block;
	margin-bottom:15px
}

@media (min-width:480px){
	.bs-docs-featurette .img-responsive{
		margin-top:30px
	}

}

@media (min-width:768px){
	.bs-docs-featurette{
		padding-top:100px;
		padding-bottom:100px
	}

	.bs-docs-featurette-title{
		font-size:40px
	}

	.bs-docs-featurette .lead{
		max-width:80%;
		margin-right:auto;
		margin-left:auto
	}

	.bs-docs-featurette .img-responsive{
		margin-top:0
	}

}

.bs-docs-featured-sites{
	margin-right:-1px;
	margin-left:-1px
}

.bs-docs-featured-sites .col-xs-6{
	padding:1px
}

.bs-docs-featured-sites .img-responsive{
	margin-top:0
}

@media (min-width:768px){
	.bs-docs-featured-sites .col-sm-3:first-child img{
		border-top-left-radius:4px;
		border-bottom-left-radius:4px
	}

	.bs-docs-featured-sites .col-sm-3:last-child img{
		border-top-right-radius:4px;
		border-bottom-right-radius:4px
	}

}

.bs-examples .thumbnail{
	margin-bottom:10px
}

.bs-examples h4{
	margin-bottom:5px
}

.bs-examples p{
	margin-bottom:20px
}

@media (max-width:480px){
	.bs-examples{
		margin-right:-10px;
		margin-left:-10px
	}

	.bs-examples>[class^=col-]{
		padding-right:10px;
		padding-left:10px
	}

}

.bs-docs-sidebar.affix{
	position:static
}

@media (min-width:768px){
	.bs-docs-sidebar{
		padding-left:20px
	}

}

.bs-docs-sidenav{
	margin-top:20px;
	margin-bottom:20px
}

.bs-docs-sidebar .nav>li>a{
	display:block;
	padding:4px 20px;
	font-size:13px;
	font-weight:500;
	color:#767676
}

.bs-docs-sidebar .nav>li>a:focus,.bs-docs-sidebar .nav>li>a:hover{
	padding-left:19px;
	color:#563d7c;
	text-decoration:none;
	background-color:transparent;
	border-left:1px solid #563d7c
}

.bs-docs-sidebar .nav>.active:focus>a,.bs-docs-sidebar .nav>.active:hover>a,.bs-docs-sidebar .nav>.active>a{
	padding-left:18px;
	font-weight:700;
	color:#563d7c;
	background-color:transparent;
	border-left:2px solid #563d7c
}

.bs-docs-sidebar .nav .nav{
	display:none;
	padding-bottom:10px
}

.bs-docs-sidebar .nav .nav>li>a{
	padding-top:1px;
	padding-bottom:1px;
	padding-left:30px;
	font-size:12px;
	font-weight:400
}

.bs-docs-sidebar .nav .nav>li>a:focus,.bs-docs-sidebar .nav .nav>li>a:hover{
	padding-left:29px
}

.bs-docs-sidebar .nav .nav>.active:focus>a,.bs-docs-sidebar .nav .nav>.active:hover>a,.bs-docs-sidebar .nav .nav>.active>a{
	padding-left:28px;
	font-weight:500
}

.back-to-top,.bs-docs-theme-toggle{
	display:none;
	padding:4px 10px;
	margin-top:10px;
	margin-left:10px;
	font-size:12px;
	font-weight:500;
	color:#999
}

.back-to-top:hover,.bs-docs-theme-toggle:hover{
	color:#563d7c;
	text-decoration:none
}

.bs-docs-theme-toggle{
	margin-top:0
}

@media (min-width:768px){
	.back-to-top,.bs-docs-theme-toggle{
		display:block
	}

}

@media (min-width:992px){
	.bs-docs-sidebar .nav>.active>ul{
		display:block
	}

	.bs-docs-sidebar.affix,.bs-docs-sidebar.affix-bottom{
		width:213px
	}

	.bs-docs-sidebar.affix{
		position:fixed;
		top:20px
	}

	.bs-docs-sidebar.affix-bottom{
		position:absolute
	}

	.bs-docs-sidebar.affix .bs-docs-sidenav,.bs-docs-sidebar.affix-bottom .bs-docs-sidenav{
		margin-top:0;
		margin-bottom:0
	}

}

@media (min-width:1200px){
	.bs-docs-sidebar.affix,.bs-docs-sidebar.affix-bottom{
		width:263px
	}

}

.bs-docs-section{
	margin-bottom:60px
}

.bs-docs-section:last-child{
	margin-bottom:0
}

h1[id]{
	padding-top:20px;
	margin-top:0
}

.bs-callout{
	padding:20px;
	margin:20px 0;
	border:1px solid #eee;
	border-left-width:5px;
	border-radius:3px
}

.bs-callout h4{
	margin-top:0;
	margin-bottom:5px
}

.bs-callout p:last-child{
	margin-bottom:0
}

.bs-callout code{
	border-radius:3px
}

.bs-callout+.bs-callout{
	margin-top:-5px
}

.bs-callout-danger{
	border-left-color:#ce4844
}

.bs-callout-danger h4{
	color:#ce4844
}

.bs-callout-warning{
	border-left-color:#aa6708
}

.bs-callout-warning h4{
	color:#aa6708
}

.bs-callout-info{
	border-left-color:#1b809e
}

.bs-callout-info h4{
	color:#1b809e
}

.color-swatches{
	margin:0 -5px;
	overflow:hidden
}

.color-swatch{
	float:left;
	width:60px;
	height:60px;
	margin:0 5px;
	border-radius:3px
}

@media (min-width:768px){
	.color-swatch{
		width:100px;
		height:100px
	}

}

.color-swatches .gray-darker{
	background-color:#222
}

.color-swatches .gray-dark{
	background-color:#333
}

.color-swatches .gray{
	background-color:#555
}

.color-swatches .gray-light{
	background-color:#999
}

.color-swatches .gray-lighter{
	background-color:#eee
}

.color-swatches .brand-primary{
	background-color:#337ab7
}

.color-swatches .brand-success{
	background-color:#5cb85c
}

.color-swatches .brand-warning{
	background-color:#f0ad4e
}

.color-swatches .brand-danger{
	background-color:#d9534f
}

.color-swatches .brand-info{
	background-color:#5bc0de
}

.color-swatches .bs-purple{
	background-color:#563d7c
}

.color-swatches .bs-purple-light{
	background-color:#c7bfd3
}

.color-swatches .bs-purple-lighter{
	background-color:#e5e1ea
}

.color-swatches .bs-gray{
	background-color:#f9f9f9
}

.bs-team .team-member{
	line-height:32px;
	color:#555
}

.bs-team .team-member:hover{
	color:#333;
	text-decoration:none
}

.bs-team .github-btn{
	float:right;
	width:180px;
	height:20px;
	margin-top:6px
}

.bs-team img{
	float:left;
	width:32px;
	margin-right:10px;
	border-radius:4px
}

.bs-docs-browser-bugs td p{
	margin-bottom:0
}

.bs-docs-browser-bugs th:first-child{
	width:18%
}

.show-grid{
	margin-bottom:15px
}

.show-grid [class^=col-]{
	padding-top:10px;
	padding-bottom:10px;
	background-color:#eee;
	background-color:rgba(86,61,124,.15);
	border:1px solid #ddd;
	border:1px solid rgba(86,61,124,.2)
}

.bs-example{
	position:relative;
	padding:45px 15px 15px;
	margin:0 -15px 15px;
	border-color:#e5e5e5 #eee #eee;
	border-style:solid;
	border-width:1px 0;
	-webkit-box-shadow:inset 0 3px 6px rgba(0,0,0,.05);
	box-shadow:inset 0 3px 6px rgba(0,0,0,.05)
}

.bs-example:after{
	position:absolute;
	top:15px;
	left:15px;
	font-size:12px;
	font-weight:700;
	color:#959595;
	text-transform:uppercase;
	letter-spacing:1px;
	content:"Example"
}

.bs-example-padded-bottom{
	padding-bottom:24px
}

.bs-example+.highlight,.bs-example+.zero-clipboard+.highlight{
	margin:-15px -15px 15px;
	border-width:0 0 1px;
	border-radius:0
}

@media (min-width:768px){
	.bs-example{
		margin-right:0;
		margin-left:0;
		background-color:#fff;
		border-color:#ddd;
		border-width:1px;
		border-radius:4px 4px 0 0;
		-webkit-box-shadow:none;
		box-shadow:none
	}

	.bs-example+.highlight,.bs-example+.zero-clipboard+.highlight{
		margin-top:-16px;
		margin-right:0;
		margin-left:0;
		border-width:1px;
		border-bottom-right-radius:4px;
		border-bottom-left-radius:4px
	}

	.bs-example-standalone{
		border-radius:4px
	}

}

.bs-example .container{
	width:auto
}

.bs-example>.alert:last-child,.bs-example>.form-control:last-child,.bs-example>.jumbotron:last-child,.bs-example>.list-group:last-child,.bs-example>.navbar:last-child,.bs-example>.panel:last-child,.bs-example>.progress:last-child,.bs-example>.table-responsive:last-child>.table,.bs-example>.table:last-child,.bs-example>.well:last-child,.bs-example>blockquote:last-child,.bs-example>ol:last-child,.bs-example>p:last-child,.bs-example>ul:last-child{
	margin-bottom:0
}

.bs-example>p>.close{
	float:none
}

.bs-example-type .table .type-info{
	color:#767676;
	vertical-align:middle
}

.bs-example-type .table td{
	padding:15px 0;
	border-color:#eee
}

.bs-example-type .table tr:first-child td{
	border-top:0
}

.bs-example-type h1,.bs-example-type h2,.bs-example-type h3,.bs-example-type h4,.bs-example-type h5,.bs-example-type h6{
	margin:0
}

.bs-example-bg-classes p{
	padding:15px
}

.bs-example>.img-circle,.bs-example>.img-rounded,.bs-example>.img-thumbnail{
	margin:5px
}

.bs-example>.table-responsive>.table{
	background-color:#fff
}

.bs-example>.btn,.bs-example>.btn-group{
	margin-top:5px;
	margin-bottom:5px
}

.bs-example>.btn-toolbar+.btn-toolbar{
	margin-top:10px
}

.bs-example-control-sizing input[type=text]+input[type=text],.bs-example-control-sizing select{
	margin-top:10px
}

.bs-example-form .input-group{
	margin-bottom:10px
}

.bs-example>textarea.form-control{
	resize:vertical
}

.bs-example>.list-group{
	max-width:400px
}

.bs-example .navbar:last-child{
	margin-bottom:0
}

.bs-navbar-bottom-example,.bs-navbar-top-example{
	z-index:1;
	padding:0;
	overflow:hidden
}

.bs-navbar-bottom-example .navbar-header,.bs-navbar-top-example .navbar-header{
	margin-left:0
}

.bs-navbar-bottom-example .navbar-fixed-bottom,.bs-navbar-top-example .navbar-fixed-top{
	position:relative;
	margin-right:0;
	margin-left:0
}

.bs-navbar-top-example{
	padding-bottom:45px
}

.bs-navbar-top-example:after{
	top:auto;
	bottom:15px
}

.bs-navbar-top-example .navbar-fixed-top{
	top:-1px
}

.bs-navbar-bottom-example{
	padding-top:45px
}

.bs-navbar-bottom-example .navbar-fixed-bottom{
	bottom:-1px
}

.bs-navbar-bottom-example .navbar{
	margin-bottom:0
}

@media (min-width:768px){
	.bs-navbar-bottom-example .navbar-fixed-bottom,.bs-navbar-top-example .navbar-fixed-top{
		position:absolute
	}

}

.bs-example .pagination{
	margin-top:10px;
	margin-bottom:10px
}

.bs-example>.pager{
	margin-top:0
}

.bs-example-modal{
	background-color:#f5f5f5
}

.bs-example-modal .modal{
	position:relative;
	top:auto;
	right:auto;
	bottom:auto;
	left:auto;
	z-index:1;
	display:block
}

.bs-example-modal .modal-dialog{
	left:auto;
	margin-right:auto;
	margin-left:auto
}

.bs-example>.dropdown>.dropdown-toggle{
	float:left
}

.bs-example>.dropdown>.dropdown-menu{
	position:static;
	display:block;
	margin-bottom:5px;
	clear:left
}

.bs-example-tabs .nav-tabs{
	margin-bottom:15px
}

.bs-example-tooltips{
	text-align:center
}

.bs-example-tooltips>.btn{
	margin-top:5px;
	margin-bottom:5px
}

.bs-example-tooltip .tooltip{
	position:relative;
	display:inline-block;
	margin:10px 20px;
	opacity:1
}

.bs-example-popover{
	padding-bottom:24px;
	background-color:#f9f9f9
}

.bs-example-popover .popover{
	position:relative;
	display:block;
	float:left;
	width:260px;
	margin:20px
}

.scrollspy-example{
	position:relative;
	height:200px;
	margin-top:10px;
	overflow:auto
}

.bs-example>.nav-pills-stacked-example{
	max-width:300px
}

#collapseExample .well{
	margin-bottom:0
}

.bs-events-table>tbody>tr>td:first-child,.bs-events-table>thead>tr>th:first-child{
	white-space:nowrap
}

.bs-events-table>thead>tr>th:first-child{
	width:150px
}

.js-options-table>thead>tr>th:nth-child(1),.js-options-table>thead>tr>th:nth-child(2){
	width:100px
}

.js-options-table>thead>tr>th:nth-child(3){
	width:50px
}

.highlight{
	padding:9px 14px;
	margin-bottom:14px;
	background-color:#f7f7f9;
	border:1px solid #e1e1e8;
	border-radius:4px
}

.highlight pre{
	padding:0;
	margin-top:0;
	margin-bottom:0;
	word-break:normal;
	white-space:nowrap;
	background-color:transparent;
	border:0
}

.highlight pre code{
	font-size:inherit;
	color:#333
}

.highlight pre code:first-child{
	display:inline-block;
	padding-right:45px
}

.table-responsive .highlight pre{
	white-space:normal
}

.bs-table th small,.responsive-utilities th small{
	display:block;
	font-weight:400;
	color:#999
}

.responsive-utilities tbody th{
	font-weight:400
}

.responsive-utilities td{
	text-align:center
}

.responsive-utilities td.is-visible{
	color:#468847;
	background-color:#dff0d8!important
}

.responsive-utilities td.is-hidden{
	color:#ccc;
	background-color:#f9f9f9!important
}

.responsive-utilities-test{
	margin-top:5px
}

.responsive-utilities-test .col-xs-6{
	margin-bottom:10px
}

.responsive-utilities-test span{
	display:block;
	padding:15px 10px;
	font-size:14px;
	font-weight:700;
	line-height:1.1;
	text-align:center;
	border-radius:4px
}

.hidden-on .col-xs-6 .hidden-lg,.hidden-on .col-xs-6 .hidden-md,.hidden-on .col-xs-6 .hidden-sm,.hidden-on .col-xs-6 .hidden-xs,.visible-on .col-xs-6 .hidden-lg,.visible-on .col-xs-6 .hidden-md,.visible-on .col-xs-6 .hidden-sm,.visible-on .col-xs-6 .hidden-xs{
	color:#999;
	border:1px solid #ddd
}

.hidden-on .col-xs-6 .visible-lg-block,.hidden-on .col-xs-6 .visible-md-block,.hidden-on .col-xs-6 .visible-sm-block,.hidden-on .col-xs-6 .visible-xs-block,.visible-on .col-xs-6 .visible-lg-block,.visible-on .col-xs-6 .visible-md-block,.visible-on .col-xs-6 .visible-sm-block,.visible-on .col-xs-6 .visible-xs-block{
	color:#468847;
	background-color:#dff0d8;
	border:1px solid #d6e9c6
}

.bs-glyphicons{
	margin:0 -10px 20px;
	overflow:hidden
}

.bs-glyphicons-list{
	padding-left:0;
	list-style:none
}

.bs-glyphicons li{
	float:left;
	width:25%;
	height:115px;
	padding:10px;
	font-size:10px;
	line-height:1.4;
	text-align:center;
	background-color:#f9f9f9;
	border:1px solid #fff
}

.bs-glyphicons .glyphicon{
	margin-top:5px;
	margin-bottom:10px;
	font-size:24px
}

.bs-glyphicons .glyphicon-class{
	display:block;
	text-align:center;
	word-wrap:break-word
}

.bs-glyphicons li:hover{
	color:#fff;
	background-color:#563d7c
}

@media (min-width:768px){
	.bs-glyphicons{
		margin-right:0;
		margin-left:0
	}

	.bs-glyphicons li{
		width:12.5%;
		font-size:12px
	}

}

.bs-customizer .toggle{
	float:right;
	margin-top:25px
}

.bs-customizer label{
	margin-top:10px;
	font-weight:500;
	color:#555
}

.bs-customizer h2{
	padding-top:30px;
	margin-top:0;
	margin-bottom:5px
}

.bs-customizer h3{
	margin-bottom:0
}

.bs-customizer h4{
	margin-top:15px;
	margin-bottom:0
}

.bs-customizer .bs-callout h4{
	margin-top:0;
	margin-bottom:5px
}

.bs-customizer input[type=text]{
	font-family:Menlo,Monaco,Consolas,"Courier New",monospace;
	background-color:#fafafa
}

.bs-customizer .help-block{
	margin-bottom:5px;
	font-size:12px
}

#less-section label{
	font-weight:400
}

.bs-customize-download .btn-outline{
	padding:20px
}

.bs-customizer-alert{
	position:fixed;
	top:0;
	right:0;
	left:0;
	z-index:1030;
	padding:15px 0;
	color:#fff;
	background-color:#d9534f;
	border-bottom:1px solid #b94441;
	-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25);
	box-shadow:inset 0 1px 0 rgba(255,255,255,.25)
}

.bs-customizer-alert .close{
	margin-top:-4px;
	font-size:24px
}

.bs-customizer-alert p{
	margin-bottom:0
}

.bs-customizer-alert .glyphicon{
	margin-right:5px
}

.bs-customizer-alert pre{
	margin:10px 0 0;
	color:#fff;
	background-color:#a83c3a;
	border-color:#973634;
	-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);
	box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)
}

.bs-dropzone{
	position:relative;
	padding:20px;
	margin-bottom:20px;
	color:#777;
	text-align:center;
	border:2px dashed #eee;
	border-radius:4px
}

.bs-dropzone .import-header{
	margin-bottom:5px
}

.bs-dropzone .glyphicon-download-alt{
	font-size:40px
}

.bs-dropzone hr{
	width:100px
}

.bs-dropzone .lead{
	margin-bottom:10px;
	font-weight:400;
	color:#333
}

#import-manual-trigger{
	cursor:pointer
}

.bs-dropzone p:last-child{
	margin-bottom:0
}

.bs-brand-logos{
	display:table;
	width:100%;
	margin-bottom:15px;
	overflow:hidden;
	color:#563d7c;
	background-color:#f9f9f9;
	border-radius:4px
}

.bs-brand-item{
	padding:60px 0;
	text-align:center
}

.bs-brand-item+.bs-brand-item{
	border-top:1px solid #fff
}

.bs-brand-logos .inverse{
	color:#fff;
	background-color:#563d7c
}

.bs-brand-item h1,.bs-brand-item h3{
	margin-top:0;
	margin-bottom:0
}

.bs-brand-item .bs-docs-booticon{
	margin-right:auto;
	margin-left:auto
}

.bs-brand-item .glyphicon{
	width:30px;
	height:30px;
	margin:10px auto -10px;
	line-height:30px;
	color:#fff;
	border-radius:50%
}

.bs-brand-item .glyphicon-ok{
	background-color:#5cb85c
}

.bs-brand-item .glyphicon-remove{
	background-color:#d9534f
}

@media (min-width:768px){
	.bs-brand-item{
		display:table-cell;
		width:1%
	}

	.bs-brand-item+.bs-brand-item{
		border-top:0;
		border-left:1px solid #fff
	}

	.bs-brand-item h1{
		font-size:60px
	}

}

.zero-clipboard{
	position:relative;
	display:none
}

.btn-clipboard{
	position:absolute;
	top:0;
	right:0;
	z-index:10;
	display:block;
	padding:5px 8px;
	font-size:12px;
	color:#767676;
	cursor:pointer;
	background-color:#fff;
	border:1px solid #e1e1e8;
	border-radius:0 4px 0 4px
}

.btn-clipboard-hover{
	color:#fff;
	background-color:#563d7c;
	border-color:#563d7c
}

@media (min-width:768px){
	.zero-clipboard{
		display:block
	}

	.bs-example+.zero-clipboard .btn-clipboard{
		top:-16px;
		border-top-right-radius:0
	}

}

#focusedInput{
	border-color:#ccc;
	border-color:rgba(82,168,236,.8);
	outline:0;
	outline:thin dotted \9;
	-webkit-box-shadow:0 0 8px rgba(82,168,236,.6);
	box-shadow:0 0 8px rgba(82,168,236,.6)
}












/* ********** google fonts ************** */ 
@import url("http://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900");
@import url("http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Oswald:400,700,300");
@import url("http://fonts.googleapis.com/css?family=Lato:400,100,300,700,900");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300italic,400italic,500,500italic,700,700italic,900,900italic");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700");

/* basic css */
@import url("/Portals/_default/skins/brandoslategrey/css/Style.css");
@import url("/Portals/_default/skins/brandoslategrey/css/Slider.css");
@import url("/Portals/_default/skins/brandoslategrey/css/fancybox.css");
@import url("/Portals/_default/skins/brandoslategrey/fonts/font-awesome.css");
@import url("/Portals/_default/skins/brandoslategrey/css/portfolio.css");
@import url("/Portals/_default/skins/brandoslategrey/css/owl.carousel.css");
@import url("/Portals/_default/skins/brandoslategrey/css/Layout.css");

/* Menu css */
@import url("/Portals/_default/skins/brandoslategrey/DNNStandard/DNNStandard.css");
@import url("/Portals/_default/skins/brandoslategrey/DNNMega/dnnmega.css");
@import url("/Portals/_default/skins/brandoslategrey/TreeView/jquery.treeview.css");

/* Color css */
@import url("/Portals/_default/skins/brandoslategrey/color/slategray.css");

/* bootstrap css*/
@import url("/Portals/_default/skins/brandoslategrey/bootstrap/css/bootstrap.css");
@import url("/Portals/_default/skins/brandoslategrey/bootstrap/css/docs.min.css");

/* ********** Skin Style ************** */ html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,a,abbr,address,cite,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,fieldset,form,label,legend,table,caption,tbody,tfoot{border:0; padding:0; margin:0; }
pre .string, pre .support.value {
    font-weight: normal;
    color: #D14;
}
article,aside,figure,figure img,figcaption,hgroup,footer,header,nav,section,video,object{display:block}
a img{border:0}
figure{ position:relative;}
figure img{width:100%}
img, object, embed{ max-width: 100%;}
img { height: auto; vertical-align: top;}
ul li {
    list-style-type: none;
}
#Body{
	 padding:0; margin:0; }
html,body{
	font-family:open sans, Arial, Helvetica, sans-serif;
	margin:0px; 
	padding:0px;
	font-size:12px; 
	color:#444444;
	line-height:1.5em;
}

A, A:link, A:active, A:visited{
    -moz-transition: all 0.7s ease 0s;
	-webkit-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
    border: medium none;
    outline: medium none;
    text-decoration: none!important;
}

a:hover{
	 color:#333;
}

.Head									{ font-size:12px;font-weight:bold;color:#4a4949;}
.SubHead								{ font-size:12px;color:#4a4949;}
.SubSubHead								{ font-size:12px; color:#4a4949; }
.Normal {
	font-size: 13px;
	line-height: 1.7em;
	color: #666666;
	font-family:open sans, Arial, Helvetica, sans-serif;
	letter-spacing:0.3px;
	  -webkit-font-smoothing:antialiased;

}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5{ 
	font-size:16px; 
}
h6{ 
	font-size:14px; 
}
h1, h2, h3, h3, h4, h5, h6 {
  font-family:lato, open sans, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  
}


.headp{
	float:left;
	padding:5px;
}
.clear{  clear:both; line-height:0; font-size:0; height:0;}
.dnnpanes { clear:both;-moz-box-sizing:border-box;box-sizing:border-box; }
.clearafter {
    display: block;
}
.paneOutline {
    border: 1px dashed #ccc;
}
.paneOutline2 {
  border: 1px #777 dotted;
  color: #777;
}
.dnnCheckbox .mark {
    display: inline-block;
    background: none repeat scroll 0% 0% transparent;
}


/* ********** Buttons Style ************** */
form#Form{
	height:100%;}
.ModuleTitle_SubMenu{
	z-index:9999!important;}	
.clearafter:after{
	clear:both;
	content:".";
	height:0px;
	font-size:0px;
	visibility:hidden;
	display:block;
	}
.clearafter{
	display:inline-block;}
.clearafter{
	display:block;}
.ControlPanel .CommandButton,
.ControlPanel A.CommandButton:link,
.ControlPanel A.CommandButton:visited,
.ControlPanel A.CommandButton:active{
	font-size:100%;color:#000;text-decoration:none;font-weight:normal;}
.ControlPanel A.CommandButton:hover{
	color:#000; text-decoration: underline; font-weight:normal; }
/* ********** Control Panel Style ************** */
.megaborder { 
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
#ControlBar {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
#ControlEditPageMenu > li > a.controlBar_editPageInEditMode {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
.dnn_mact > li.actionMenuMove > ul li {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
.dnnDropDownList .selected-item a, .dnnDropDownList .selected-item a:link, .dnnDropDownList .selected-item a:visited, .dnnDropDownList .selected-item a:hover, .dnnDropDownList .selected-item a:active {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
#ControlActionMenu > li > a{
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
#ControlNav > li > a{
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}
#ControlBar li {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

.dnnForm .ui-widget-header, .dnnFormPopup .ui-widget-header {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
    border-bottom: 4px solid #292929;
    font-weight: bold;
}
.dnnActionMenuTag {
    -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
    background: -moz-linear-gradient(center top , #F3F3F3 0%, #CFCFCF 100%) repeat scroll 0 0 transparent;
    border: 1px solid #999999;
    border-radius: 3px 3px 3px 3px;
    cursor: default;
    display: block;
    font-size: 11px;
    font-weight: bold;
    height: 16px;
    line-height: 16px;
    min-width: 65px;
    padding: 5px 10px;
}
.CommandButton,
A.CommandButton:link,
A.CommandButton:visited,
A.CommandButton:active{
	font-size:100%;color:#0dc1d5;text-decoration:none;font-weight:normal;}
A.CommandButton:hover{
	  text-decoration: underline; font-weight:normal; }
	
.FileManager A,
.FileManager A:link,
.FileManager A:visited,
.FileManager A:active{
	color:#000;text-decoration: underline;}
.FileManager A:hover{
	color:#000;text-decoration:none;}



/* ********** Other Style ************** */	
#dnn_wrapper{
	min-height:100%;
	background:url("/Portals/_default/skins/brandoslategrey/images/body_bg.jpg") 50% 0px no-repeat #000000;
	position:relative;
	overflow:hidden;
	}
* html #dnn_wrapper{
	height:100%;}
	
/* ******some color style for black background ******** */
.dnnForm h2.dnnFormSectionHead a, .dnnForm h2.dnnFormSectionHead a:visited{
	color:#ccc;
}
#dnn_ctr412_dnn_ctr412_Tabs_UPPanel span.rtIn{
	color:#ccc;
}
.dnnTreeLegend h3{
	color:#353535;
}
.dnnFormItem input[type="checkbox"], .dnnFormItem input[type="radio"], .dnnFormItem input[type="file"], .dnnFormItem input[type="button"], .dnnFormItem input.rcbInput{
	color:#ccc;
}
div.actionMenu .dnn_mact {
    margin-left: -95px !important;
}

/* SIDE NAV */

.DataGrid_Item{
	font-size:11px;}
.DataGrid_AlternatingItem{
	font-size:11px;}

.DNNEmptyPane {
    height: 0;
    line-height: 0;
    font-size: 0;
	min-height:0;
}


.dnn_space{
	height:8px;
	font-size:0px;}

/* ColorEdit*/
.light_dark,
.layout_style,
.skin_headers,
.skin_menus,
.skin_submenus { display:none;}
#coloreditor_expandicon {
    background: #fff!important;
    border-radius: 0 50px 50px 0;
	box-shadow: 0px 0px 1px #aaa;
	top:180px!important;
}
#coloreditor_panel { top:150px!important;}
#coloreditor_panel div .admin-only { color: #FF0000!important; font-weight:normal; padding:10px;}
#coloreditor_panel .coloreditor_save {
    display: inline-block;
	float:none!important;
	font-weight:300!important;
}
#coloreditor_panel .coloreditor_reset {
    display: inline-block;
	float:none!important;
}
body .colorwell-selected { font-weight:300!important;}

			

/*Awesome Icon*/
.awesome-icon A, 
.awesome-icon A:link, 
.awesome-icon A:active, 
.awesome-icon A:visited { color:#222; line-height:2;}

.awesome-icon A:hover { color:#aaa;}

/*stat cont*/
 
.stat {
    text-align: center;
    color: #fff;
}
.stat .col-sm-3 { margin:20px 0;}
.milestone-counter span {
  font-size: 48px;
  font-weight: 100;
  display: block;
  line-height: 1.5;
}
.count-top{
    text-align: center;
    color: #FFF;
    font-size: 16px;
    line-height: 1.8;
    width: 80%;
    margin: 0px auto 30px;
}
.milestone-counter em {
    font-size:48px;
    margin:10px 0;
    display: block;
}
.highlight {
   color:#111;
   padding:20px 10px;
   font-weight:bold;
   display:block;
   overflow:hidden;
   margin-bottom:0;
   font-size:48px;
}
.stat i {
    color:#f7c221;
}
.milestone-details {
    font-size: 16px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
}
/* stat2*/
.stat2 { color:#fff; padding: 25px 0;}
.stat2 h2 {
    text-align: center;
    color: #FFF;
    font-weight: 700;
    font-size: 28px;
}
.stat2 .subtitle {
    text-align: center;
    padding: 20px 20%;
}
.stat2 .col-sm-3 { margin:20px 0;}

.stat2 .milestone-counter { text-align:center;}
.stat2 .milestone-details {
    font-size: 18px;
    line-height: 2em;
    text-transform: uppercase;
}
.stat2 .milestone-counter span {
    font-size: 40px;
    display: block;
    line-height: 1em;
}

.stat2 .milestone-counter em {
    font-size: 50px;
    margin: 0px 10px 0px 0px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    line-height: 130px;
    text-align: center;
}
.stat2 .milestone-counter em:hover { border:5px solid #fff; line-height:125px}

/* portfolio  */
ul.thumbnails { margin:0; padding:0; list-style:none;}
ul.thumbnails li {
    margin: 0px;
    padding: 0px;
    list-style: none outside none;
    width: 25%;
    float: left;
    position: relative;
	
}
.portfolio .nav-pills { text-align:center; margin:0 0 40px 0;}
.portfolio .nav-pills li a {
	display: inline-block;
	vertical-align: top;
	color: #fff;
	border: 1px solid #fff;
	padding: 8px 30px;
	border-radius: 50px;
	font-size: 14px;
	margin: 0 5px;
}
.portfolio .nav-pills li a:hover { color:#000;}
.portfolio .nav-pills li {
    display: inline-block;
	float:none;
	cursor:pointer;
	
}
.portfolio-features { display:none;}
.portfolio .details-cover {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
    opacity: 0.85;
	text-align:center;
	background:#000;
	display:none;
	
}
.portfolio .details-link a { color:#fff; margin:0 5px;}
.portfolio .details-link em{
	border-radius: 50%;
	padding: 10px;
	font-size: 18px;
}
.details-link a em {
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    vertical-align: top;
}
.portfolio .details-cover em {
	font-size: 20px;
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	text-align: center;
	line-height: 40px;
}

ul.thumbnails li:hover .details-cover  { display:block;}
.details-link {
    margin: 0 0 10px 0;
}
.nav > li > a:hover { background:#fff;}

/*how to use*/
.how-to-use {
  font-family: open sans;
  line-height: 2;
}

.how-to-use h3 {
  background: #eee;
  color: #333;
  padding: 0 0 0 15px;
  margin: 0 0 20px 0;
}
.how-to-use h4 { padding:20px 0 10px 0; font-weight:400;}
.how-to-use strong{
  font-size: 14px;
  padding: 0 0 10px 0;
  display: block;
}


/* top-show*/
.top-show { position:relative; margin:0 -10px;}
.top-show .col-sm-3 { padding:0 5px; margin:0 0 20px 0;}
.top-show .avatar {
    text-align: center;
    float: none;
    margin: -45px 0 0 0;
	height:90px;
}
.top-show .avatar img {
	border-radius: 50%;
	border-style:solid;
	border-color:#FFFFFF;
	box-shadow:0 0 0 4px rgba(255,255,255,1);
}
.top-show .details { border:1px solid #E4E4E4; padding:0 20px 20px;}
.top-show .details h4 { font-size:16px; font-weight:600; text-transform:capitalize;}
.top-show .showbox { 
	border:8px solid transparent; 
	-webkit-transition: border .5s;
	-moz-transition: border .5s;
	transition: border .5s;
}
.top-show .showbox:hover { border:8px solid transparent;}
.top-show .showbox:hover .avatar img { border:4px solid transparent;box-shadow:0 0 0 0 rgba(255,255,255,0); position:relative; top:-4px;}
/*Version3 testimonials */
#myTabContent { position:relative;}
.testimonials-tabs > .nav > li > a > img {
    max-width: none;
	width:100px;
	opacity: 0.7;
}
.testimonials-tabs > .nav > li > a > img:hover {opacity: 1; }
.testimonials-tabs .nav-tabs {
    margin-bottom: 15px;
    text-align: center;
    border-top: 1px solid #ccc;
	border-bottom: none;
}
.testimonials-tabs > .nav-tabs > li {
    float: none;
    display: inline-block;
    margin: 0 1%;
	padding: 30px 0px 10px 0;
}
.testimonials-tabs .tab-pane p { padding:0 0 20px 0;}
.testimonials-tabs .person-name {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.testimonials-tabs .tab-content > .tab-pane {
    display: none;
    text-align: center;
}
.quotes {
    font-family: "Times New Roman", Times, serif;
    font-size: 90px;
}
.testimonials-tabs .tab-content > .active {
    display: block;
    padding: 0px 17% 30px;
}

.quotes-top {
    position: absolute;
    top: -20px;
	left:10%;
    background: url("/Portals/_default/skins/brandoslategrey/images/quotes-top.png") no-repeat scroll 0% 0% transparent;
    width: 42px;
    height: 34px;
}
.quotes-bottom {
    position: absolute;
    right: 10%;
    bottom: 20px;
	background:url("/Portals/_default/skins/brandoslategrey/images/quotes-bottom.png") no-repeat;
    width: 42px;
    height: 34px;
}
.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus { border:none;}
.bs-example .nav-tabs > li.active > a, 
.bs-example .nav-tabs > li.active > a:hover, 
.bs-example .nav-tabs > li.active > a:focus { 
	border: 1px solid #dddddd;
	border-bottom: none;
}


.nav-tabs > li > a:hover{ border:none;}
.nav-tabs > li > a { border:none;}
.nav-tabs > li.active .tab-arrow {
    position: absolute;
    left: 50%;
    top: 0px;
    z-index: 9;
    margin: -1px 0px 0px -25px;
    background: url("/Portals/_default/skins/brandoslategrey/images/tab-arrow.jpg") no-repeat scroll 0% 0% transparent;
    width: 48px;
    height: 30px;
}



/*Responsive Layout*/
@media handheld, only screen and (max-width:1280px) {
h1 {
    font-size: 34px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 22px;
}
}
@media handheld, only screen and (max-width:1024px) {
h1 {
    font-size: 30px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 14px;
}

}
@media handheld, only screen and (max-width:900px) {

.myworks .entry-content ul li { width:49.5%;}

.blog-list .details h3 a { font-size:30px;}
}




@media handheld, only screen and (max-width:767px) {


.stat .col-sm-3 {
	width: 25%;
	float: left;
}
.stat .milestone-counter em {
	font-size: 50px;
}
.stat .milestone-counter span {
	font-size: 30px;
}
.stat2 .col-sm-3 {
	width: 50%;
	float: left;
}

.home-latestwork .col-sm-3 {
	width: 50%;
	float: left;
}
.blog-list .date {
	text-align: left;
	border-bottom: 1px dotted #ddd;
	border-right:none;
	padding: 0 30px 10px 0;
	color: #666;
	float: none;
}
.blog-list .details {
	padding: 0;
}
.blog-list .date span {
	font-size: 24px;
	margin: 0 5px 0 0;
}
.blog-list .date br { display:none;}
.count-top { font-size:14px; width:100%; line-height:1.5; margin:0;}
.news-view li {
	width: auto;
	float:none;
	min-height:140px;
	padding: 10px 0px 20px 0;
}
}
@media handheld, only screen and (max-width:600px) {

h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}
h4 {
    font-size: 15px;
}
h5 {
    font-size: 13px;
}
h6 {
    font-size: 13px;
}


}
@media handheld, only screen and (max-width:520px) {
.milestone-counter em {
	font-size: 40px;
}
.milestone-counter span {
	font-size: 20px;
}
.milestone-details {
	font-size: 20px;
	line-height: 1.5em;
}
.stat .milestone-details {
	font-size: 14px;
}
.stat .col-sm-3 {
	width: 50%;
}

.myworks .item-type-line .item-info { top:5%;}
.myworks .item-type-line .item-info p {
    line-height: 1.2;
}
.top-show .col-sm-3 {
	width: auto;
	float: none;
}
.stat2 .col-sm-3 { width:100%;}
.home-latestwork .col-sm-3 {
	width: auto;
	float: none;
	margin:20px 0;
}
.count-top { font-size:13px;}

}


@media handheld, only screen and (max-width:480px) {
h1 {
    font-size: 24px;
}
}
@media handheld, only screen and (max-width:360px) {




h1 {
    font-size: 22px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 16px;
}
h4 {
    font-size: 14px;
}



}















/*!
 *  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");
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/vtwNVMP8y9C17vLvIBNZI_Y6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/9kaD4V2pNPMMeUVBHayd7vY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/ATKpv8nLYAKUYexo8iqqrg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/kTYfCWJhlldPf5LnG4ZnHCEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/g46X4VH_KHOWAAa-HpnGPiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7iEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/0XxGQsSc1g4rdRdjJKZrNPk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nE8xhg-WlD4iG4AP-V7QxYA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nN_eC2PfU-cUGGN7U-FIfKc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLvM2QJLsjx6Keu1D2MYodo.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nNd5cRMOq5PeG3VabknWPxo.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLpX8dGXLalyu5OokvgDQcs.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPVFL0ofnRu5Y2lP-UpEUGU.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBQ_Gf4FfI8J4SYljBAylk.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDrvev4WAjW489CRDHIkJ90.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsCGXDOnx9ptx3UTSPTrfsgk.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsAZ98xO_Wnt-JIem4AuLGfs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsE1G989qbVg6RT5ly5jB8V8.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsJ84zb0nVte6liF9gGtpo1Y.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsD86pq2NkPzVgw_9lpT6RGI.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDAdhzWOYhqHvOZMRGaEyPo.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nDW5FUgIgejJvrHuLWqrSMw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nA30BZHTGu2N_DqssQcMQNQ.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPDoBG10JtAX-GAwn6iwU1Y.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nGhQuge17febRYSUkWKdLWA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBtmDLrZTTOm3p1EhiGCXc.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nEV356qNqHCUb41pS3zqMSE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nHm2hrkyco9jQ3NKMXpgOBg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/7nBxcqTeiPvFX1XVBk6VGw.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7vk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nFBvb3f1rSHBccuxwv45BuQ.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsL0XspSvAl7ZHo2ORvFbbnU.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPJ02wFZLBBkWNCvnE5Eqks.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/GdZvpAq9shJukTEvSQbePw.woff") format("woff");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7hsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nCj3Mi2hOMP9GNHlaDA9WRI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsK8NE7_Gi-Xz52ZQ_AwfA78.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nJT5GEmoOtNsejy4tIPLwv0.woff") format("woff");
}
.eds_news_Ozone {
  margin-bottom: 30px;
}
.eds_news_Ozone *,
.eds_news_Ozone *::before,
.eds_news_Ozone *::after {
  box-sizing: border-box;
}
.eds_news_Ozone h1,
.eds_news_Ozone h2,
.eds_news_Ozone h3,
.eds_news_Ozone h4,
.eds_news_Ozone h5,
.eds_news_Ozone h6,
.eds_news_Ozone th,
.eds_news_Ozone .in_article_image .image_title {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone h1, .eds_news_Ozone h2, .eds_news_Ozone h3, .eds_news_Ozone h4, .eds_news_Ozone h5, .eds_news_Ozone h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.1;
}
.eds_news_Ozone h1 {
  font-size: 36px;
}
.eds_news_Ozone h2 {
  font-size: 30px;
}
.eds_news_Ozone h3 {
  font-size: 24px;
}
.eds_news_Ozone h4 {
  font-size: 18px;
}
.eds_news_Ozone h5 {
  font-size: 14px;
}
.eds_news_Ozone h6 {
  font-size: 12px;
}
.eds_news_Ozone p {
  margin: 0 0 15px;
  padding: 0;
}
.eds_news_Ozone ul, .eds_news_Ozone ol {
  margin-left: 15px;
}
.eds_news_Ozone ul {
  list-style-type: disc;
}
.eds_news_Ozone ul ul {
  list-style-type: circle;
}
.eds_news_Ozone ul ul ul {
  list-style-type: square;
}
.eds_news_Ozone ol {
  list-style-type: decimal;
}
.eds_news_Ozone ol ol {
  list-style-type: upper-roman;
}
.eds_news_Ozone ol ol ol {
  list-style-type: lower-roman;
}
.eds_news_Ozone .eds_openModal {
  cursor: pointer;
}
.eds_news_Ozone .edn_clearFix:after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_news span, .eds_news_Ozone.eds_subCollection_news a, .eds_news_Ozone.eds_subCollection_news li, .eds_news_Ozone.eds_subCollection_news td, .eds_news_Ozone.eds_subCollection_news table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_news a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news a > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_articleSummary {
  font-size: 13px;
  line-height: 1.3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleTitle {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle {
  color: #424242;
  font-size: 16px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 5px 15px 10px 0;
  position: relative;
  border: solid 1px #c81704;
  padding: 3px;
  position: relative;
  overflow: hidden;
  line-height: 0;
  transition: all 250ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer:hover {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-indent: -99999px;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  transition: all 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 3px;
  right: 3px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink::before {
  line-height: 1;
  font-family: "FontAwesome";
  content: "\f030";
  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;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  right: 5px;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
  display: table;
  margin-top: 3px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: block;
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
  background-color: #c81704;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
  display: block;
  color: #fff;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
    display: inline;
    padding: 0 5px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
  position: relative;
  display: table-cell;
  overflow: hidden;
  text-indent: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a::after {
  position: absolute;
  content: "";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
  transition: all 0.2s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a .edn_mediaLink {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #fff;
  opacity: 0;
  border: solid 1px #fff;
  border-radius: 3px;
  padding: 5px;
  line-height: 1;
  font-size: 12px;
  z-index: 2;
  transition: opacity 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover::after,
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover .edn_mediaLink {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover > img {
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer img {
  max-width: 100%;
  height: auto;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer::before {
  content: "\f021";
  display: inline-block;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  color: #B0B0B0;
  top: 50%;
  left: 50%;
  margin: 0 0 0 -18px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions {
  line-height: 1;
  font-size: 13px;
  position: relative;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a,
.eds_news_Ozone.eds_subCollection_news .admin_action {
  display: inline-block;
  margin: 10px 5px 10px 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  box-shadow: 0 0 2px 0 #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover::before,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover::before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a::before,
.eds_news_Ozone.eds_subCollection_news .admin_action::before {
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  opacity: 0.8;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit {
  color: #f89e00;
  border-color: #e78d00;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit::before,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit::before {
  content: "\f040";
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article {
  color: #619c1c;
  border-color: #4c771d;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article::before,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article::before {
  content: "\f00c";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails {
  font-size: 12px;
  line-height: 1.2;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments::before,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -10%;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments::before {
  content: "\f0e6";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs::before {
  content: "\f06e";
}
.eds_news_Ozone.eds_subCollection_news .edn_readMoreButtonWrapper {
  margin: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .fb-comments, .eds_news_Ozone.eds_subCollection_news .fb-comments iframe[style], .eds_news_Ozone.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Ozone.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article_map {
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox {
  clear: none !important;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
  margin-left: 20px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
    margin-left: 17px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  background-color: #B9B9B9;
  cursor: pointer;
  padding: 6px 15px 5px 10px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  margin: 5px 2px;
  position: relative;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton {
    padding: 6px 8px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::after {
  content: "";
  border-left: dotted 1px #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
  font: 14px/1 "FontAwesome";
  color: #fff;
  content: "\f02f";
  vertical-align: middle;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
    padding-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
  color: #fff;
  line-height: 1.4;
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-top: 1px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton:hover {
  background-color: #a5a5a5;
}
.eds_news_Ozone.eds_subCollection_news .addthis_inline_share_toolbox,
.eds_news_Ozone.eds_subCollection_news .edNews_fbLike,
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share .edn_socialShareButton {
  font-size: 18px;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share > div {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share:hover > div {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails {
  padding: 10px;
  margin: 10px 0;
  border-top: 1px solid #cac7c7;
  border-bottom: 1px solid #cac7c7;
  box-shadow: 0 2px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
  background-color: #f8f8f8;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventRegistrationModalTrigger {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation {
  padding: 5px 0 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation::before {
  content: "\f041";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span::before {
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventLocation::before {
  content: "\f041";
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventDate::before {
  content: "\f017";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox {
  border: solid 2px #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px 15px 10px;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span {
  position: relative;
  padding: 0 0 6px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span::after {
  border-bottom: 3px solid #cd1301;
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul {
  margin: 20px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 5px 20px;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li::before {
  color: #c81704;
  content: "\f138";
  font: 13px/1.3 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li a {
  margin-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li span {
  font-style: italic;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
  margin-left: -9px;
  margin-right: -9px;
  line-height: 0;
  font-size: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
  padding: 0 9px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  line-height: 0;
  height: 175px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    display: block;
    border: none;
    padding: 0 0 6px;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li + li {
  border-left: dashed 1px #acacac;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
  max-width: 100%;
  display: block;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    float: left;
    margin: 2px 10px 5px 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
  border: 1px dashed #bfbfbf;
  background-color: #EDEDED;
  box-shadow: 0 0 0 5px #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
  color: #424344;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: solid 1px #F7F5F5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li::before {
  content: "\f016";
  font-size: 16px;
  color: #504e4e;
  line-height: 1.1;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_doc::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_docx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odt::before {
  content: "\f1c2";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xls::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xlsx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ods::before {
  content: "\f1c3";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_zip::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_rar::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_7z::before {
  content: "\f1c6";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wav::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wma::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_flac::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp3::before {
  content: "\f1c7";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_png::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_gif::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpeg::before {
  content: "\f1c5";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpeg::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp4::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xvid::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wmv::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogv::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mov::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_avi::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mkv::before {
  content: "\f1c8";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf::before {
  content: "\f1c1";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ppt::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pptx::before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odp::before {
  content: "\f1c4";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt::before {
  content: "\f0f6";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
  color: #999;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border: solid 1px #E5E5E5;
  border-radius: 4px;
  padding: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 5px 30px;
  border-bottom: solid 1px #eee;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon::before {
  content: "\f00d";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon::before {
  content: "\f046";
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr:last-child td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  display: inline-block;
  border: 1px solid #e78a04;
  background-color: #f9ab3c;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #e78a04;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding: 5px 15px 5px 40px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label::before {
  width: 25px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label {
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #c81704;
  border-radius: 5px;
  background-color: #fff;
  color: #c81704;
  overflow: hidden;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  transition: padding 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label::before {
  background-color: #dbdbdb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  color: #fff;
  font-family: "FontAwesome";
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  transition: width 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label::before {
  background-color: #619c1c;
  content: "\f00c";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label::before {
  background-color: #d61603;
  content: "\f00d";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label::before {
  background-color: #f89e00;
  content: "\f128";
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper {
  margin: 20px 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a {
  text-align: right;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  background-color: #f8f8f8;
  padding: 3px 10px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span {
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span::before {
  content: "\f09e";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity linear 400ms;
  line-height: 0;
  font-size: 0;
  z-index: 9999;
  margin-bottom: 3px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip:hover .edn_toolTipContent {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 1px transparent;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  max-width: 400px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport::after {
  content: "\f073";
  font-family: "FontAwesome";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  margin-left: 5px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:hover::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails {
  background-color: #e5e5e5;
  border: solid 1px #cac7c7;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff inset;
  padding: 15px;
  margin: 15px 0 0;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails::after {
  content: "";
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > img {
  float: left;
  margin: 0 15px 5px 0;
  background-color: #f8f8f8;
  padding: 7px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button {
  margin: 0 0 0 7px;
  vertical-align: baseline;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button::before {
  content: "\f143";
  color: #504e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .edn_connectWith {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button {
  display: inline-block;
  margin: 10px 0 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 28px;
  min-height: 28px;
  padding-left: 7px;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio {
  border: 1px solid #c81704;
  background: none #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #c81704;
  line-height: 26px;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  margin: -2px 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact::before {
  content: "\f003";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio::before {
  content: "\f007";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social {
  border: solid 1px #8d8989;
  color: #8d8989;
  line-height: 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.facebook::before {
  content: "\f09a";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.twitter::before {
  content: "\f099";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.linked_in::before {
  content: "\f0e1";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.google_plus::before {
  content: "\f0d5";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.youtube::before {
  content: "\f167";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.instagram::before {
  content: "\f16d";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.website::before {
  content: "\f0c1";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails + [class*=article_list_wrapper] {
  margin-top: 25px;
}
.eds_news_Ozone .edn_module_title {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
  font-size: 24px;
  line-height: 1.1;
}
.eds_news_Ozone .fa {
  font-family: "FontAwesome" !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-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_news_Ozone.eds_subCollection_calendar {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar span, .eds_news_Ozone.eds_subCollection_calendar a, .eds_news_Ozone.eds_subCollection_calendar li, .eds_news_Ozone.eds_subCollection_calendar td, .eds_news_Ozone.eds_subCollection_calendar table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_calendar a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_calendar a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  width: 50%;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_subCollection_calendar .fc {
  border: solid 1px #c81704 !important;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: solid 1px #c81704;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  font: normal normal 22px/1 "Roboto Condensed", sans-serif;
  color: #c81704;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #504e4e;
  border-color: #c81704;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month::before {
  content: "\f03a";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export::before {
  content: "\f133";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_rss::before, .eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.events_rss::before {
  content: "\f09e";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #c81704;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #c81704;
  content: "\f105";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before {
  content: "\f104";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc-widget-header {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #c81704;
  padding: 14px 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc,
.eds_news_Ozone.eds_subCollection_calendar .fc th,
.eds_news_Ozone.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  color: #fff !important;
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #c81704;
  font-size: 11px;
  color: #504e4e;
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #504e4e;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #c81704;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  transform: scale(1.2);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.selected > a,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > a:hover {
    transform: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.today::after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  margin-top: 25px;
  border-top: solid 1px #dcdcdc;
  padding-top: 25px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div {
  border-bottom: solid 1px #ddd;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse::before {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div.edn_archiveByYear a.edn_archiveLink {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
  color: #504e4e;
  text-decoration: none;
  display: block;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink {
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink {
  font-weight: bold;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse {
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse::before {
  content: "\f07b";
  display: inline-block;
  margin-right: 7px;
  font-family: "FontAwesome";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse.collapse::before {
  content: "\f07c";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li ul li > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list > ul > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events {
  margin-top: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  float: right;
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .rss::before {
  content: "\f143";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .export::before {
  content: "\f08e";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li::before {
  content: "\f133";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  color: #c81704;
  font-family: "FontAwesome";
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  color: #504e4e;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #c81704;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
}

.eds_news_Ozone.eds_subCollection_news .child_categories {
  margin-bottom: 40px;
}
.eds_news_Ozone.eds_subCollection_news .edn_categoryInfo {
  margin: 20px 0 30px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory {
  margin: 7px;
  padding: 5px;
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  background-color: #e5e5e5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption > span {
  display: inline-block;
  padding: 5px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  color: #504e4e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory:hover > img {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #747474;
  text-decoration: none;
  display: inline-block;
  border-bottom: solid 0 transparent;
  margin-bottom: 2px;
  transition: border-color 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:hover {
  border-bottom-color: #c81704;
  border-bottom-width: 2px;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:last-child {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i {
  display: none;
  margin: 0 7px;
  font-family: "FontAwesome";
  font-size: 17px;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i + a + i {
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_categoryMenu {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu div, .eds_news_Ozone.eds_subCollection_categoryMenu span, .eds_news_Ozone.eds_subCollection_categoryMenu a, .eds_news_Ozone.eds_subCollection_categoryMenu li {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_categoryMenu ul {
  margin: 0 !important;
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div {
  clear: both;
  overflow: hidden;
  padding: 3px 0 3px 90px;
  border-bottom: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_articlecount, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_rss, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_image, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.expand_collapse {
  display: inline-block;
  vertical-align: top;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  transform: scale(1.8);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  cursor: pointer;
  height: auto !important;
  visibility: visible !important;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse::before {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 14px;
  margin: 0 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse::before {
  content: "\f106";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss::before {
  content: "\f143";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
  color: #504e4e;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image > img {
  border: solid 1px #c81704;
  padding: 2px;
  transition: border 200ms linear;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover > img {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 15px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 45px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 60px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 75px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #000;
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper {
  height: 50px;
  overflow: auto;
  padding: 20px 0;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div {
  padding: 5px 7px 5px 0;
  margin-right: 7px;
  border-bottom: none;
  border-right: solid 1px #ddd;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div .expand_collapse::before {
  content: "\f105";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  transform: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .edn_category {
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .hasChild ul .edn_category {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li ul {
  display: inline-block !important;
  height: auto !important;
  overflow: visible !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span {
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  text-align: center;
  border: solid 1px #eee;
  background-color: #F7F7F7;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span::before {
  font-family: "FontAwesome";
  color: #A9A6A6;
  font-size: 16px;
  line-height: 27px;
  transition: color 200ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span:hover::before {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft::before {
  content: "\f053";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight::before {
  content: "\f054";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_leftOffset .edn_scrollLeft {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_rightOffset .edn_scrollRight {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div {
  display: flex;
  align-items: center;
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div > .edn_module_title {
  margin: 0;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div > .expand_collapse {
  margin-left: auto;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > div,
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul {
  margin-top: 5px !important;
  padding: 8px !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edNews_categoryDropdown .edn_category_menu_wrapper > li > ul ul {
  display: block !important;
}

.eds_news_Ozone.eds_subCollection_news .article_comments {
  margin: 15px 0 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment + .comment_list {
  padding-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list {
  margin-bottom: 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  padding-left: 50px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div {
  float: left;
  margin: 0 20px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div img {
  border: 1px solid #504e4e;
  border-radius: 50%;
  padding: 3px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > div {
  color: #424242;
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > time {
  color: #999;
  font-size: 12px;
  display: block;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions {
  text-align: right;
  clear: both;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a {
  display: inline-block;
  border: 1px solid #909090;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  background-color: #bdbdbd;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover {
  background-color: #909090;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete {
  background-color: #d94e49;
  border-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover {
  background-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment.level {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .right_side {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes {
  float: left;
  width: 40px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div {
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > input,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > span {
  display: block;
  margin: 0 auto;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list + .add_comment {
  margin-top: 25px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
  padding: 10px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.left {
  font-family: "Roboto Condensed", sans-serif;
  width: 15%;
  color: #424242;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.right {
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text],
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text]:focus,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type=text] {
  max-width: 300px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea {
  max-width: 370px;
  font-size: 13px;
  min-height: 110px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper {
  border-top: 1px solid #d7d7d7;
  padding-top: 25px;
  clear: both;
  margin-top: 40px;
  margin: 40px auto 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_numberOfComments {
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 20px 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer {
  font-size: 0;
  line-height: 0;
  margin-bottom: 30px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:first-child, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_userAvatar {
  float: left;
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > span {
  font-family: "PT Sans", sans-serif;
  color: #000;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > div {
  margin: 10px 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails .edNews_commentText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions {
  text-align: right;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span {
  cursor: pointer;
  color: #8b8b8b;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  padding: 10px 20px;
  border-radius: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span:hover {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span + span {
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editComment, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentCancelTrigger {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__deleteComment {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span.edNews__editCommentSaveTrigger {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > .edNews__childCommentsContainer {
  margin: 0 0 0 50px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__commentContent {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews_commentActions.main {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_comment {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage {
  box-sizing: border-box;
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  color: #ac171e;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 16px;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: Arial;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;
  font-family: "PT Sans", sans-serif;
  color: #504e4e;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #c81704;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage > a,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  font-family: "PT Sans", sans-serif;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
  font-family: "PT Sans", sans-serif;
  box-sizing: border-box;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text] {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type=text]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {
  font-family: "PT Sans", sans-serif;
  background-color: #c81704;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 16px;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: "FontAwesome";
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "\f007";
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div {
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div img {
  width: 65px;
  height: 65px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper textarea {
  float: left;
  height: 65px;
  margin-top: -65px;
  padding-left: 75px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__replyingToComment .edNews_addComment .edNews__replyingToMessage {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment::after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment::after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment::after {
  position: absolute;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/comments/loadingBigger.gif") center center no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__itemCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger {
  margin: 30px auto;
  text-align: center;
  border: solid 1px #d7d7d7;
  border-left: none;
  border-right: none;
  color: #8b8b8b;
  font-family: "PT Sans", sans-serif;
  line-height: 1;
  font-size: 12px;
  display: block;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 200ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews_actionIcon {
  color: #bababa;
  font-size: 20px;
  margin-right: 10px;
  transition: color 300ms;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger {
  display: inline-block;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger > * {
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger + .edNews__commentVoting_trigger {
  margin-left: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger:hover .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_news .edNews_votes .edNews__commentVoting_trigger.edNews__commentVoting_voted .edNews_actionIcon {
  color: #8de171;
}
.eds_news_Ozone .edNews__editCommentContainer {
  border: dashed 1px #ddd;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.eds_news_Ozone .edNews__editCommentContent {
  font-family: "PT Sans", sans-serif;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: none;
  padding: 8px;
  width: 100%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
.eds_news_Ozone .edNews__editCommentContent:focus, .eds_news_Ozone .edNews__editCommentContent:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone .edNews__editCommentContent:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone .edn_recentCommentsHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.eds_news_Ozone .edn_recentCommentsHeader > h4 {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before, .eds_news_Ozone .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone .edn__recentCommentsListContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  transition: opacity 500ms;
}
.eds_news_Ozone .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto Condensed", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #c81704;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 "FontAwesome";
  color: #2c2c2c;
  content: "\f0da";
  margin-right: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment {
  overflow: hidden;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment .edn_readMoreButton {
  float: right;
}
.eds_news_Ozone .edNews_latestCommentsOnForum .num_of_comment > p {
  margin: 2px 0 0;
  padding: 0;
}

.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_title {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: -1px 0 -1px -1px;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_itemsHidden {
  margin-right: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: #888;
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  transition: color 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  margin: 0;
  padding: 0;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: -1px;
  background: #fff;
  z-index: 10000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  display: block;
  margin: 0;
  padding: 4px 10px 3px;
  border: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e4e4e4;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  width: 30px;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger::after {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  display: block;
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "\f067";
  color: #242424;
  display: block;
  text-align: center;
  position: absolute;
  top: 7px;
  transition: color 0.1s ease;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header {
  background: transparent;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
  padding-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  transition: opacity 500ms ease 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before, .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "\f021";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
  float: left;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
    width: auto;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide article {
  width: auto !important;
  float: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
  float: right;
  width: 48%;
  margin-left: 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide article {
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide.edn_specialFirstArticle article:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div {
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails {
  font: 10px/1.3 "Roboto Condensed", sans-serif;
  color: #808080;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a {
  color: #1b1b1b;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 {
  padding: 0;
  border: 0;
  margin: 10px 0;
  font: 18px/1.3 "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "Roboto Condensed", sans-serif;
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font: 13px/1.3 "PT Sans", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a img {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  font: 10px/1.3 "PT Sans", sans-serif, sans-serif;
  opacity: 0.9;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category {
  margin: 0 0 0 7px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a {
  display: inline-block;
  background-color: #c81704;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 20px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a {
  display: inline-block;
  color: #fff;
  background: #828282;
  padding: 4px 15px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a::before {
  content: "\f075";
  color: #fff;
  font-family: "FontAwesome";
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.2em;
  vertical-align: top;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles {
  display: flex;
  flex-flow: row wrap;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
  width: 48%;
  margin: 0 0 15px 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
    float: none;
    margin: 0 0 35px;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article .edn_metaDetails {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 {
  margin: 5px 0 7px;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article:nth-child(2n+1) {
  margin-left: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
  width: 48%;
  padding: 13px 0;
  float: left;
  margin-left: 4%;
  border-top: 1px solid #dfdfdf;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article > a {
  float: left;
  margin: 0 14px 0 0;
  border: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList.edn_biggerPadding article {
  padding: 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article {
  padding: 13px 0;
  border-top: 1px solid #dfdfdf;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article:first-child {
  border-top: none;
  padding-top: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper > article {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_noContent,
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_contentError {
  font: 16px/1.3 "PT Sans", sans-serif, sans-serif;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle {
  margin-bottom: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle figure > a img {
  width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper {
  border: solid 1px #e4e4e4;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
  float: right;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
    width: auto !important;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title {
  background: none transparent;
  display: block;
  border-bottom: solid 1px #c81704;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #c81704;
  padding: 5px 25px 4px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title + .edn_verticalListWrapper {
  margin-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
  float: left;
  width: auto;
  border: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
    float: none;
    width: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
  display: block;
  border: solid 1px #e4e4e4;
  border-left-style: none;
  border-top-style: none;
  padding: 8px 25px;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 3px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none;
  position: absolute;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_active {
  border-right-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li:first-child {
  border-top-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: block;
  white-space: normal;
  float: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
    display: inline-block;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  border-right: solid 1px #e4e4e4;
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger {
  position: static;
  padding: 9px 25px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::after {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::before {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "\f067";
  color: #242424;
  transition: color 0.1s ease;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList {
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList > li {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper {
  overflow: hidden;
  padding: 20px 20px 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
  float: left;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
    float: none;
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_articleTitle {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_metaDetails {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper {
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination > span {
  margin: 1px 1px 1px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock article {
  opacity: 0;
  max-width: 100%;
  transition: opacity 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a > span {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child h2 > a {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) h2 > a {
  opacity: 0.8;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) h2 > a {
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) h2 > a {
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) h2 > a {
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) h2 > a {
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_articleImage {
  transition: all 400ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_contentBlock figure > a:hover .edn_articleImage,
.eds_news_Ozone.eds_subCollection_contentBlock h2 > a:hover .edn_articleImage {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__contentBlock_itemList {
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__articleListWrapper {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article h2 > a {
  opacity: 1 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady.edn__contentBlock_loading .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredNextPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredPreviousPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .eds_noContent {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .eds_contentError {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: none;
  margin: 0 auto;
  padding: 0 50px;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_title + .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: right;
  padding: 0;
  margin-right: 30px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle + .edn_articleSubTitle {
  margin-top: -15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleSubTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a::before {
  content: "\f007";
  font-family: "FontAwesome";
  color: #6e6e6e;
  font-size: 18px;
  padding-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
  top: 3px;
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
  border-top: dashed 1px #a8a4a4;
  border-bottom: dashed 1px #a8a4a4;
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #c81704;
  font-size: 12px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #c81704;
  border: solid 1px #c81704;
  text-decoration: none;
  margin: 2px 3px;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .at-resp-share-element .at-share-btn {
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image {
  background-color: #e5e5e5;
  border: solid 1px #d1d2d3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a {
  position: relative;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a::before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  content: "";
  border: solid 2px transparent;
  background-color: transparent;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:hover::before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_title {
  margin: 5px 0 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_description {
  color: #666161;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  clear: both;
  margin: 15px 0;
  padding: 1px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  border-bottom: solid 1px #c81704;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover {
  background-color: #EAEAEA;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover td {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding: 7px 10px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 3px 10px;
  border: none;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}

.eds_news_Ozone.eds_subCollection_news .edn_article {
  margin-bottom: 35px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_metaDetails {
  margin: 10px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary {
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
  font-size: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 1;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > div .admin_action {
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
  font-size: 15px;
  color: #504e4e;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > div .admin_action {
  position: relative;
  z-index: 3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 2;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
  font-size: 15px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
  overflow: hidden;
  position: relative;
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background-color: rgba(200, 24, 5, 0.2);
  transition: opacity 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer > img {
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer::after {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer > img {
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
  margin-bottom: 3px;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
  margin-bottom: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
  margin: 3px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 {
  margin: 3px 0;
  overflow: hidden;
  padding-bottom: 2px;
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
  font-size: 13px;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
  margin: 0;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments::before {
  font-size: 14px;
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  content: "\f017";
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions > a {
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet {
  float: left;
  padding: 0 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet::before {
  font-family: "FontAwesome";
  color: #c81704;
  font-size: 10px;
  line-height: 0;
  content: "\f054";
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox {
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
  padding: 1.5%;
  line-height: 0;
  font-size: 0;
  max-width: 97%;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  min-height: 100px;
  background-color: #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > img {
  max-width: 100%;
  height: auto;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle {
  font-size: 20px;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle::after {
  content: "";
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  transition: all 400ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSubTitle {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > img {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption h2.edn_articleTitle::after {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSubTitle {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover > img {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails > span {
  float: right;
  margin: 0 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section {
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer {
  margin: 0;
  float: none;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a:hover:after {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent {
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleTitle {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleSummary {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time {
  line-height: 1;
  font-size: 13px;
  color: #969696;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation::before {
  content: "\f041";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time::before {
  content: "\f017";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section {
  position: relative;
  display: table;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::before {
  border-style: solid;
  border-width: 15px;
  border-left-color: #c81704;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section::after {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time {
  border-right: solid 1px #bfbfbf;
  padding: 8px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span {
  display: block;
  color: #666161;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div {
  overflow: hidden;
  padding: 8px 8px 8px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_articleTitle {
  font-size: 19px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation::before {
  content: "\f041";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMoreButtonWrapper {
  text-align: left;
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover {
  background-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time::before {
  content: "\f017";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover::before {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
  width: 100%;
  height: auto;
  transition: all 300ms ease-in-out;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_sss > img {
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > img {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover .edn_sss > img {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
  float: left;
  margin-top: 20px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
    width: 100% !important;
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
  float: left;
  width: 31.3%;
  padding-left: 3%;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
    width: 100%;
    padding: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover > img {
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
  padding-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
  width: 23.5%;
  padding-left: 2%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 48%;
    padding: 0 1% !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption {
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
    clear: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
  box-sizing: content-box;
  width: 32%;
  padding: 0 0 20px 2%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0 0 20px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList {
  margin-bottom: 0;
  padding: 5px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
  font-size: 16px;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
  margin-bottom: 5px;
  margin-top: 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
  margin: 0 0 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 -1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    float: left;
    width: 48% !important;
    padding-right: 1% !important;
    padding-left: 1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    float: none;
  }
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
  display: table;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
  display: table-cell;
  vertical-align: top;
  width: 140px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: inline-block;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock {
  color: #666161;
  font-size: 40px;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  padding-bottom: 20px;
  background: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    background: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
  box-sizing: content-box;
  -moz-box-sizing: border-box;
  padding: 0 8px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
  width: 29px;
  height: 29px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: solid 8px #e2e2e2;
  overflow: hidden;
  margin-top: -5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a > img {
  width: 100%;
  border-radius: 50%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
  margin-left: 30px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-radius: 6px;
  margin-bottom: 35px;
  margin-top: -5px;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 0;
    margin-top: 10px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before {
  position: absolute;
  content: "";
  top: 15px;
  left: -11px;
  width: 20px;
  height: 20px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-right: none !important;
  border-top: none !important;
  transform: rotate(45deg);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent::before {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header {
  border-bottom: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 #eee;
  padding: 10px 25px;
  background: transparent;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time::before {
  content: "\f017";
  color: #c81704;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport {
  margin-right: 20px;
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport::after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover::after {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a {
  color: #666161;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > div {
  padding: 5px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #8a8a8a;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
  background: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
  background-color: #ececec;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent::before {
  background-color: #ececec;
}

.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList {
  width: 250px;
  margin: 0;
  padding: 0;
  float: left;
  position: fixed;
  height: 600px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track {
  background: transparent;
  position: relative;
  height: 100%;
  width: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb {
  height: 20px;
  width: 10px;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background ease 0.2s;
  border-radius: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb > .end {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: dashed 1px #ddd;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #646262;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a:hover {
  color: #c81704;
  text-decoration: none;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li.edNews__active > a {
  color: #000;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList + div {
  margin-left: 280px;
}

.eds_news_Ozone.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  border: solid 1px #c81704;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pager > span,
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  display: inline-block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #c81704;
  border-right: none !important;
  border-bottom: none !important;
  border-top: none !important;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pagination a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_subCollection_news .article_pagination a:hover {
  color: #fff;
  background-color: #FF9387;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  margin-left: -1px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager {
  float: right;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:first-child {
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.next::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.last::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.last::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.first::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.first::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::before {
  font-family: "FontAwesome";
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next::after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle::after {
  content: "\f105";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.last::after {
  content: "\f101";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.first::before {
  content: "\f100";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.prev::before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle::before {
  content: "\f104";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling {
  float: none;
  border: none;
  margin: 0 -10px;
  padding: 20px 10px;
  overflow: visible;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a {
  border: solid 1px #c81704 !important;
  border-radius: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
  float: left;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover, .eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper {
  text-align: center;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger {
  position: relative;
  padding: 0;
  background: none transparent;
  box-shadow: none;
  overflow: hidden;
  width: 75%;
  display: inline-block;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger > span {
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  font-size: 15px;
  display: block;
  padding: 7px 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .actionTextContainer {
  background-color: #fff;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  opacity: 0;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger .loadingOverlay::before {
  content: "\f021";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper .trigger:hover .actionTextContainer {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.loading .trigger .loadingOverlay {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews_loadMoreTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage::after {
    line-height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 240px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage::after {
  content: "\f060";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage::after {
    padding-right: 25px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage::after {
  content: "\f061";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage::after {
    padding-left: 25px;
  }
}
.eds_news_Ozone .edn_pagination {
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid #c81704;
  text-align: right;
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone .edn_pagination > span {
  padding: 0;
  margin: 1px 0 0 1px;
  border: 0;
  background: #c81704;
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.eds_news_Ozone .edn_pagination > span::after {
  font: 18px/1.3 "FontAwesome";
  color: #fff;
  display: block;
  text-align: center;
  display: block;
  padding: 0 11px 1px;
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_previousPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_previousPage::after {
  content: "\f104";
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_nextPage::after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_nextPage::after {
  content: "\f105";
}

.qtip.edn_calendarbox_Ozone {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #c81704;
  width: 500px;
  max-width: 95%;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Ozone p, .qtip.edn_calendarbox_Ozone span, .qtip.edn_calendarbox_Ozone li, .qtip.edn_calendarbox_Ozone a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Ozone .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a:hover {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > img {
  float: left;
  margin: 3px 10px 7px 0;
  padding: 3px;
  border: solid 1px #c81704;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location::before {
  content: "\f041";
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
  font-family: "FontAwesome";
  color: #c81704;
  font-style: normal;
  font-weight: normal;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a:hover {
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/rate_stars.png");
  height: 16px;
  left: 2px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/rate_stars.png") left -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/rate_stars.png") left -16px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}
.eds_news_Ozone.eds_subCollection_news .article_rating + .edn_ArticleVoting {
  margin-left: 50px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .article_rating + .edn_ArticleVoting {
    margin-left: 0;
    display: block;
    text-align: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  position: relative;
  font: 13px/1 "PT Sans", sans-serif;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  color: #bababa;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: normal;
  background-color: #4c4c4c;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 2px;
  transition: all 400ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span .edn_voteTooltip::before {
  content: "";
  bottom: calc(100% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #4c4c4c;
  position: absolute;
  transform: rotate(45deg);
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span:hover .edn_voteTooltip {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 130%;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted > i {
  color: #bababa;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted .edn_voteTooltip {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__voted:hover > i {
  color: #bababa;
}
.eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedUp:hover > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span.edn__votedDown:hover > i, .eds_news_Ozone.eds_subCollection_news .edn_ArticleVoting > span:hover > i {
  color: #37b1ab;
}

.eds_news_Ozone.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  transition: none 0 none;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_search div, .eds_news_Ozone.eds_subCollection_search span, .eds_news_Ozone.eds_subCollection_search a, .eds_news_Ozone.eds_subCollection_search label, .eds_news_Ozone.eds_subCollection_search input {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_search a {
  text-decoration: none;
  color: #c81704;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_search a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 50% !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .search_input::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input {
  float: left;
  padding: 0 10px;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text],
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type=text]:focus {
  border: none;
  outline: none;
  background: none #fff;
  box-shadow: none;
  color: #848484;
  line-height: 28px;
  height: 30px;
  font-size: 13px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search {
  padding: 0 5px;
  line-height: 29px;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search::before {
  content: "\f002";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  border-radius: 0 !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text],
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type=text]:focus {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search {
  width: auto;
  clear: both;
  border: 1px solid #c81704 !important;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline-block;
  padding-left: 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .search_input .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/indicator.gif");
  background-repeat: none;
  background-position: 90% 10%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  padding-right: 35px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  outline: none;
  background: none transparent;
  box-shadow: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35px;
  z-index: 1;
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div::before {
  content: "\f107";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  font-family: "FontAwesome";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open::before {
  content: "\f106";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  margin-top: 1px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background-image: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span::before {
  background-position: 0 bottom;
  content: "\f00c";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 28px;
  height: 30px;
  color: #848484;
  font-size: 13px;
  width: 100%;
  background: none #fff;
  font-family: "PT sans";
  margin: 0;
  padding: 0 10px;
  box-shadow: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 45px;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  padding: 2px;
  background-color: #d6d6d6;
  height: 13px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7 #c7c7c7 #d3d3d3;
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: block;
  height: 7px;
  border-radius: 4px;
  background-color: #c3c3c3;
  border: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #c81704;
  border-style: solid;
  border-width: 1px;
  border-color: #931103 #931103 #bf1604;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #eeeff0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-color: #d4d8de;
  height: 20px;
  width: 20px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 50%;
  box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c71704;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #c81704;
  position: absolute;
  white-space: nowrap;
  top: 25px;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  top: 25px;
  font-size: 12px;
  line-height: 1;
  color: #a8a8a8;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type=checkbox],
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type=checkbox] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type=radio] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label::before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox label::before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type=checkbox]:checked + label::before {
  background-position: 0 bottom;
  content: "\f00c";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton label::before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type=radio]:checked + label::before {
  background-position: 0 bottom;
  content: "\f111";
  font-size: 8px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  outline: none;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  height: 30px;
  line-height: 28px;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-left: none;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 30px;
  padding: 0 11px;
  color: #c81704;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a {
  display: inline-block;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 29px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit {
  border: 1px solid #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit::before {
  content: "\f002";
  display: inline-block;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 21px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset {
  border: solid 1px #ddd;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover {
  color: #504e4e;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a + a {
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/12/Ozone/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField::after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_list {
  margin: 0 -3px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin: 3px;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper.ednSbl_selected .ednSbl_item .ednSbl_letter {
  background-color: #c81704;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item {
  border-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count {
  width: auto;
  padding: 7px 9px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_itemWrapper:hover a.ednSbl_item .ednSbl_count::before {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item {
  color: #b4b4b4;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search span.ednSbl_item .ednSbl_letter + .ednSbl_count {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item {
  font: 12px/1.2 "PT Sans", sans-serif;
  display: inline-block;
  border: solid 1px #a0a0a0;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: #504e4e;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item > span {
  padding: 7px 9px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_letter {
  min-width: 30px;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count {
  width: 0;
  overflow: hidden;
  background-color: #c81704;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7px 0;
  transition: all 300ms;
}
.eds_news_Ozone.eds_subCollection_search .ednSbl_search .ednSbl_item .ednSbl_count::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  border: solid 4px transparent;
  border-left-color: #fff;
  margin-top: -4px;
  transition: left 300ms ease 200ms;
}
.eds_news_Ozone .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_Ozone .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Ozone {
  padding: 0px;
  border: 1px solid #c81704;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Ozone ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Ozone ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Ozone ul li span a {
  padding: 2px 10px;
  display: block;
  font-size: 12px;
  color: #504e4e;
  text-decoration: none;
  border: solid 1px transparent;
  transition: all 300ms linear;
}
.EDN_search.theme_Ozone ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Ozone ul li.acSelect a {
  background-color: #f8f8f8;
  border-color: #d4d4d4 transparent;
  color: #c81704;
  transform: scale(1.05);
}

.eds_news_Ozone.eds_subCollection_tagCloud div, .eds_news_Ozone.eds_subCollection_tagCloud a, .eds_news_Ozone.eds_subCollection_tagCloud span {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a {
  border: solid 1px #c81704;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 5px 5px 0;
  display: inline-block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span {
  display: inline-block;
  color: #c81704;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: bold;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span:first-child {
  background-color: #c81704;
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #c81704;
}

.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section .edsAccordion_title {
  cursor: pointer;
}
.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Ozone [class*=edn_accordionWrapper] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion {
    height: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section {
  margin: 0 0 5px;
  padding: 0;
  border: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  color: #504e4e;
  transition: color 300ms linear;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover::after {
  transform: scale(1.8);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title::after {
  position: absolute;
  content: "\f107";
  right: 1%;
  bottom: 5px;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #c81704;
  font-weight: normal;
  font-style: normal;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title::after {
  content: "\f106";
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
  padding-right: 30px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header {
  margin: 0;
  padding: 0;
  border: none;
  padding: 10px 30px 10px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header::after {
  top: auto;
  bottom: 50%;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3 {
  font-size: 18px;
  color: #504e4e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header .edn_metaDetails {
  margin: 5px 0 10px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
  margin: 0 10px 5px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover::after {
  border-width: 3px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover > img {
  transform: scale(1.05);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_metaDetails {
  margin: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edsAccordion_active > header {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3:last-child > header {
  border: none !important;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion {
  border: none;
  position: relative;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
  float: right;
  clear: right;
  display: block;
  padding: 10px 0;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
    float: none;
    width: auto !important;
    clear: both;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header::after {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3 {
  color: #7c7c7c;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails {
  margin: 0 0 5px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
  padding-right: 35px;
  opacity: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding: 0;
    position: static;
    width: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
  position: relative;
  background-color: #c81704;
  padding-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
    display: none;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3 {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before {
  position: absolute;
  content: "";
  width: 0;
  left: -14px;
  right: auto;
  border-width: 14px 7px;
  border-style: solid;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  top: 50%;
  margin-top: -14px;
  bottom: auto;
  display: block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
  visibility: visible;
  opacity: 1;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft > header {
  float: left;
  clear: left;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft .edsAccordion_contentWrapper {
  padding-right: 0;
  padding-left: 35px;
  left: auto;
  right: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft.edsAccordion_active > header::before {
  left: auto;
  right: -14px;
  transform: rotate(180deg);
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::after, .eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title::before {
  display: block;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone .edsTabulator .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  border: solid 1px #c81704;
  border-bottom: none !important;
  padding: 7px 10px;
  margin: 0;
  line-height: 1;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone .edsTabulator .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li + li {
  border-left: none !important;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:first-child {
  border-radius: 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:last-child {
  border-radius: 0 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:hover {
  color: #c81704;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0;
  bottom: 100%;
  border: solid 1px #c81704;
  border-radius: 0 5px 5px 5px;
  transition: opacity 300ms linear;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  height: auto;
  bottom: 0;
}

.eds_news_Ozone.eds_subCollection_news .edn_sss {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  background-color: rgba(27, 25, 21, 0.5);
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext::before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover::before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover::before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  left: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev::before {
  content: "\f104";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext {
  right: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext::before {
  content: "\f105";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover,
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover {
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > div {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > img + img ~ div {
  display: block;
}

.eds_news_Ozone.eds_subCollection_news.eds_print .article_gallery,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_comments,
.eds_news_Ozone.eds_subCollection_news.eds_print .fb-comments,
.eds_news_Ozone.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_Ozone.eds_subCollection_news.eds_print .admin_action,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Ozone.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_aditionalBox,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_authorGroupDetails,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_galleryLink,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_pager,
.eds_news_Ozone.eds_subCollection_news.eds_print .detailsArticleDefaultWithTabs,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation,
.eds_news_Ozone.eds_subCollection_news.eds_print [class*=eds_GravityGallery_] {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_title {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .eds_tabsNav {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative !important;
  visibility: visible !important;
  top: auto !important;
  padding: 0 !important;
  border: none !important;
  opacity: 1 !important;
}

/* 
================================
 Container Styles for DotNetNuke
================================



/*-------------------------------------------------------------------------------*/
.Normal { color:#666666;}
.actions{ width:10px;}
.clear									 { clear:both; line-height:0; font-size:0; height:0;}
.left 									 { float:left;}
.right 									 { float:right;}
.c_footer							    { padding-right:10px; text-align:left; margin:0 0 10px 0;}
.c_contentpane 							 { text-align:left; }
.dnntitle {
    text-transform: capitalize;
    font-size: 24px;
    line-height:1.8;
	font-weight: 400;
	font-family: lato;
}

/*Container001*/
.Container001 .dnntitle{ color:#444; }
.Container001 .contentpane { padding:15px 0px 10px 0px;}
/*Container002*/
.Container002 .dnntitle {
    color: #444;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding: 0 0 10px 0;
	font-size: 26px;
}

.Container002 .dnntitle:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -1px;
}
.Container002 .contentpane { padding:25px 0px 10px 0px;}

/*Container003*/
.Container003 .dnntitle {
    background: #f2f2f2;
    color: #666;
    border-radius: 3px;
}
.Container003 .title1 { padding:0 0 0 10px;}
.Container003 .contentpane { padding:25px 10px 10px 0px;}

/*Container004*/
.Container004 {
  background: #f6f6f6;
}
.Container004 .dnntitle {
    padding: 10px 0px 0px 15px;
    margin: 0px;
}
.Container004 .contentpane {
    padding: 10px 15px 30px;
}
.Container004 .CommandButton, 
.Container004 A.CommandButton:link, 
.Container004 A.CommandButton:visited,
.Container004 A.CommandButton:active { color:#FFFFFF;}
/*Container005*/
.Container005 .contentpane { padding:15px 10px 10px 0px;}

/*Container006*/
.Container006 .titleline { float:left; margin:0 0 -1px 0; border-bottom:3px solid;}
.Container006 .contentpane { padding:25px 10px 10px 0px;}

/*Container007*/

.Container007 .dnntitle {
  padding: 0px;
  text-transform: capitalize;
  text-align: left;
  color: #FFF;
  font-weight: 400;
  line-height: 45px;
}
.Container007 .dnntitle .title-bg {
    padding: 0px 10px 0 20px;
    position: relative;
    border-radius: 30px;
}

.Container007 .dnntitle .title { 
	display: block;
}
.Container007 .contentpane { padding:30px 0 10px; }
.Container007 .c_footer { margin:0 0 20px ;}
/*Container008*/
.Container008 {
  border: 1px solid #ddd;
  margin: 0 0 20px;
}

.Container008 .dnntitle {
  padding: 0 0 0 15px;
  color: #fff;
  font-size: 20px;
  line-height:42px;
}
.Container008 .contentpane { padding:22px 15px 22px;}
.Container008 .c_footer { margin:0;}

/*Container009*/
.Container009 .dnntitle{ overflow:hidden; color:#333;}
.Container009 .title1{ float:left; margin:0 10px 0 0;}
.Container009 .titleline { height:5px; width:100%; margin:20px -100% 0 0; float:left; border-bottom: 2px dashed #ddd;}
.Container009 .contentpane { padding:15px 10px 10px 0px;}


/*Container010*/
.Container010 .dnntitle {
    background: none repeat scroll 0 0 #f2f2f2;
	border-left:4px solid;
}
.Container010 .title1 { padding:0 0 0 10px; }
.Container010 .contentpane { padding:25px 0 10px; border-top:none;}
/*Container011*/
.Container011 .dnntitle {
    color: #FFFFFF;
    padding: 0 0 0 15px;
    font-size: 18px;
    line-height:50px;
}
.Container011 .contentpane { padding:15px 20px; background:#f6f6f6;}

/*Container012*/
.Container012 {
    box-shadow: 0 -4px rgba(0, 0, 0, 0.1) inset;
	    padding: 15px;
}
.Container012 .dnntitle {
    color: #ffffff;
    padding: 0 10px;
    background: rgba(0,0,0,0.2);
}

.Container012 .contentpane { padding:15px 15px 0px 10px;}
.Container012 .contentpane .Normal { color:#FFFFFF;}
.Container012 .CommandButton, 
.Container012 A.CommandButton:link, 
.Container012 A.CommandButton:visited,
.Container012 A.CommandButton:active { color:#FFFFFF;}

/*Container013*/
.Container013 .dnntitle {
    text-align: center;
    color: #FFF;
    text-transform: capitalize;
	position:relative;
	margin: 0 0 20px 0;
	font-size:32px;
	padding:0 0 10px 0;
}
.Container013 .dnntitle:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: -1px;
    left: 50%;
    margin: 0 0 0 -30px;
    background: #fff;
}
.Container013 .contentpane { padding:10px 0px 10px 0px;}

/*Container014*/
.Container014 .dnntitle {
    color: #FFF;
    text-transform: capitalize;
	position:relative;
	font-size:20px;
	padding:0 0 10px 0;
	font-weight: 600;
}

.Container014 .contentpane { padding:10px 0px 10px 0px;}
.Container014 .contentpane .Normal { color:#aaa;}
/*Container015*/
.Container015 .dnntitle{ text-align:center;}
.Container015 .icon {
    position: relative;
    display: inline-block;
    padding: 0 100px;
}
.Container015 .fa-wrench:before { vertical-align:top;}
.Container015 .dnntitle .box {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}
.Container015 .title-line {
    display: block;
    width: 100%;
    border-top: 0px solid;
    border-bottom: 1px solid #eaeaea;
    height: 1px;
}
.Container015 .title {
    color: #333;
}
.Container015 .icon::before {
    content: "";
    width: 80px;
    height: 1px;
    background: #aaa;
    position: absolute;
    left: 0;
    top: 27px;
}
.Container015 .icon::after {
    content: "";
    width: 80px;
    height: 1px;
    background: #aaa;
    position: absolute;
    right: 0;
    top: 27px;
}

.Container015 .contentpane { padding:15px 0px 10px 0px;}

/*Container016*/
.Container016 .dnntitle {
    padding: 0;
    font-size:32px;
    text-transform: capitalize;
    text-align: center;
	font-weight:400;
}

.Container016 .contentpane { padding:10px 0 10px;}

/*NoTitle*/
.NoTitle .contentpane 					 { text-align:left; padding:0px;}
.NoTitle .cbot							 { float:right;}


@media handheld, only screen and (max-width:767px) {
.dnntitle { font-size:20px; }
.Container013 .dnntitle,
.Container015 .dnntitle,
.Container015 .title,
.Container016 .dnntitle {
	font-size: 24px;
}

}

@media handheld, only screen and (max-width:520px) {
.dnntitle { font-size:18px; }
.Container014 .title1 { font-size:16px;}
.Container013 .dnntitle,
.Container015 .dnntitle,
.Container016 .dnntitle {
	font-size: 20px;
}

}
@media handheld, only screen and (max-width:480px) {
.Container015 .title { font-size:20px;}
.Container016 .contentpane {
	padding: 10px 0 10px;
}
}
@media handheld, only screen and (max-width:375px) {

.Container013 .dnntitle,
.Container015 .dnntitle,
.Container016 .dnntitle {
	font-size: 18px;
}

}

















/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}


.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}



/*!
 *  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 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;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 48px;
  text-shadow: none !important;
  padding: 0 30px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  text-transform: none;
  margin: 0;
  height: auto;
  transition: all 100ms linear;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px;
  background: none #e9e9ed;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7;
}
.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 .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    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;
}

.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";
}
