﻿
@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;
        }



.c_DNN6_Header .Head                { color:#4F4F4F; font-size:18px; line-height:24px; padding:0 10px 0 0; text-transform:uppercase; }
.c_DNN6_Header .Title               { margin:1em 0 .5em 0; overflow:hidden; }
.c_DNN6_Header .Title .TitleBar     { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 20px; }   
.c_DNN6_SubTitle .Head              { color:#4F4F4F; font-size:18px; line-height:30px; padding:0 10px 0 0; text-transform:uppercase; }
.c_DNN6_SubTitle .Title             { margin:1.35em 0 .5em 0; overflow:hidden; }
.c_DNN6_SubTitle .Title .TitleBar   { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 24px; }
    
.Head                               { color:#fff; font-size:18px; border-bottom:none; margin-bottom:0; font-weight:normal; }   
#clearfix                           { width:100%; float:left; overflow:auto; }
.Container                          { margin:2em 0 0 0; padding:0; }
.ctrFont .Head                      { font-family:'open sans', Arial, Tahoma; }   
.CntPadding                         { padding:0; }

/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) { }
@media all\0 { } /* IE8 uses \0 */
   
/*========== H1Container CSS ===========*/
.H1Container_Title .Head            { color:#df1d63; font-size:32px; line-height:38px; font-family:'open sans', Tahoma; }
    
/*========== H2Container CSS ===========*/
.H2Container_Title .Head            { color:#df1d63; font-size:26px; line-height:38px; font-family:'open sans', Tahoma; }
.H2Container_Title                  { border-bottom:1px dotted #ececec; }       
.H2Container_Title h1               { line-height:40px; }
.H2Container_Title h1 span.Head     { border-bottom:2px solid #df1d63; line-height:40px; padding-bottom:5px; font-size:20px; font-weight:300; }
.H2Container_Content                { padding-top:30px; }

/*========== FooterContainer CSS =======*/
.FooterTitle .Head                  { color:#eaeaea; font-size:18px; font-family:'open sans', Tahoma; }
.FooterTitle                        { border-bottom:1px dotted #eaeef3; }     
.FooterTitle h1                     { line-height:40px; margin-bottom:0; }
.FooterTitle h1 span.Head           { border-bottom:3px solid #df1d63; font-size:24px; line-height:46px; padding-bottom:5px; }
.FtrContent                         { padding-top:20px; }

/*========== H3Container CSS ===========*/
.H3Container_Title .Head            { color:#df1d63; font-size:20px; font-family:'open sans', Tahoma; }   
.H3Container_Title h1               { line-height:36px; }
 
/*========== H1TitleBorderContainer CSS */
.H1TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H1TitleContainer .Head             { color:#df1d63; font-size:32px; font-family:'open sans', Tahoma; line-height:42px; }   
.H1ContentContainer                 { padding:10px 0 0 0; }

/*========== H2TitleBorderContainer CSS */
.H2TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H2TitleContainer .Head             { color:#df1d63; font-size:26px; line-height:42px; font-family:'open sans', Tahoma; }   
.H2ContentContainer                 { padding:10px 0 0 0; }

/*========== H3TitleBorderContainer CSS */
.H3TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H3TitleContainer .Head             { color:#df1d63; font-size:20px; font-family:'open sans', Tahoma; }    
.H3TitleContainer h1                { line-height:39px; }  
.H3ContentContainer                 { padding:10px 0 0 0; }
                    
/*========== Container01 ===============*/
.Container01Title                   { padding:0px 15px; background:#df1d63; border-radius:22px; -moz-border-radius:22px; -webkit-border-radius:22px; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container01Title h1                { line-height:36px; color:#fff; font-size:18px; font-family:Arial, Tahoma; }   
.Container01Content                 { padding-top:10px; }

/*========== Container02 CSS ===========*/
.Container02                        { background:#fff; border:1px solid #cecfcf; }   
.Container02_Title h1               { line-height:36px; font-size:18px; padding:0 15px; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container02_content                { padding:8px 10px; }

/*========== Container03 CSS ===========*/
.Container03Title h1                { padding:0px 15px; color:#fff; font-size:18px; line-height:36px; background:#df1d63; }   
.Container03Content                 { padding-top:10px; }

/*========== Container04 CSS ===========*/
.Container04Title .Head             { background:#df1d63; padding:3px 15px; position:relative; }   
.Container04Title h1                { border-bottom:4px solid #df1d63; font-size:18px; line-height:37px; }   
.Container04Content                 { padding:8px 0; }

/*========== Container05 CSS ===========*/
.Container05                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 0 20px 20px; -moz-border-radius:0 0 20px 20px; -o-border-radius:0 0 20px 20px; border-radius:0 0 20px 20px; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container05Content                 { padding:8px 10px; }   
.Container05Title h1                { padding:0px 15px; line-height:36px; font-size:18px; background: #df1d63; position:relative; }

/*========== Container06 CSS ===========*/
.Container06Title .Head             { padding:3px 15px; background:#df1d63; }
.Container06Title h1                { border-top:4px solid #df1d63; font-size:18px; line-height:34px; }   
.Container06Content                 { padding:8px 0; }
                 
/*========== Container07 CSS ===========*/
.Container07                        { background:#fff; border:1px solid #cecfcf; }
.Container07Title h1                { font-size:18px; line-height:29px; border-top:4px solid #df1d63; border-bottom:4px solid #df1d63; font-size:18px; padding:0 15px; }
.Container07Title .Head             { color:#df1d63; }
.Container07Content                 { padding: 8px 10px; }

/*========== Container08 CSS ===========*/
.Container08                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 12px; -moz-border-radius:0 12px; border-radius:0 12px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container08Title h1                { padding:0px 18px; font-size:18px; line-height:36px; -webkit-border-radius: 0 12px 0 0; -moz-border-radius:0 12px 0 0; border-radius:0 12px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container08Content                 { padding:8px 10px; }

/*========== Container09 CSS ===========*/
.Container09                        { background:#fff; border:1px solid #cecfcf; }
.Container09Title h1                { font-size:18px; border-left:6px solid #df1d63; border-right:6px solid #df1d63; font-size:18px; padding:0 13px; line-height:35px; }
.Container09Title .Head             { color:#df1d63; }
.Container09Title                   { border-bottom:1px solid #cecfcf; }
.Container09Content                 { padding: 8px 10px; }

/*========== Container10 CSS ===========*/
.Container10                        { border:1px solid #cecfcf; -moz-border-radius:0px 0px 20px 20px; -webkit-border-radius:0px 0px 20px 20px; border-radius:0px 0px 20px 20px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); }
.Container10Title h1                { border-bottom:1px solid #cecfcf; font-size:18px; line-height:36px; padding:0 15px; }        
.Container10Title .Head             { color:#df1d63; }
.Container10Content                 { padding: 8px 10px; }

/*========== Container11 CSS ===========*/
.Container11                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:20px 20px 0 0; -moz-border-radius:20px 20px 0 0; -o-border-radius:20px 20px 0 0; border-radius:20px 20px 0 0; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container11Content                 { padding:8px 10px; }   
.Container11Title h1                { padding:0px 15px; line-height:36px; font-size:18px; -webkit-border-radius:20px 20px 0 0; -moz-border-radius:20px 20px 0 0; border-radius:20px 20px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
                  
/*========== Container12 CSS ===========*/
.Container12                        { border:1px solid #cecfcf; -webkit-border-radius:12px; -moz-border-radius:12px; border-radius:12px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container12Content                 { padding:10px; }

/*========== Container13 CSS ===========*/
.Container13                        { border:1px solid #cecfcf; }
.Container13Content                 { padding:10px; overflow:auto; }
 
/*========== Container14 CSS ===========*/
.Container14                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 20px; -moz-border-radius:0 20px; border-radius:0 20px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container14Title h1                { padding:0px 18px; font-size:18px; line-height:36px; -webkit-border-radius: 0 20px 0 0; -moz-border-radius:0 20px 0 0; border-radius:0 20px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container14Content                 { padding:8px 10px; }

/*========== SubTitleContainer CSS ===========*/
.SubTitleContainer .Head            { color:#333; font-size:18px; padding:0 10px 0 0; }  
.SubTitleContainer .Title           { margin:1.5em 0 1.2em 0; overflow:hidden; }  
.SubTitleContainer .Title .TitleBar { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 24px; }





.c_DNN6_Header .Head                { color:#4F4F4F; font-size:18px; line-height:24px; padding:0 10px 0 0; text-transform:uppercase; }
.c_DNN6_Header .Title               { margin:1em 0 .5em 0; overflow:hidden; }
.c_DNN6_Header .Title .TitleBar     { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 20px; }   
.c_DNN6_SubTitle .Head              { color:#4F4F4F; font-size:18px; line-height:30px; padding:0 10px 0 0; text-transform:uppercase; }
.c_DNN6_SubTitle .Title             { margin:1.35em 0 .5em 0; overflow:hidden; }
.c_DNN6_SubTitle .Title .TitleBar   { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 24px; }
    
.Head                               { color:#fff; font-size:18px; border-bottom:none; margin-bottom:0; font-weight:normal; }   
#clearfix                           { width:100%; float:left; overflow:auto; }
.Container                          { margin:2em 0 0 0; padding:0; }
.ctrFont .Head                      { font-family:'open sans', Arial, Tahoma; }   
.CntPadding                         { padding:0; }

/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) { }
@media all\0 { } /* IE8 uses \0 */
   
/*========== H1Container CSS ===========*/
.H1Container_Title .Head            { color:#df1d63; font-size:32px; line-height:38px; font-family:'open sans', Tahoma; }
    
/*========== H2Container CSS ===========*/
.H2Container_Title .Head            { color:#df1d63; font-size:26px; line-height:38px; font-family:'open sans', Tahoma; }
.H2Container_Title                  { border-bottom:1px dotted #ececec; }       
.H2Container_Title h1               { line-height:40px; }
.H2Container_Title h1 span.Head     { border-bottom:2px solid #df1d63; line-height:40px; padding-bottom:5px; font-size:20px; font-weight:300; }
.H2Container_Content                { padding-top:30px; }

/*========== FooterContainer CSS =======*/
.FooterTitle .Head                  { color:#eaeaea; font-size:18px; font-family:'open sans', Tahoma; }
.FooterTitle                        { border-bottom:1px dotted #eaeef3; }     
.FooterTitle h1                     { line-height:40px; margin-bottom:0; }
.FooterTitle h1 span.Head           { border-bottom:3px solid #df1d63; line-height:40px; padding-bottom:5px; }
.FtrContent                         { padding-top:20px; }

/*========== H3Container CSS ===========*/
.H3Container_Title .Head            { color:#df1d63; font-size:20px; font-family:'open sans', Tahoma; }   
.H3Container_Title h1               { line-height:36px; }
 
/*========== H1TitleBorderContainer CSS */
.H1TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H1TitleContainer .Head             { color:#df1d63; font-size:32px; font-family:'open sans', Tahoma; line-height:42px; }   
.H1ContentContainer                 { padding:10px 0 0 0; }

/*========== H2TitleBorderContainer CSS */
.H2TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H2TitleContainer .Head             { color:#df1d63; font-size:26px; line-height:42px; font-family:'open sans', Tahoma; }   
.H2ContentContainer                 { padding:10px 0 0 0; }

/*========== H3TitleBorderContainer CSS */
.H3TitleContainer                   { border-bottom:1px solid #df1d63; }  
.H3TitleContainer .Head             { color:#df1d63; font-size:20px; font-family:'open sans', Tahoma; }    
.H3TitleContainer h1                { line-height:39px; }  
.H3ContentContainer                 { padding:10px 0 0 0; }
                    
/*========== Container01 ===============*/
.Container01Title                   { padding:0px 15px; background:#df1d63; border-radius:22px; -moz-border-radius:22px; -webkit-border-radius:22px; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container01Title h1                { line-height:36px; color:#fff; font-size:18px; font-family:Arial, Tahoma; }   
.Container01Content                 { padding-top:10px; }

/*========== Container02 CSS ===========*/
.Container02                        { background:#fff; border:1px solid #cecfcf; }   
.Container02_Title h1               { line-height:36px; font-size:18px; padding:0 15px; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container02_content                { padding:8px 10px; }

/*========== Container03 CSS ===========*/
.Container03Title h1                { padding:0px 15px; color:#fff; font-size:18px; line-height:36px; background:#df1d63; }   
.Container03Content                 { padding-top:10px; }

/*========== Container04 CSS ===========*/
.Container04Title .Head             { background:#df1d63; padding:3px 15px; position:relative; }   
.Container04Title h1                { border-bottom:4px solid #df1d63; font-size:18px; line-height:37px; }   
.Container04Content                 { padding:8px 0; }

/*========== Container05 CSS ===========*/
.Container05                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 0 20px 20px; -moz-border-radius:0 0 20px 20px; -o-border-radius:0 0 20px 20px; border-radius:0 0 20px 20px; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container05Content                 { padding:8px 10px; }   
.Container05Title h1                { padding:0px 15px; line-height:36px; font-size:18px; background: #df1d63; position:relative; }

/*========== Container06 CSS ===========*/
.Container06Title .Head             { padding:3px 15px; background:#df1d63; }
.Container06Title h1                { border-top:4px solid #df1d63; font-size:18px; line-height:34px; }   
.Container06Content                 { padding:8px 0; }
                 
/*========== Container07 CSS ===========*/
.Container07                        { background:#fff; border:1px solid #cecfcf; }
.Container07Title h1                { font-size:18px; line-height:29px; border-top:4px solid #df1d63; border-bottom:4px solid #df1d63; font-size:18px; padding:0 15px; }
.Container07Title .Head             { color:#df1d63; }
.Container07Content                 { padding: 8px 10px; }

/*========== Container08 CSS ===========*/
.Container08                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 12px; -moz-border-radius:0 12px; border-radius:0 12px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container08Title h1                { padding:0px 18px; font-size:18px; line-height:36px; -webkit-border-radius: 0 12px 0 0; -moz-border-radius:0 12px 0 0; border-radius:0 12px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container08Content                 { padding:8px 10px; }

/*========== Container09 CSS ===========*/
.Container09                        { background:#fff; border:1px solid #cecfcf; }
.Container09Title h1                { font-size:18px; border-left:6px solid #df1d63; border-right:6px solid #df1d63; font-size:18px; padding:0 13px; line-height:35px; }
.Container09Title .Head             { color:#df1d63; }
.Container09Title                   { border-bottom:1px solid #cecfcf; }
.Container09Content                 { padding: 8px 10px; }

/*========== Container10 CSS ===========*/
.Container10                        { border:1px solid #cecfcf; -moz-border-radius:0px 0px 20px 20px; -webkit-border-radius:0px 0px 20px 20px; border-radius:0px 0px 20px 20px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); }
.Container10Title h1                { border-bottom:1px solid #cecfcf; font-size:18px; line-height:36px; padding:0 15px; }        
.Container10Title .Head             { color:#df1d63; }
.Container10Content                 { padding: 8px 10px; }

/*========== Container11 CSS ===========*/
.Container11                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:20px 20px 0 0; -moz-border-radius:20px 20px 0 0; -o-border-radius:20px 20px 0 0; border-radius:20px 20px 0 0; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container11Content                 { padding:8px 10px; }   
.Container11Title h1                { padding:0px 15px; line-height:36px; font-size:18px; -webkit-border-radius:20px 20px 0 0; -moz-border-radius:20px 20px 0 0; border-radius:20px 20px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
                  
/*========== Container12 CSS ===========*/
.Container12                        { border:1px solid #cecfcf; -webkit-border-radius:12px; -moz-border-radius:12px; border-radius:12px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container12Content                 { padding:10px; }

/*========== Container13 CSS ===========*/
.Container13                        { border:1px solid #cecfcf; }
.Container13Content                 { padding:10px; overflow:auto; }
 
/*========== Container14 CSS ===========*/
.Container14                        { background:#fff; border:1px solid #cecfcf; -webkit-border-radius:0 20px; -moz-border-radius:0 20px; border-radius:0 20px; behavior: url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container14Title h1                { padding:0px 18px; font-size:18px; line-height:36px; -webkit-border-radius: 0 20px 0 0; -moz-border-radius:0 20px 0 0; border-radius:0 20px 0 0; background: #df1d63; behavior:url("/Portals/_default/Skins/Professional/CSS/PIE.htc"); position:relative; }
.Container14Content                 { padding:8px 10px; }

/*========== SubTitleContainer CSS ===========*/
.SubTitleContainer .Head            { color:#333; font-size:18px; padding:0 10px 0 0; }  
.SubTitleContainer .Title           { margin:1.5em 0 1.2em 0; overflow:hidden; }  
.SubTitleContainer .Title .TitleBar { margin:0 -100% 0 0; vertical-align:middle; width: 100%; height: 24px; }




.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}.clearfix {display: inline-block;}/* Hides from IE-mac \*/ * html .clearfix { height: 1%;}.clearfix {display: block;}/* End hide from IE-mac */
.clear { clear:both;} 
.left { float:left;} 
.right { float:right;}
.img-left {float: left; margin-right: 10px;} 
.img-right {float: right; margin-left: 10px;}
.dnnsprite { background-image: url("/Portals/0/images/AsideIcons.png"); background-color: transparent; background-repeat: no-repeat; }
.Community { background-position: -249px -5px; }
.Conferences { background-position: -188px -5px; }
.Manuals { background-position: -127px -5px; }
.Marketplace { background-position: -66px -5px; }
.Training { background-position: -5px -5px; }


ul.RotatorNav { margin:-74px 0 0 0;}
ul.RotatorNav li {margin:0;list-style:none;}

ul.sidebar-nav li { list-style-type: none;}
ul.sidebar-nav li ul li { padding-left: 20px;;}

/* Getting Started content */
.getting-started-wrap .left { width: 116px; padding-top:20px;}
.getting-started-wrap .right { width:500px;}
a#TourStart img, a#TourVideo img { margin: 3px 3px 3px -10px; vertical-align: middle;}
#dnnTourContainer { display:none; }
hr.tour { border-style: solid; border-top-width: 0; color: #ccc; margin-top: 1em; }

#Footer #dnn_Footer_LeftPane {float: left;margin: 0 20px 0 0;width: 430px;}
#Footer #dnn_Footer_RightPane {float: left;width: 510px;}

#Sponsors img{width:118px;height:58px;border:solid 1px #000;margin:0 7px 7px 0;background:url("/Portals/0/images/Logos.jpg") no-repeat;}
#Sponsors .aspnet img{background-position:0 0;}
#Sponsors .maxasp img{background-position:-118px 0;}
#Sponsors .telerik img{background-position:-236px 0;}
#Sponsors .exacttarget img{background-position:-354px 0;}
#Sponsors .winlive img{background-position: 0 -58px;}
#Sponsors .redgate img{background-position: -118px -58px;}
#Sponsors .appliedi img{background-position: -236px -58px;}
#Sponsors .arrowdesign img{background-position: -354px -58px;}

/* Quick Links */
.tblQuickLinks { width:100%; }
.tblQuickLinks td { line-height:22px; }
.tblQuickLinks a:link, .tblQuickLinks a:active, .tblQuickLinks a:visited{ text-decoration:underline; color:#e5e5e5; }
.tblQuickLinks a:hover {color:#d0171e;}

/* ------    Awesome Cyles site styles    ------ */
/* footer */
.left-footer { width:48%; float:left;}
.right-footer { width:48%; float:right;}

/* Home page */
/* Header Banner*/
.bannerShadow {padding-bottom: 34px; background:url("/Portals/0/images/Slide-Shadow.png") no-repeat 0 bottom;}
	.header-banner { background-image: url("/Portals/0/images/header-bg.jpg"); background-repeat: repeat-x; background-color:#830c11; min-height:200px; color:#FFF;}
		.header-banner .header-banner-image { float:left; width:280px; margin-left:50px; padding-top:13px;}
		.header-banner .header-banner-text { float:right; width:550px; margin-right:55px;}
			.header-banner .header-banner-text { font-size:16px; line-height:19px; padding-top:10px;}
			.header-banner .header-banner-text h2 { font-size:36px; text-transform:uppercase}
			.header-banner .header-banner-text .header-read-more { font-size:14px; text-align:right;}
			.header-banner .header-banner-text .header-read-more a { color:#FFF;}

/* services columns */
.home-services div { width:190px; margin-right:20px; float:left;}
.home-services div.last { margin-right:0;}

/*  home page sidebar styles*/
#RightLinks .last { background:none;}
#RightLinks li.icoAbout img { background-image: url("/Portals/0/images/bike-about-icon.png"); background-repeat: no-repeat;}
#RightLinks li.icoBike img { background-image: url("/Portals/0/images/bike-icon.png"); background-repeat: no-repeat;}
#RightLinks li.icoNews img { background-image: url("/Portals/0/images/bike-news-icon.png"); background-repeat: no-repeat;}

/* Subpage sidebar navigation on */
.Normal ul.sidebar-nav li { line-height:200%;}
.c_DNN6_Aside h3 { padding:0; margin:0; line-height:200%;}

















/* Standard Menu Reset */
body, nav, ul, li, a                { margin: 0; padding: 0; }     
ul ul, ul ol, ol ol, ol ul          { margin-left:0px; margin-bottom:0px; }    
body                                { font-family: "open sans", Helvetica, Arial, sans-serif; }   
a                                   { text-decoration: none; }    
.nav                                { list-style: none; *zoom: 1; }   
.nav ul                             { list-style: none; }

/* Main Nav Style Code */
.nav a                              { padding:7px 12px; color:#333; font:normal 14px/1.5em "open sans",Tahoma; font-weight:600; text-decoration:none; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; }
.nav li                             { position:relative; margin-left:4px; }    
.nav > li                           { float:left; list-style:none; }    
.nav > li > a                       { line-height:25px; z-index:500; position:relative; text-transform:uppercase; }        
.sf-sub-indicator                   { display:none; } 
 
/* Main current Nav Style Code */   
.nav .current a, 
.nav .current a:visited, 
.nav .current a:active              { color:#378AC4; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; }
.nav > li > a                       { display:block; } 
.nav > li > a:hover                 { color:#378AC4; }
.nav > li:hover > a                 { color:#378AC4; }
.nav > li ul                        { min-width:215px; padding-top:30px; position:absolute; left:-9999px; }
.nav > li ul li ul                  { margin-top:0px; margin-left:2px; padding-top:0; }
.nav > li.hover > ul                { left:0; } 
.nav li li.hover ul                 { left:100%; top:0; } 
.nav li li                          { list-style:none; padding-top:0px; padding-bottom:0px; margin-left:0px; } 
        
/* Sub Nav Style Code */ 
.nav li li                          { border-bottom:0; }
.nav li li a                        { padding:0 15px; background:#378AC4; color:#fff; font-size:14px; font-family:"open sans",Tahoma; font-weight:300; line-height:42px; font-weight:normal; display: block; z-index:100; border-bottom: 1px solid #579dce; }
.nav li li:last-child a             { border-bottom: none; } 
.nav li li a:hover                  { display: block; background:#79beef; color:#fff; border-radius:0; box-shadow:none; }
.nav ul li a.sf-with-ul             { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 93% 50% !important; }
.nav ul li a.sf-with-ul:hover       { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 93% 50% !important; }

/* Sub current Nav Style Code */ 
.nav .current ul li a, 
.nav .current ul li a:visited       { color:#fff; font-family:"open sans",Tahoma; border-radius:0; box-shadow:none; }
    
.nav .current ul li a:hover         { background:#378AC4; color:#ddd; }
.nav li.current ul li a,
.nav li.current ul li a:visited     { border-top:0 !important; border-bottom: 1px solid #579dce; }
 
.leftMenu #DeshtopMenu .nav > li ul           { padding-top:26px; } 
.leftMenu #DeshtopMenu .nav > li ul li ul     { padding-top:0; } 
.leftMenu.sticky #DeshtopMenu .nav > li ul    { padding-top:16px; }

#DeshtopMenu .nav > li ul           { padding-top:17px; }   
#DeshtopMenu .nav > li ul li ul     { padding-top:0; }       
#DeshtopMenu .nav > li, 
#DeshtopRightMenu .nav > li         { margin-top:0; }       
#DeshtopMenu .nav > li > a, 
#DeshtopRightMenu .nav > li > a     { padding:0 10px; line-height:40px; }   
#DeshtopMenu .nav li li a, 
#DeshtopRightMenu .nav li li a      { padding:8px 15px; line-height:22px; }

#DeshtopMenu                        { margin-top:17px; }    
#DeshtopRightMenu ul                { text-align:center; }
#DeshtopRightMenu > .nav a          { border-right:none; }
#DeshtopRightMenu .nav > li         { display:inline-block; position:relative; list-style:none; float:none; }
#DeshtopRightMenu ul ul             { text-align:left; }

/* Left Side Menu Code */
.LeftSideMenu .nav li               { margin-left:0; position: relative; }
.LeftSideMenu .nav a                { padding:3px 0; text-decoration:none; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; }
.LeftSideMenu .nav > li             { float:left; width:100%; list-style:none; }
.LeftSideMenu .nav > li > a         { line-height:38px; }
       
/* Main current Nav Style Code */   
.LeftSideMenu .nav .current a, 
.LeftSideMenu .nav .current a:visited, 
.LeftSideMenu .nav .current a:active { color:#fff !important; padding-left: 15px; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; }
.LeftSideMenu .nav > li > a:hover   { color:#fff !important; background-color:#f8f7f7; padding-left:15px; }
.LeftSideMenu .nav > li:hover > a   { color:#fff !important; background:#f8f7f7; padding-left:15px; }
.LeftSideMenu .nav > li ul          { min-width:100%; left:-9999px; position:relative; }

.LeftSideMenu .nav > li ul li ul    { margin-top:0px; }
.LeftSideMenu .nav > li.hover > ul  { left:0; } 
.LeftSideMenu .nav li li.hover ul   { left:100%; top:0; } 
.LeftSideMenu .nav li li            { list-style:none; padding-top:0px; padding-bottom:0px; margin-left:0px;  } 
        
/* Sub Nav Style Code */ 
.LeftSideMenu .nav li li            { border-bottom:0; }
.LeftSideMenu .nav li li a          { padding:3px 15px; font-size:15px; font-family:"opensans", Tahoma; line-height:34px; font-weight:normal; display: block; z-index:100; }
.LeftSideMenu .nav li li a:hover    { display: block; background:#378AC4; color:#fff; border-radius:0; box-shadow:none; }
.LeftSideMenu .nav > li a.sf-with-ul        { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 96% 50% !important; }
.LeftSideMenu .nav > li a.sf-with-ul:hover  { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 96% 50% !important; }
.LeftSideMenu .nav ul li a.sf-with-ul       { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 96% 50% !important; }
.LeftSideMenu .nav ul li a.sf-with-ul:hover { background-image: url("/Portals/_default/skins/professionalus/DNNStandardMenu/Arrow.png") !important; background-repeat: no-repeat !important; background-position: 96% 50% !important; }


@media screen and (max-width:1160px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a        { padding:7px 10px; } 
}   
    
@media screen and (max-width:1060px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a        { padding:0 4px; font-size:13px; } 
    #DeshtopMenu .nav > li > a, 
    #DeshtopRightMenu .nav > li > a { padding:0 4px; }
}

@media screen and (max-width:930px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a        { padding:7px 2px; } 
    #DeshtopMenu .nav > li > a, 
    #DeshtopRightMenu .nav > li > a { padding:0 2px; }
}

@media screen and (max-width:830px) {
    .nav a,
    #DeshtopMenu .nav a,
    #DeshtopRightMenu .nav a        { padding:7px 1px; font-size:10px; } 
}


@media screen and (max-width: 767px) {	
	#mobileLogoMenu                 { padding-top:20px; }
	#toggle-bar strong              { display: none; }
	#toggle-bar a:focus             { outline:none; }
	nav#full                        { display:none; }
	div#mobileMbl                   { background:#fff; display:block; border-bottom:none; }

	/* Top black bar that holds the toggle button */
	div#mobileMbl #toggle-bar       { line-height:36px; height:36px; }
    #toggle-bar                     { position: absolute; right: 1px; top: 13px; }

	/* Toggle button #1 ("Menu") */
	div#mobileMbl strong a          { margin-left:14px; padding:5px 80px 5px 0; }
    div#toggle-bar a                { color:#333; font-weight:normal; }
    div#toggle-bar a:hover          { color:#333; text-decoration:none; }
    
	/* Toggle button #2 ("Navicon") */
	div#mobileMbl .navicon          { float:right; width:46px; margin:0 0 0 18px; height:10px; }
    div#mobileMbl .navicon em.fa    { font-size:38px; color:#333; }
    
    /* The dropdown menu */ 
    nav#mobile > ul                 { padding-top:20px; }
    nav#mobile ul > li              { clear:both; list-style:none; background:#e3e3e3; margin-bottom:3px; text-align:left; } 
    nav#mobile ul li a              { display:block; padding:7px 12px 7px; color:#333; font-size:16px; font-weight:300; } 
    nav#mobile ul ul                { font-size:small; }
    nav#mobile ul ul li             { border-top:1px solid #edeeee; }
    nav#mobile ul ul a              { color:#333; padding-bottom:6px; }
    nav#mobile ul li a:hover,
    nav#mobile ul ul a:hover        { text-decoration:none; } 
    nav#mobile ul ul a:before       { content: "-"; padding-right:6px; }  
    nav#mobile ul ul ul a:before    { content: "- -"; padding-right:6px; }    
}


















/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNGallery/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
@import url("/DesktopModules/EasyDNNGallery/static/font-awesome/css/font-awesome.min.css");
/*Admin Menu */
.eds_galleryWrapper {
  position: relative;
}
.eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul,
.eds_galleryWrapper .eds_galleryManageMenu:hover > ul {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  opacity: 1;
  padding: 13px 13px 0;
  position: absolute;
  right: -33px;
  top: 45px;
  visibility: visible;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul,
  .eds_galleryWrapper .eds_galleryManageMenu:hover > ul {
    right: -20px;
  }
}
.eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li,
.eds_galleryWrapper .eds_galleryManageMenu:hover > ul > li {
  display: block;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper.eds_galleryManageMenuVisible .eds_galleryManageMenu > ul > li:first-child > a:after, .eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a:after,
  .eds_galleryWrapper .eds_galleryManageMenu:hover > ul > li:first-child > a:after {
    right: 27px;
  }
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu {
  text-align: left;
  position: static;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul {
  background-color: transparent;
  padding: 0;
  position: static;
  margin: 10px 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li {
  display: inline-block;
  margin-left: -1px;
  margin-bottom: 0;
  margin-top: -1px;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li > a {
  border-radius: 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a {
  border-radius: 3px 0 0 3px;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:first-child > a:after {
  display: none;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenu > ul > li:last-child > a {
  border-radius: 0 3px 3px 0;
}
.eds_galleryWrapper.eds_initialState .eds_galleryManageMenuTrigger {
  display: none;
}
.eds_galleryWrapper .eds_galleryManageMenu {
  position: absolute;
  right: 100px;
  top: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
  z-index: 99;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu {
    right: 15px;
    top: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
  transition: padding 200ms ease-in-out, opacity 200ms ease-in-out;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li {
  list-style-type: none;
  margin: 0 0 13px;
  padding: 0;
  display: none;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a {
  display: block;
  white-space: nowrap;
  padding: 12px 25px;
  line-height: 1;
  font-size: 16px;
  font-family: "Arial";
  color: #189fd3;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: solid 1px #dadada;
  border-radius: 3px;
  background-color: #fff;
  text-align: left;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu > ul > li > a {
    font-size: 0;
    line-height: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:hover {
  color: #fff;
  background-color: #2b93dd;
  text-decoration: none;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:before {
  font-family: "FontAwesome";
  color: #aeaeae;
  padding-right: 10px;
  font-size: 14px;
  font-size: 21px !important;
  line-height: 1 !important;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:before {
    font-size: 0;
    line-height: 0;
    padding-right: 0;
  }
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li > a:hover:before {
  color: #fff;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryManageContent a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_gallerySettings a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryCropContent a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li.eds_galleryDashboard a:before {
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a {
  position: relative;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a:after {
  position: absolute;
  top: -8px;
  right: 35px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #dadada transparent transparent #dadada;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_galleryWrapper .eds_galleryManageMenu > ul > li:first-child > a:hover:after {
  background-color: #2b93dd;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger {
  display: block;
  text-align: center;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger > span {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  height: 41px;
  width: 48px;
  background-color: #2b93dd;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger > span:before {
  font-size: 25px;
  color: #fff;
  font-family: "FontAwesome";
  line-height: 41px;
  content: "";
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger:hover {
  padding-bottom: 20px;
}
.eds_galleryWrapper .eds_galleryManageMenuTrigger:hover > span {
  background-color: #3fa7f1;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700') */

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDnnGallery/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@charset "UTF-8";
/*@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700") */
@import url("/DesktopModules/EasyDnnGallery/static/font-awesome/css/font-awesome.min.css");
@keyframes overlayInTop {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes overlayInRight {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes overlayInBottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes overlayInLeft {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }
  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes overlayOutTop {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
}
@keyframes overlayOutRight {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, -1, 0, 90deg);
  }
}
@keyframes overlayOutBottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(1, 0, 0, 90deg);
  }
}
@keyframes overlayOutLeft {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  to {
    transform: rotate3d(0, 1, 0, 90deg);
  }
}
@keyframes layerInTop {
  from {
    transform: translate(0, -100%);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes layerOutTop {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(0, -100%);
    opacity: 0;
  }
}
@keyframes layerInRight {
  from {
    transform: translate(100%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes layerOutRight {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(100%, 0);
    opacity: 0;
  }
}
@keyframes layerInBottom {
  from {
    transform: translate(0, 100%);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes layerOutBottom {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(0, 100%);
    opacity: 0;
  }
}
@keyframes layerInLeft {
  from {
    transform: translate(-100%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes layerOutLeft {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(-100%, 0);
    opacity: 0;
  }
}
.eds_GravityGallery_TreeLine {
  color: #333;
}
.eds_GravityGallery_TreeLine * {
  box-sizing: border-box;
}
.eds_GravityGallery_TreeLine::before, .eds_GravityGallery_TreeLine::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 400ms;
}
.eds_GravityGallery_TreeLine::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_GravityGallery_TreeLine::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #ddd;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_GravityGallery_TreeLine .edsgg_userEditActions {
  margin-left: -10px;
  margin-top: 14px;
  z-index: 10;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer {
  margin: 0 auto;
  position: relative;
  z-index: 0;
  max-width: 100%;
  padding: 30px 0 15px;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  opacity: 0;
  transition: opacity 400ms ease 950ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edsgg__itemDetailsAndLightboxTrigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  z-index: 4;
  background: url("/DesktopModules/EasyDnnGallery/Templates/GravityPortfolio/_default/TreeLine/images/blank.png");
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  position: relative;
  min-height: 30px;
  max-width: 100%;
  overflow: hidden;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  max-width: 100%;
  font-size: 0;
  line-height: 0;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper img {
  max-width: 100%;
  height: auto;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer {
  position: relative;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::before, .eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::after {
  position: absolute;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::before {
  content: "";
  z-index: 1;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  z-index: -1;
  color: #ddd;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: 15px;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div > .edsgg__itemDetailsAndLightboxTrigger {
  display: none;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > .edsgg__itemDetailsAndLightboxTrigger {
  display: none;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  font-size: 14px;
  margin: 0 0 10px;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  font-size: 12px;
  display: block;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description p {
  margin: 0;
  padding: 0;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description p + * {
  margin-top: 10px;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edsgg_mediaType_image .edsgg_mediaType::after {
  content: "";
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edsgg_mediaType_video .edsgg_mediaType::after, .eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edsgg_mediaType_embededVideo .edsgg_mediaType::after {
  content: "";
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edsgg_mediaType_audio .edsgg_mediaType::after {
  content: "";
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  border: solid 1px #ddd;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:first-child {
  transition-delay: 0ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(2n) {
  transition-delay: 100ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(3n) {
  transition-delay: 200ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(4n) {
  transition-delay: 300ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(5n) {
  transition-delay: 400ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(6n) {
  transition-delay: 500ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(7n) {
  transition-delay: 600ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(7n) {
  transition-delay: 700ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(9n) {
  transition-delay: 800ms;
}
.eds_GravityGallery_TreeLine .edsgg__itemsListContainer .edsgg__itemContainer:nth-child(11n) {
  transition-delay: 900ms;
}
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails {
  text-align: center;
}
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails .edGP_title,
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails .edGP_description {
  margin: 10px 15px;
}
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails .edGP_title {
  color: #333;
  font-size: 16px;
  line-height: 1;
  color: #333;
}
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails .edGP_description {
  font-size: 13px;
  line-height: 1.1;
  color: #1f1f1f;
}
.eds_GravityGallery_TreeLine .edGP_thumbnailDetails .edGP_shareIcons {
  display: block;
  margin: 10px 15px;
}
.eds_GravityGallery_TreeLine .edsgg_mediaType {
  position: absolute;
  z-index: 2;
  display: inline-block;
}
.eds_GravityGallery_TreeLine .edsgg_mediaType::before, .eds_GravityGallery_TreeLine .edsgg_mediaType::after {
  position: absolute;
}
.eds_GravityGallery_TreeLine .edsgg_mediaType::after {
  font-family: "FontAwesome";
}
.eds_GravityGallery_TreeLine .edGP_mediaUrl {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 5;
  background-color: #333;
  border-radius: 50%;
  text-align: center;
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
.eds_GravityGallery_TreeLine .edGP_mediaUrl::after {
  content: "";
  font: 14px/0 "FontAwesome";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  color: #fff;
  transition: none;
  text-decoration: none;
}
.eds_GravityGallery_TreeLine .edGP_shareIcons {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: none;
}
.eds_GravityGallery_TreeLine .edGP_shareIcons > li {
  list-style-type: none;
  margin: 2px;
  background-color: #D2D2D2;
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}
.eds_GravityGallery_TreeLine .edGP_shareIcons > li > i {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  vertical-align: top;
}
.eds_GravityGallery_TreeLine .edGP_mediaUrlButton {
  display: none;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_header {
  font-size: 0;
  line-height: 0;
  position: relative;
  z-index: 1;
  border-bottom: solid 2px #D2D2D2;
  margin-top: 30px;
  margin-right: 20px;
  margin-left: 20px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList {
  margin: 0;
  padding: 0;
  visibility: hidden;
  position: relative;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList > li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList > li > span {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: all 400ms;
  color: #7E7E7E;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList > li.edg__gravityPortfolio_hide {
  display: none !important;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList {
  display: table;
  margin: 0 auto;
  z-index: 2;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li {
  display: table-cell;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li + li {
  padding-left: 3px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span {
  position: relative;
  text-align: center;
  padding: 8px 25px 23px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before, .eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  content: "";
  position: absolute;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before {
  padding: 3px;
  top: calc(100% - 20px);
  bottom: 12px;
  left: 50%;
  border: solid 1px #D2D2D2;
  border-radius: 5px;
  transition: all 500ms;
  width: 8px;
  margin-left: -4px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  width: 1px;
  height: 12px;
  background-color: #D2D2D2;
  left: 50%;
  bottom: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li:hover > span::before, .eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li.edg__gravityPortfolio_active > span::before {
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  margin-left: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList.edg__gravityPortfolio_itemsHidden {
  margin-left: -20px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li {
  display: inline-block;
  vertical-align: middle;
  margin: 8px 4px 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li > span {
  border: solid 1px transparent;
  padding: 6px 20px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li:hover > span {
  border-color: #D2D2D2;
  border-radius: 13px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper {
  position: absolute;
  z-index: 1;
  display: none;
  top: 0;
  right: -20px;
  bottom: 0;
  padding: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper.edg__gravityPortfolio_itemsHidden {
  display: block;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: solid 2px #D2D2D2;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 50px;
  padding: 18px;
  overflow: hidden;
  transition: all 300ms;
  text-align: center;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger::after {
  position: absolute;
  left: 0;
  right: 0;
  font: 24px/0 "FontAwesome";
  vertical-align: middle;
  color: #7E7E7E;
  transition: all 400ms;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger::before {
  content: "";
  top: 50%;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger::after {
  content: "";
  bottom: -100%;
  opacity: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover {
  left: 20%;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger {
  background-color: #D2D2D2;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before {
  top: -100%;
  opacity: 0;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  bottom: 50%;
  opacity: 1;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList {
  display: block;
  border: solid 2px #D2D2D2;
  background-color: #fff;
  padding: 0 4px 8px;
}
.eds_GravityGallery_TreeLine .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList > li.edg__gravityPortfolio_hide {
  display: inline-block !important;
}
.eds_GravityGallery_TreeLine .edGP_pagination {
  font-size: 0;
  line-height: 0;
  border-top: solid 2px #D2D2D2;
  margin-top: 30px;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
  cursor: pointer;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span > span {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  line-height: 1;
  margin: 5px 0;
  border-radius: 13px;
  border: solid 1px #D2D2D2;
  color: #7E7E7E;
  transition: all 300ms;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span > span::before, .eds_GravityGallery_TreeLine .edGP_pagination > span > span::after {
  font: 30px/0 "FontAwesome";
  vertical-align: middle;
  margin-top: -0.13em;
  display: inline-block;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span:hover > span {
  color: #fff;
  background-color: #D2D2D2;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span.edg__gravityPortfolio_previousPage > span::before {
  padding-right: 25px;
  content: "";
}
.eds_GravityGallery_TreeLine .edGP_pagination > span.edg__gravityPortfolio_nextPage {
  text-align: right;
}
.eds_GravityGallery_TreeLine .edGP_pagination > span.edg__gravityPortfolio_nextPage > span::after {
  padding-left: 25px;
  content: "";
}
.eds_GravityGallery_TreeLine .edGP_noContent,
.eds_GravityGallery_TreeLine .edGP_contentError {
  font-size: 16px;
  display: none;
  padding: 20px 0;
  margin: 30px 0;
  color: #888;
  text-align: center;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_disablePreviousPage .edg__gravityPortfolio_previousPage {
  display: none;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_disablePreviousPage .edg__gravityPortfolio_nextPage {
  width: 100%;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_disableNextPage .edg__gravityPortfolio_previousPage {
  width: 100%;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_disableNextPage .edg__gravityPortfolio_nextPage {
  display: none;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_disablePreviousPage.edg__gravityPortfolio_disableNextPage .edGP_pagination, .eds_GravityGallery_TreeLine.edg__gravityPortfolio_contentError .edGP_pagination, .eds_GravityGallery_TreeLine.edg__gravityPortfolio_noContent .edGP_pagination {
  display: none;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_loading {
  position: relative;
  min-height: 200px;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_loading::before {
  opacity: 1;
  visibility: visible;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_loading::after {
  opacity: 1;
  visibility: visible;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_loading .edsgg__itemContainer {
  opacity: 0;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_ready .edg__gravityPortfolio_itemList {
  visibility: visible;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_pageReady .edsgg__itemContainer {
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_pageReady.edg__gravityPortfolio_loading .edsgg__itemContainer {
  opacity: 0;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_triggeredNextPage.edg__gravityPortfolio_loading .edsgg__itemContainer, .eds_GravityGallery_TreeLine.edg__gravityPortfolio_triggeredPreviousPage.edg__gravityPortfolio_loading .edsgg__itemContainer {
  opacity: 0;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_noContent .edGP_noContent {
  display: block;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_noContent .edsgg__itemsListContainer {
  display: none;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_contentError .edGP_contentError {
  display: block;
}
.eds_GravityGallery_TreeLine.edg__gravityPortfolio_contentError .edsgg__itemsListContainer {
  display: none;
}
.eds_GravityGallery_TreeLine .edsgg__embedWrapper > .edsgg__flowplayer * {
  font-size: 13px;
  line-height: 1.4;
}
.eds_GravityGallery_TreeLine .edsgg__embedWrapper video {
  width: 100% !important;
  height: 100% !important;
}
.eds_GravityGallery_TreeLine + .eds_galleryManageMenu {
  top: 60px;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg_mediaType, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg_mediaType {
  width: 50px;
  height: 50px;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg_mediaType::before, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg_mediaType::before {
  content: "";
  border: solid 20px transparent;
  border-bottom-color: #fff;
  border-right-color: #fff;
  right: 0;
  bottom: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg_mediaType::after, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg_mediaType::after {
  font-size: 15px;
  line-height: 0;
  bottom: 12px;
  right: 6px;
  color: #333;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg_mediaType {
  transition: all 600ms ease 100ms;
  bottom: -50px;
  right: -50px;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edGP_mediaUrl {
  left: -50px;
  bottom: 10px;
  transform: rotate(-120deg);
  transition: all 500ms ease 300ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer {
  overflow: hidden;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 300ms;
  background-color: rgba(255, 255, 255, 0.5);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  transition: all 400ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  color: #333;
  transform: translateY(15px);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #474747;
  transform: translateY(-15px);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_thumbnailContainer::before {
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_description {
  opacity: 1;
  transform: translateY(0);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edsgg_mediaType {
  right: 0;
  bottom: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaUrl {
  opacity: 0.6;
  left: 10px;
  transform: rotate(0);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaUrl:hover {
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video .edGP_thumbnailContainer::before, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo .edGP_thumbnailContainer::before, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio .edGP_thumbnailContainer::before {
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio .edGP_titleDescription {
  top: 100%;
  transform: translateY(0);
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video:hover, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo:hover, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio:hover {
  overflow: visible;
}
.eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video:hover .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo:hover .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay1 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio:hover .edGP_titleDescription {
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer {
  overflow: hidden;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::before {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate3d(1, 0, 0, 90deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  visibility: hiden;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  width: 50px;
  height: 50px;
  background-color: #333;
  top: 50%;
  border-radius: 50%;
  opacity: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType::after,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl::after {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 0;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover {
  background-color: #D2D2D2;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover::after,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType {
  z-index: 5;
  cursor: pointer;
  right: 37%;
  margin: -25px -25px 0 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType.edGP_noMediaUrl {
  right: 50%;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType + .edGP_mediaUrl {
  left: 37%;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  left: 50%;
  margin: -25px 0 0 -25px;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_thumbnailContainer::before, .eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inTop .edGP_thumbnailContainer::before {
  transform-origin: 50% 0%;
  animation: overlayInTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaUrl, .eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inTop .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inTop .edGP_mediaUrl {
  animation: layerInTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outTop .edGP_thumbnailContainer::before {
  transform-origin: 50% 0%;
  animation: overlayOutTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outTop .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outTop .edGP_mediaUrl {
  animation: layerOutTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inRight .edGP_thumbnailContainer::before {
  transform-origin: 100% 0%;
  animation: overlayInRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inRight .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inRight .edGP_mediaUrl {
  animation: layerInRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outRight .edGP_thumbnailContainer::before {
  transform-origin: 100% 50%;
  animation: overlayOutRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outRight .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outRight .edGP_mediaUrl {
  animation: layerOutRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inBottom .edGP_thumbnailContainer::before {
  transform-origin: 50% 100%;
  animation: overlayInBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inBottom .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inBottom .edGP_mediaUrl {
  animation: layerInBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outBottom .edGP_thumbnailContainer::before {
  transform-origin: 50% 100%;
  animation: overlayOutBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outBottom .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outBottom .edGP_mediaUrl {
  animation: layerOutBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inLeft .edGP_thumbnailContainer::before {
  transform-origin: 0% 0%;
  animation: overlayInLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inLeft .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inLeft .edGP_mediaUrl {
  animation: layerInLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outLeft .edGP_thumbnailContainer::before {
  transform-origin: 0% 0%;
  animation: overlayOutLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outLeft .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outLeft .edGP_mediaUrl {
  animation: layerOutLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer::before {
  background-color: rgba(0, 0, 0, 0.6);
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  opacity: 0;
  top: 10%;
  left: 0;
  right: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
  text-align: center;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  top: auto;
  bottom: 10px;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inTop .edGP_titleDescription {
  animation: layerInTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outTop .edGP_titleDescription {
  animation: layerOutTop 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inRight .edGP_titleDescription {
  animation: layerInRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outRight .edGP_titleDescription {
  animation: layerOutRight 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inBottom .edGP_titleDescription {
  animation: layerInBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outBottom .edGP_titleDescription {
  animation: layerOutBottom 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__inLeft .edGP_titleDescription {
  animation: layerInLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay3 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP__outLeft .edGP_titleDescription {
  animation: layerOutLeft 300ms ease 0ms 1 forwards;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  box-shadow: 0 0 0 1px #ddd inset;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  transition: all 400ms;
  position: relative;
  z-index: 4;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  text-align: center;
  transition: all 400ms;
  bottom: 0;
  height: 40%;
  padding: 5px 15px;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_shareIcons {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  color: #333;
  transform: translateY(15px);
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: dotted 1px #ddd;
  font-size: 16px;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_shareIcons {
  transform: translateY(-15px);
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_shareIcons {
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 500ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper {
  transform: translate(0, -40%);
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_shareIcons {
  opacity: 1;
  transform: translateY(0);
}
.eds_GravityGallery_TreeLine.edGP_overlay4 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_shareIcons {
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_thumbnailContainer {
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  padding: 3px;
  transition: all 400ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  transition: all 500ms;
  position: relative;
  overflow: hidden;
  transition: all 400ms;
  margin: 3px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  z-index: 2;
  opacity: 0;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.2) inset;
  transition: all 500ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper img {
  position: relative;
  z-index: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  transform: scale(1.6);
  opacity: 0;
  width: 50px;
  height: 50px;
  transition: transform 400ms, opacity 400ms;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType::before,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl::before {
  content: "";
  border: solid 2px #fff;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  position: absolute;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType::after,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl::after {
  color: #fff;
  line-height: 50px;
  font-size: 20px;
  width: 50px;
  text-align: center;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover::before,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType {
  z-index: 5;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType + .edGP_mediaUrl {
  margin: 12px 0 0 12px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  text-align: left;
  background-color: transparent;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl::after {
  top: auto;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_thumbnailContainer {
  padding: 0px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper {
  opacity: 0.9;
  margin: 0px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaUrl {
  transform: scale(1);
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaUrl:hover {
  transform: scale(1.05);
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  border-radius: 4px;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow .edGP_thumbnailContainer {
  margin: -1px;
  padding: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay5 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow .edGP_thumbnailContainer .edGP_mediaWrapper {
  margin: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edGP_mediaUrlButton, .eds_GravityGallery_TreeLine.edGP_overlay7 .edGP_mediaUrlButton {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  border: solid 1px rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  padding: 5px 15px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 300ms;
  line-height: 1;
  margin: 10px 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edGP_mediaUrlButton:hover, .eds_GravityGallery_TreeLine.edGP_overlay7 .edGP_mediaUrlButton:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg_mediaType {
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  box-shadow: 0 0 0 1px #ddd;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  position: relative;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::before, .eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 400ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::before {
  top: 0;
  right: 100%;
  bottom: 50%;
  left: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  top: 50%;
  right: 0;
  bottom: 0;
  left: 100%;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  top: 50%;
  text-align: center;
  transition: all 400ms;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  left: 0;
  right: 0;
  width: auto;
  tranform-origin: top left 0;
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: 50% 0;
  z-index: 4;
  padding: 0 15px;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > .edsgg__itemDetailsAndLightboxTrigger {
  display: block;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_mediaUrlButton {
  position: relative;
  z-index: 5;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  font-size: 16px;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
  margin: 10px 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper::before {
  right: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper::after {
  left: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription {
  transform: rotateX(0deg) translateY(-50%);
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  box-shadow: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay6 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow .edGP_titleDescription {
  z-index: 5;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg_mediaType {
  z-index: 5;
  bottom: 0;
  right: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  box-shadow: 0 0 0 1px #ddd;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail > .edsgg__itemDetailsAndLightboxTrigger {
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper,
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  backface-visibility: hidden;
  transition: all 750ms ease 0s;
  transform-style: preserve-3d;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  position: relative;
  z-index: 0;
  transform: rotateY(0deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  z-index: -2;
  text-align: center;
  transform: rotateY(-180deg);
  background-color: #D2D2D2;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 15px;
  transform: translateY(-50%);
  z-index: 5;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div > .edGP_mediaUrlButton {
  position: relative;
  z-index: 5;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div > .edsgg__itemDetailsAndLightboxTrigger {
  display: inline-block;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > .edsgg__itemDetailsAndLightboxTrigger {
  display: inline-block;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  font-size: 17px;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper {
  transform: rotateY(180deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription {
  transform: rotateY(0deg);
  z-index: 4;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video .edGP_mediaWrapper, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo .edGP_mediaWrapper, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio .edGP_mediaWrapper {
  transform: rotateY(0deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_video .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_embededVideo .edGP_titleDescription, .eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_embedInPage.edsgg_mediaType_audio .edGP_titleDescription {
  transform: rotateY(0deg);
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  box-shadow: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  box-shadow: 0 0 0 1px #ddd;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType,
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl {
  top: 10px;
  opacity: 1;
  right: 10px;
  width: 30px;
  height: 28px;
  border-radius: 2px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid 1px rgba(0, 0, 0, 0.2);
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType::after,
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl::after {
  color: rgba(255, 255, 255, 0.7);
  font-size: 21px;
  line-height: 26px;
  position: static;
  display: inline-block;
  vertical-align: middle;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover::after,
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType {
  z-index: 4;
  display: block;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType + .edGP_mediaUrl {
  right: 50px;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  position: relative;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::before, .eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::before {
  top: 0;
  bottom: 100%;
  opacity: 0;
  transition: all 300ms;
  background-color: rgba(0, 0, 0, 0.2);
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  bottom: -6px;
  height: 6px;
  background-color: #D2D2D2;
  transition: all 400ms ease 200ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  right: 0;
  bottom: 10px;
  left: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  margin-top: 10px;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description > div {
  display: inline-block;
  background-color: #D2D2D2;
  padding: 5px 10px;
  color: #fff;
  transform: perspective(750px) rotateX(-90deg);
  transform-origin: center top;
  transition: all 400ms cubic-bezier(0.7, -0.8, 0.37, 1.97);
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper::before {
  bottom: 0;
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper::after {
  bottom: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription .edGP_description > div {
  transform: rotateX(0deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  box-shadow: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow .edGP_mediaWrapper {
  overflow: hidden;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail {
  box-shadow: 0 0 0 1px #ddd;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail > .edsgg__itemDetailsAndLightboxTrigger {
  display: none;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper,
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  backface-visibility: hidden;
  transform-style: flat;
  transition: all 500ms ease 0ms;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper {
  transform-origin: left center;
  transform: perspective(750px);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 5;
  transform-origin: right center;
  background-color: #D2D2D2;
  transform: rotateY(90deg) perspective(750px);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title {
  font-size: 18px;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span {
  display: inline-block;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  padding: 5px;
  font-size: 14px;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div {
  position: absolute;
  left: 0;
  top: 50%;
  padding: 15px;
  transform: translateY(-50%);
  z-index: 4;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div .edGP_mediaUrlButton {
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 2px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 400ms;
  color: #fff;
  padding: 5px;
  margin-top: 10px;
  position: relative;
  z-index: 6;
  background-color: rgba(255, 255, 255, 0.1);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div .edGP_mediaUrlButton:hover {
  background-color: transparent;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > div > .edsgg__itemDetailsAndLightboxTrigger {
  display: block;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription > .edsgg__itemDetailsAndLightboxTrigger {
  display: block;
  z-index: 2;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription::before {
  position: absolute;
  content: "";
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  transform: scale(1.1);
  transition: all 500ms 200ms;
  border: solid 1px #fff;
  border-radius: 3px;
  opacity: 0;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType {
  right: 10px;
  bottom: 10px;
  transform: scale(0.6);
  transition: all 500ms ease 700ms;
  opacity: 0;
  z-index: 6;
  width: 30px;
  height: 30px;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType::after {
  font-size: 17px;
  line-height: 29px;
  color: #fff;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_mediaWrapper {
  transform: rotateY(90deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription {
  transform: rotateY(0deg);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edGP_titleDescription::before {
  transform: scale(1);
  opacity: 1;
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail:hover .edsgg_mediaType {
  opacity: 1;
  transform: scale(1);
}
.eds_GravityGallery_TreeLine.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail.edGP_detailsBelow {
  box-shadow: none;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_header {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li:hover > span {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edGP_pagination {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edGP_pagination > span > span {
  border-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edGP_pagination > span:hover > span {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description > div {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_green .edGP_shareIcons > li {
  background-color: #CAD934;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_header {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li:hover > span {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edGP_pagination {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edGP_pagination > span > span {
  border-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edGP_pagination > span:hover > span {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description > div {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_red .edGP_shareIcons > li {
  background-color: #e2020a;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_header {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li:hover > span {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edGP_pagination {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edGP_pagination > span > span {
  border-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edGP_pagination > span:hover > span {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description > div {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_blue .edGP_shareIcons > li {
  background-color: #00adef;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_header {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::before {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_itemList.edg__gravityPortfolio_visibleItemList > li > span::after {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_itemList.edg__gravityPortfolio_hiddenItemList > li:hover > span {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_hiddenItemWrapper > .edGP_hiddenItemListTrigger {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::before, .eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_hiddenItemWrapper:hover > .edGP_hiddenItemListTrigger::after {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edg__gravityPortfolio_hiddenItemWrapper:hover .edg__gravityPortfolio_hiddenItemList {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edGP_pagination {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edGP_pagination > span > span {
  border-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edGP_pagination > span:hover > span {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edsgg_mediaType:hover,
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay2 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaUrl:hover {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title,
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay7 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description {
  color: #fff;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_mediaWrapper::after {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_title > span,
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay8 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription .edGP_description > div {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange.edGP_overlay9 .edsgg__itemsListContainer .edsgg__itemContainer .edGP_thumbnail .edGP_titleDescription {
  background-color: #ff6600;
}
.eds_GravityGallery_TreeLine.edsgg_style_orange .edGP_shareIcons > li {
  background-color: #ff6600;
}


html > body.socialMediaBoxActive {
  overflow: hidden !important;
}

#socialMediaBox {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
#socialMediaBox > .interfaceActionsWrapper {
  position: absolute;
  width: 100%;
  display: block;
  background: none;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
#socialMediaBox > .interfaceActionsWrapper .action {
  float: left;
  margin: 0 0 0 15px;
  padding: 5px 7px 4px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  visibility: visible !important;
  display: block !important;
}
#socialMediaBox > .interfaceActionsWrapper .action span {
  color: #fff;
  font: 12px Arial;
  line-height: 1.5em;
}
#socialMediaBox > .thumbnailsMainWrapper {
  position: absolute;
  display: block;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: #1A1A1A;
}
#socialMediaBox > .thumbnailsMainWrapper .scrollbar {
  display: block;
  position: absolute;
  top: auto;
  bottom: 5px;
  background: #fff;
  display: block;
  overflow: hidden;
}
#socialMediaBox > .thumbnailsMainWrapper .scrollbar .track {
  display: block;
  position: relative;
  height: 3px;
  background: #fff;
  overflow: hidden;
}
#socialMediaBox > .thumbnailsMainWrapper .scrollbar .track .thumb {
  display: block;
  height: 3px;
  background: #882B2B;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
#socialMediaBox > .thumbnailsMainWrapper .scrollbar .track .thumb .end {
  display: block;
}
#socialMediaBox > .thumbnailsMainWrapper .scrollbar.disable {
  display: none;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport {
  position: relative;
  margin: 10px 0 13px;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  overflow: hidden;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div {
  display: none;
  overflow: hidden;
  float: left;
  margin: 0 5px 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div > div {
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div > div img {
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div > div .noThumb {
  display: block;
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div > div .playItem {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  border: 0;
  padding: 0;
  margin: -17px 0 0 -8px;
  width: 16px;
  height: 33px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/common/images/play_icon.png") no-repeat 0 0;
}
#socialMediaBox > .thumbnailsMainWrapper .viewport .overview > div:hover > div .playItem {
  background-position: 0 -33px;
}
#socialMediaBox > .itemDetailsWrapper {
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  left: auto;
  margin: 15px 15px 15px 0;
  padding: 11px;
  border: 0;
  width: 270px;
  background: #fff;
}
#socialMediaBox > .itemDetailsWrapper.left {
  left: 0;
  right: auto;
}
#socialMediaBox > .itemDetailsWrapper .scrollbar {
  position: absolute;
  top: 11px;
  left: auto;
  right: 4px;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .scrollbar .track {
  position: relative;
  width: 3px;
  background: #ccc;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .scrollbar .track .thumb {
  width: 3px;
  background: #882B2B;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .scrollbar .track .thumb .end {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .scrollbar.disable {
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport {
  padding: 0;
  margin: 0;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > h2 {
  font: 16px Arial;
  line-height: 1.3;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .description,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .description p {
  font: 12px Arial;
  line-height: 16px;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .description {
  display: none;
  margin: 0 0 20px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .description p {
  margin: 0 0 10px;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .description.withTitle {
  margin-top: -15px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper {
  float: left;
  display: none;
  height: 35px;
  width: 35px;
  margin: 3px 4px 2px 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper > .avatarContainer,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper > .avatarContainer > a {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper > .avatarContainer img,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper > .avatarContainer > a img {
  position: relative;
  display: block;
  top: 0;
  left: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions {
  display: block;
  float: right;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button {
  display: block;
  float: right;
  clear: both;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper p {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  font: 12px Arial;
  color: #333;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper p.postedBy, #socialMediaBox > .itemDetailsWrapper .viewport .overview > .authorWrapper p.date {
  font-size: 10px;
  color: #777;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > button {
  float: left;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > p {
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  color: #777;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li {
  float: left;
  display: block;
  height: 35px;
  width: 35px;
  margin: 5px;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li > div, #socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li > div > a {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li > div img {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > .starContainer {
  width: 90px;
  height: 15px;
  display: block;
  position: relative;
  float: left;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/common/images/rate_stars.png") repeat-x 1px 0;
  cursor: pointer;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > .starContainer > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/common/images/rate_stars.png") repeat-x 1px -16px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > .starContainer.rated > div {
  background-position: 1px -32px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > p {
  display: block;
  margin: 0 0 0 5px;
  padding: 0;
  border: 0;
  font: 13px Arial;
  line-height: 1.3;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.score {
  float: left;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.message {
  display: none;
  color: #666;
  clear: both;
  margin: 5px 0 0;
  padding: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.message.negative {
  color: #f00;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .ratingWrapper.cantRate > .starContainer {
  cursor: default;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .tagContainer {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .tagContainer li {
  list-style-type: none;
  display: block;
  float: left;
  margin: 4px;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .buttonsWrapper {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .socialButtonsWrapper {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .socialButtonsWrapper > div {
  float: left;
  display: block;
  margin: 0 3px 0 0;
  padding: 0;
  border: 0;
  height: 25px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper {
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .loading {
  background: none;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > h3 {
  font: 16px Arial;
  line-height: 1.3;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  display: block;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div {
  display: block;
  margin: 10px 0 0;
  padding: 0 0 5px;
  border: 0;
  position: relative;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation {
  margin: 0 0 5px;
  border: 0;
  padding: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p {
  color: #f00;
  font: 11px Arial;
  line-height: 1.3;
  font-weight: bold;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  text-align: center;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p > span {
  display: inline;
  margin: 0 5px 0 0;
  padding: 0;
  border: 0;
  color: #f00;
  font: 11px Arial;
  line-height: 1.3;
  font-weight: bold;
  cursor: pointer;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p > span:hover {
  text-decoration: underline;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p.message {
  display: none;
  color: #333;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  clear: both;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .textarea {
  margin: 0;
  padding: 2px;
  border: 1px solid #999;
  background: #fff;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .textarea > textarea {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  resize: none;
  font: 12px Arial;
  line-height: 1.3;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions {
  margin: 5px 0 0;
  padding: 0;
  border: 0;
  line-height: 0;
  text-align: center;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p {
  display: none;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  line-height: 1.3;
  font: 12px Arial;
  color: #333;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p.negative {
  color: #f00;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p.positive {
  color: #0f0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > span {
  font: 12px Arial;
  line-height: 1.3;
  display: inline;
  margin: 0 5px 0 0;
  padding: 0;
  border: 0;
  color: #555;
  cursor: pointer;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > span:hover {
  color: #000;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger {
  background: #333;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  padding: 0 0 2px;
  margin: 0;
  background: #999;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li {
  display: block;
  overflow: hidden;
  font: 12px Arial;
  line-height: 1.3;
  text-align: right;
  cursor: pointer;
  padding: 2px 4px 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li:hover {
  color: #fff;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger:hover > ul {
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta {
  display: block;
  margin: 0 0 7px;
  padding: 0;
  border: 0;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper {
  float: left;
  display: none;
  height: 25px;
  width: 25px;
  margin: 0 4px 2px 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper > .authorAvatarContainer,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper > .authorAvatarContainer > a {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper > .authorAvatarContainer img,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper > .authorAvatarContainer > a img {
  position: relative;
  display: block;
  top: 0;
  left: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > h4 {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  font: 12px Arial;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > p.commentDate {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  line-height: 1.3;
  color: #666;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content,
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content p {
  padding: 0;
  border: 0;
  display: block;
  font: 12px Arial;
  line-height: 1.3;
  color: #333;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content {
  clear: both;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content p {
  margin: 7px 0 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div:hover > .actionsBoxTrigger {
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div.hideActions:hover > .actionsBoxTrigger {
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .message {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
  font: 12px Arial;
  line-height: 15px;
  text-align: center;
  font-style: italic;
  color: #555;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: none;
  overflow: hidden;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage > p {
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo {
  clear: both;
  text-align: right;
  margin: 0 0 3px;
  display: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text {
  margin: 0;
  padding: 2px;
  background: #fff;
  width: 70%;
  position: relative;
  overflow: hidden;
  cursor: text;
  box-shadow: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text > span.label {
  display: inline;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  font: 12px Arial;
  line-height: 15px;
  cursor: text;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text > input {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  font: 12px Arial;
  line-height: 1.3;
  display: block;
  box-shadow: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .textarea {
  margin: 0;
  padding: 2px;
  border: 1px solid #999;
  background: #fff;
  clear: both;
  box-shadow: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .textarea > textarea {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  height: 40px;
  resize: none;
  font: 12px Arial;
  line-height: 1.3;
  box-shadow: none;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .captchaContainer {
  padding: 3px 0 0 76px;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer.sending > .textarea > textarea {
  color: #AEAEAE;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .metaWrapper {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .metaWrapper > h3 {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .metaWrapper > .content {
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox > .itemDetailsWrapper .viewport .overview > .metaWrapper > .content h4 {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
#socialMediaBox > .itemDisplayWrapper {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  margin: 15px;
  padding: 15px;
  border: 0;
  background: #111;
  overflow: hidden;
}
#socialMediaBox > .itemDisplayWrapper.right {
  left: auto;
  right: 0;
}
#socialMediaBox > .itemDisplayWrapper .itemDisplayContainer {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  display: block;
  width: 100%;
  height: 100%;
}
#socialMediaBox > .itemDisplayWrapper .itemDisplayContainer > .item {
  position: absolute;
}
#socialMediaBox > .itemDisplayWrapper .loadIndicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/common/images/loading.gif") no-repeat center center #111;
  display: block;
}
#socialMediaBox > .navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
}
#socialMediaBox > .close {
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  cursor: pointer;
}

#socialMediaBox4JournalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
}
#socialMediaBox4JournalOverlay div {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  border: 0;
}
#socialMediaBox4JournalOverlay p {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  text-align: center;
}

/*# sourceMappingURL=base.css.map */


#socialMediaBox.modern {
  background: #282f35;
}
#socialMediaBox.modern .interfaceActionsWrapper .action {
  margin: 0 0 0 22px;
  padding: 4px 25px 4px 10px;
  border: 1px solid #1e252c;
  border-radius: 5px 5px 0 0;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat right 0;
}
#socialMediaBox.modern .interfaceActionsWrapper .action span {
  color: #a6b2c0;
  font: 10px Arial;
  text-transform: uppercase;
  line-height: 13px;
  text-shadow: 1px 1px 0px #121212;
}
#socialMediaBox.modern .interfaceActionsWrapper .action:hover {
  background-position: right -21px;
}
#socialMediaBox.modern .interfaceActionsWrapper .action:hover span {
  color: #bfc8d2;
}
#socialMediaBox.modern .interfaceActionsWrapper .action.hidden {
  background-position: right -42px;
}
#socialMediaBox.modern .interfaceActionsWrapper .action.hidden:hover {
  background-position: right -63px;
}
#socialMediaBox.modern .thumbnailsMainWrapper {
  background: #5e6368;
  box-shadow: 0 0 4px #111111;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar {
  bottom: 0;
  border: none;
  border-top: 1px solid #252a30;
  border-bottom: 1px solid #293037;
  height: 14px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/horizontal.png") repeat-x #384350;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar .track {
  background: none;
  height: 100%;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar .track .thumb {
  height: 14px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/horizontal.png") repeat-x 0 -14px #2b343e;
  border: 1px solid #262e36;
  border-top: 0;
  border-bottom: 0;
  border-radius: 7px;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar .track .thumb .end {
  display: block;
  height: 5px;
  width: 53px;
  margin: 5px 0 0 -27px;
  position: relative;
  left: 50%;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/horizontal.png") no-repeat 0 -42px transparent;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar .track .thumb:hover {
  background-color: #202830;
  background-position: 0 -28px;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar.disable {
  display: block;
}
#socialMediaBox.modern .thumbnailsMainWrapper .scrollbar.disable .track {
  display: none;
}
#socialMediaBox.modern .thumbnailsMainWrapper .viewport {
  margin: 1px 0 17px;
  background: #48535f;
}
#socialMediaBox.modern .thumbnailsMainWrapper .viewport .overview > div {
  background: white;
  border: 3px solid white;
  margin: 16px 13px;
  box-shadow: 0 0 4px #2f2f2f;
}
#socialMediaBox.modern .thumbnailsMainWrapper .viewport .overview > div.active {
  box-shadow: 0 0 4px black;
  border-color: #ffe26f;
}
#socialMediaBox.modern .itemDetailsWrapper {
  margin: 15px 15px 15px 0;
  padding: 0 15px 0 0;
  border: 1px solid #6a7075;
  border-radius: 2px;
  width: 350px;
  background: #48535f;
}
#socialMediaBox.modern .itemDetailsWrapper.left {
  margin: 25px 0 10px 15px;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar {
  top: 0;
  right: 0;
  width: 13px;
  border: 1px solid #1e252c;
  border-top: 0;
  border-bottom: 0;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/vertical.png") repeat-y 0 0 #384350;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar .track {
  width: 100%;
  background: transparent;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar .track .thumb {
  width: 13px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/vertical.png") repeat-y -13px 0 #2e3842;
  border: 1px solid #20272f;
  border-left: 0;
  border-right: 0;
  border-radius: 7px;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar .track .thumb .end {
  display: block;
  width: 5px;
  height: 53px;
  margin: -27px 0 0 4px;
  position: relative;
  top: 50%;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/scrollbar/vertical.png") no-repeat -39px 0 transparent;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar .track .thumb:hover {
  background-position: -26px 0;
  background-color: #252d36;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar.disable {
  display: block;
}
#socialMediaBox.modern .itemDetailsWrapper .scrollbar.disable .track {
  display: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > h2 {
  margin: 17px;
  color: white;
  font: 18px Arial;
  font-weight: normal;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .description,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .description p {
  font: 12px Arial;
  line-height: 16px;
  padding: 0;
  border: 0;
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .description a {
  color: #809cb5;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .description a:hover {
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > div.description {
  margin: 17px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > div.description p {
  margin: 0 0 10px;
  display: block;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > div.description.withTitle {
  margin-top: -12px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .socialButtonsWrapper,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .tagContainer,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper {
  padding: 8px 17px;
  margin: 0;
  background: #48535f;
  border: 0;
  border-top: 1px solid #3a424c;
  border-bottom: 1px solid #55616e;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/gradients.png") repeat-x 0 0 #1761c8;
  border: 1px solid #29333d;
  padding: 0;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 1px -1px #66707b;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button > span {
  padding: 0;
  margin: 0;
  color: white;
  text-shadow: 1px 1px 0 #323232;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button:hover {
  background-color: #004db8;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.acceptRequest {
  background-color: #028b00;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.acceptRequest:hover {
  background-color: #016a00;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unfriend, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.cancelRequest, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.rejectRequest, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unfollow, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unlike {
  background-color: #b70000;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unfriend:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.cancelRequest:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.rejectRequest:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unfollow:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.unlike:hover {
  background-color: #990000;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting {
  opacity: 0.5;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting:hover {
  background-color: #1761c8;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting.unfriend:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting.cancelRequest:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting.rejectRequest:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting.unfollow:hover, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview button.requesting.unlike:hover {
  background-color: #b70000;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper {
  height: 39px;
  width: 39px;
  margin: 3px 4px 2px 0;
  padding: 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .avatarWrapper img {
  border: 1px solid #54606c;
  border-radius: 1px;
  padding: 1px;
  background: #323942;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions {
  display: block;
  float: right;
  overflow: hidden;
  margin-left: 10px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button {
  display: block;
  float: right;
  clear: both;
  font-size: 10px;
  line-height: 10px;
  padding: 3px 5px;
  border-radius: 3px;
  background-position: 0 -24px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button > span {
  font-size: 10px;
  line-height: 10px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button.follow {
  margin-bottom: 3px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button.friend.cancelRequest {
  margin-bottom: 1px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button.friend.acceptRequest {
  margin: 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper > .actions > button.friend.rejectRequest {
  margin: 1px 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p {
  font: 16px Arial;
  line-height: 18px;
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p.postedBy, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p.date {
  font-size: 10px;
  line-height: 11px;
  color: #6b7580;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p.name {
  text-shadow: 1px 1px #1e1e1e;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p.name a {
  font: 16px Arial;
  line-height: 18px;
  color: white;
  text-decoration: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .authorWrapper p.name a:hover {
  text-decoration: none;
  text-shadow: 1px 1px #1e1e1e, 0 0 3px rgba(255, 255, 255, 0.68);
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > button {
  float: left;
  margin: 0 10px 1px 0;
  clear: both;
  font-size: 16px;
  line-height: 16px;
  padding: 3px 10px 3px 7px;
  border-radius: 3px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > button > span {
  font-size: 16px;
  line-height: 16px;
  padding: 0 0 0 18px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat -226px -95px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > p {
  font: 10px Arial;
  color: #6b7580;
  margin: 6px 0 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .likeContainer > p.negative {
  color: #f25151;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked {
  margin: 5px 0 0;
  padding: 0 0 1px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li {
  height: 39px;
  width: 39px;
  margin: 4px 4px 0 0;
  padding: 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .likeWrapper > .alsoLiked > li img {
  border: 1px solid #54606c;
  border-radius: 1px;
  padding: 1px;
  background: #323942;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper > p {
  margin: 0 0 0 5px;
  color: #cccccc;
  font: 14px Arial;
  line-height: 1.2;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.score {
  float: left;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.score.noRatings {
  font-style: italic;
  font-size: 12px;
  color: #cccccc;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.message {
  margin: 18px 15px 0;
  font: 12px Arial;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .ratingWrapper > p.message.negative {
  color: #ff6262;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .socialButtonsWrapper {
  padding-bottom: 5px;
  background: #3a424c;
  border-top-color: #30353c;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .tagContainer {
  padding-bottom: 5px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .tagContainer li {
  background: #363e48;
  border-radius: 3px;
  margin: 0 3px 3px 0;
  font-size: 11px;
  line-height: 13px;
  padding: 3px 7px 3px;
  box-shadow: 0 2px 2px -2px black inset, 0 1px 2px -1px #627d9a;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .tagContainer li span {
  color: #d5d7d9;
  font: 11px Arial;
  line-height: 13px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper a {
  font-size: 14px;
  line-height: 16px;
  display: inline;
  text-decoration: none;
  float: left;
  margin: 0 20px 0 0;
  color: #e0e0e0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper a span {
  color: #e0e0e0;
  font: 14px Arial;
  line-height: 16px;
  text-shadow: 1px 1px #1e1e1e;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper a:hover span {
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper a.download {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat -222px -119px;
  padding: 0 0 0 19px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .buttonsWrapper a.email {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat -216px -145px;
  padding: 0 0 0 26px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .loading {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/comments_loading.gif") no-repeat center center;
  height: 34px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > h3 {
  text-transform: uppercase;
  color: #e0e0e0;
  font: 12px Arial;
  line-height: 20px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/gradients.png") repeat-x 0 -38px #4e5864;
  text-shadow: 1px 1px #1e1e1e;
  border: 0;
  border-top: 1px solid #3a424c;
  border-bottom: 1px solid #55616e;
  padding: 1px 17px 0;
  margin: 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .message {
  font: 12px Arial;
  line-height: 15px;
  font-style: italic;
  text-align: center;
  color: #cccccc;
  margin: 5px 0;
  padding: 0 17px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .message.negative {
  color: #ff4747;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList {
  background: #48535f;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div {
  margin: 0;
  padding: 8px 17px;
  position: relative;
  border: 0;
  border-top: 1px solid #3a424c;
  border-bottom: 1px solid #515d69;
  background: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p {
  color: #f93a3a;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p > span {
  color: #f93a3a;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p.message {
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .deleteConfirmation > p.message.negative {
  color: #f93a3a;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .textarea {
  box-shadow: 1px 1px 5px #3c3c3c inset;
  border: 1px solid #4b4b4b;
  background: #efefef;
  padding: 4px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .textarea > textarea {
  color: black;
  font: 11px Arial;
  line-height: 13px;
  background: none;
  box-shadow: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p {
  line-height: 13px;
  font: 11px Arial;
  color: lightgrey;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p.negative {
  color: #fe3838;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > p.positive {
  color: #2ce42a;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > span {
  font: 11px Arial;
  line-height: 13px;
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .editor > .actions > span:hover {
  color: white;
  text-decoration: underline;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat 0 -84px;
  width: 13px;
  height: 8px;
  top: 12px;
  right: 17px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul {
  padding: 3px 0 0;
  background: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li {
  font: 10px Arial;
  line-height: 12px;
  color: #cccccc;
  padding: 2px 6px 0;
  background: black;
  background: rgba(0, 0, 0, 0.5);
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li:hover {
  color: white;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li.edit {
  border-radius: 3px 3px 0 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li.delete {
  border-radius: 3px;
  padding-bottom: 3px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li.delete > span {
  color: #e43d3d;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li.delete:hover > span {
  color: red;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .actionsBoxTrigger > ul > li + li.delete {
  border-radius: 0 0 3px 3px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta {
  overflow: visible;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper {
  height: 39px;
  width: 39px;
  margin: 0 5px 0 0;
  background: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > .authorAvatarWrapper img {
  border: 1px solid #54606c;
  border-radius: 1px;
  padding: 1px;
  background: #323942;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > h4, #socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > h4 a {
  font: 11px Arial;
  line-height: 13px;
  font-weight: bold;
  color: #a1a9b1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > h4 a:hover {
  color: white;
  text-decoration: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > .meta > p.commentDate {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  font: 10px Arial;
  line-height: 12px;
  color: #6b7580;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content,
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content p {
  padding: 0;
  border: 0;
  display: block;
  font: 11px Arial;
  line-height: 13px;
  color: #f8f8f8;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content {
  clear: both;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div > div.content p {
  margin: 7px 0 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div.hasAvatar > .editor {
  padding-left: 45px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .commentsList > div.hasAvatar > div.content {
  padding-left: 45px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer {
  margin: 0;
  padding: 6px 17px 7px;
  border: 0;
  border-top: 1px solid #3a424c;
  text-align: center;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage > p {
  margin: 1px 0 4px;
  padding: 0;
  border: 0;
  color: black;
  font: 12px Arial;
  line-height: 1.3;
  text-align: center;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage.negative > p {
  color: #fc5e5e;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .commentingMessage.positive > p {
  color: #02a200;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text {
  margin: 0;
  padding: 4px;
  border: 1px solid #4b4b4b;
  background: #efefef;
  box-shadow: 1px 1px 5px #3c3c3c inset;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text > span.label {
  top: 4px;
  left: 5px;
  color: #999999;
  font: 12px Arial;
  line-height: 15px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .authorInfo > .text > input {
  color: black;
  font: 12px Arial;
  line-height: 15px;
  background: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .textarea {
  margin: 0;
  padding: 4px;
  border: 1px solid #4b4b4b;
  background: #efefef;
  box-shadow: 1px 1px 5px #3c3c3c inset;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .textarea > textarea {
  color: black;
  font: 11px Arial;
  line-height: 13px;
  background: none;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .add {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 14px;
  padding: 3px 7px;
  border-radius: 3px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer > .add > span {
  font-size: 14px;
  line-height: 14px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer.sending > .add {
  opacity: 0.5;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .commentsWrapper > .addCommentContainer.sending > .add:hover {
  background-color: #1761c8;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper {
  margin: 7px 17px 17px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > h3 {
  padding: 0;
  border: 1px solid #5f6874;
  border-radius: 1px;
  height: 35px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/gradients.png") repeat-x 0 -58px #49535f;
  cursor: pointer;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > h3 > span {
  font: 16px Arial;
  line-height: 35px;
  display: block;
  text-shadow: 0 1px 0 #203248;
  color: #dbe4ed;
  padding: 0 25px 0 15px;
  margin: 0;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") no-repeat 291px -144px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > h3:hover {
  background-color: #515b66;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > h3.close > span {
  background-position: 291px -170px;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > .content {
  margin: 0;
  padding: 0;
  border: 0;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > .content h4 {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
#socialMediaBox.modern .itemDetailsWrapper .viewport .overview > .metaWrapper > .content > .map > div {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  width: 100%;
  height: 150px;
}
#socialMediaBox.modern .itemDisplayWrapper {
  margin: 50px;
  padding: 20px;
  background: transparent;
}
#socialMediaBox.modern .itemDisplayWrapper .itemDisplayContainer > .item {
  box-shadow: 0 0 10px #121212;
}
#socialMediaBox.modern .itemDisplayWrapper .loadIndicator {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/loading_image.gif") no-repeat center center #282f35;
}
#socialMediaBox.modern > .navigation {
  width: 16px;
  height: 25px;
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") transparent;
}
#socialMediaBox.modern > .navigation.previous {
  background-position: 0 -92px;
  margin: 0 0 0 10px;
}
#socialMediaBox.modern > .navigation.previous:hover {
  background-position: 0 -117px;
}
#socialMediaBox.modern > .navigation.next {
  background-position: -16px -92px;
  margin: 0 10px 0 0;
}
#socialMediaBox.modern > .navigation.next:hover {
  background-position: -16px -117px;
}
#socialMediaBox.modern > .close {
  background: #48535f;
  border: 1px solid #6a7075;
  border-radius: 5px;
  bottom: auto;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.34);
  height: 35px;
  left: auto;
  margin: 15px 15px 0 0;
  position: absolute;
  right: auto;
  top: 0;
  width: 35px;
}
#socialMediaBox.modern > .close > span {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/sprite.png") -32px -84px;
  display: block;
  height: 19px;
  width: 21px;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  top: 8px;
  left: 7px;
  right: auto;
  bottom: auto;
}
#socialMediaBox.modern > .close:hover {
  background: #bb0f0f;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.34), 0 0 2px rgba(0, 0, 0, 0.69) inset;
  border-color: #580000;
}
#socialMediaBox.modern > .close:hover > span {
  background-position: -53px -84px;
}

#socialMediaBox4JournalOverlay.modern {
  background: rgba(0, 0, 0, 0.4);
}
#socialMediaBox4JournalOverlay.modern div {
  background: url("/DesktopModules/EasyDnnGallery/static/SocialMediaBox/themes/modern/images/journal_loading.gif") no-repeat center center #1c1c1c;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  box-shadow: 0 0 4px black;
}
#socialMediaBox4JournalOverlay.modern p {
  font: 12px Arial;
  line-height: 15px;
  color: white;
  text-shadow: 0 1px 0 black;
}
#socialMediaBox4JournalOverlay.modern p .close {
  background: #333333;
  border: 1px solid #bababa;
  border-radius: 3px 3px 3px 3px;
  color: #ebebeb;
  display: inline-block;
  font: bold 12px Arial;
  margin: 0 0 0 6px;
  padding: 1px 5px;
  text-shadow: 0 1px 0 rgba(20, 12, 12, 0.75);
  cursor: pointer;
}
#socialMediaBox4JournalOverlay.modern p .close:hover {
  color: #c40000;
}

